* {
  margin: 0;
  font-family: sans-serif!important;
  padding: 0;
  box-sizing: border-box;
}
/* /=== Navbar ===  */


/* Toggle Button */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  padding: 15px;
  position: fixed;
  top: 10px;
  left: 15px;
  z-index: 1001;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: -270px;
  top: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(135deg, #2c3e50, #d7a5a3);
  color: #fff;
  padding-top: 20px;
  transition: 0.4s;
  z-index: 1002;
  box-shadow: 4px 0 20px rgba(0,0,0,0.4);
}

/* Active Sidebar */
.sidebar.active {
  left: 0;
}

/* Header */
.sidebar-header {
  position: relative;
  padding: 15px;
}

.close-sidebar {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}


.sidebar-header img {
  width: 200px;
}

.sidebar-header h2 {
  margin-top: 10px;
  font-size: 18px;
}

/* Links */
.sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.sidebar-links a {
  background: linear-gradient(135deg, #eb8e4c, #eb8e4c);
  color: #fff;
  text-decoration: none;
  padding: 12px 15px;
  margin: 5px 0;
  border-radius: 8px;
  transition: 0.3s;
}

.sidebar-links a:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(189, 118, 31, 0.6);
  background: linear-gradient(135deg, #eb8e4c,#eb8e4c);
}

/* Overlay */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
 .hero {
  min-height: 65vh;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/banner-images.jpg") no-repeat center center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #eb8e4c, #eb8e4c);
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(189, 118, 31, 0.6);
  background: linear-gradient(135deg, #eb8e4c,#eb8e4c);
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.cta-btn:hover::before {
  left: 130%;
}

.hero-content small {
  display: block;
  margin-top: 15px;
  opacity: 0.85;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-btn {
    width: 100%;
  }
}

/* About Teen Patti Master section */

.about-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.about-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.about-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: #eb8e4c;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.about-intro {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  font-size: 16px;
}

.about-image {
  text-align: center;
  margin: 30px 0;
}

.about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.image-caption {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #777;
}

.about-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about-card {
    padding: 25px 20px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-card p {
    font-size: 15px;
  }
}

/* Application Specifications Section */
.spec-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.spec-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.spec-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.spec-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 0 auto 35px;
  border-radius: 10px;
}

/* ===== TABLE ===== */
.table-wrapper {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.spec-table thead th {
  background: #eb8e4c;
  color: #ffffff;
  padding: 14px 18px;
  text-align: left;
}

.spec-table thead th:first-child {
  border-top-left-radius: 8px;
}

.spec-table thead th:last-child {
  border-top-right-radius: 8px;
}

.spec-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #e6e6e6;
}

.spec-table tbody tr:nth-child(odd) {
  background: #f9fcff;
}

.spec-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .spec-card {
    padding: 25px 20px;
  }

  .spec-title {
    font-size: 24px;
  }

  .spec-table {
    font-size: 15px;
  }
}

/* Installation Guide Section*/
.install-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.install-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.install-title {
  text-align: center;
  margin-bottom: 10px;
}

.install-title span {
  background: #dcdcdc;
  padding: 6px 14px;
  font-size: 30px;
  font-weight: 700;
  border-radius: 4px;
}

.install-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 15px auto 30px;
  border-radius: 10px;
}

.install-intro {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.install-subtitle {
  margin-bottom: 12px;
  font-size: 16px;
}

.install-steps {
  padding-left: 20px;
  margin-bottom: 25px;
}

.install-steps li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.install-note {
  font-size: 16px;
  color: #333;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .install-card {
    padding: 25px 20px;
  }

  .install-title span {
    font-size: 22px;
  }

  .install-intro,
  .install-steps li,
  .install-note {
    font-size: 15px;
  }
}

.apps-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.apps-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.apps-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.apps-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 15px auto 35px;
  border-radius: 10px;
}

/* ===== APP CARD ===== */
.app-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.35s ease;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Left Border */
.app-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 4px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-card.red::before { background: #e74c3c; }
.app-card.blue::before { background: #eb8e4c; }

.app-card:hover::before {
  opacity: 1;
}

/* ===== LEFT ===== */
.app-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rank {
  background: #eb8e4c;
  color: #fff;
  font-size: 14px;
  width: 35px;
  height: 35px;
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-card.blue .rank {
  background: #eb8e4c;
}

.app-left img {
  width: 100px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.app-card:hover img {
  transform: scale(1.08);
}

.app-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.meta {
  font-size: 14px;
  color: #555;
}

.withdraw {
  font-size: 14px;
  color: #e74c3c;
  font-weight: bold;
}

.withdraw.green {
  color: #2ecc71;
}

.desc {
  font-size: 14px;
  color: #333;
}

/* ===== RIGHT ===== */
.app-right {
  text-align: right;
}

/* Download Button Highlight */
.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #eb8e4c, #eb8e4c);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect - Powerful */
.download-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(189, 118, 31, 0.6);
  background: linear-gradient(135deg, #eb8e4c,#eb8e4c);
}

/* Shine Animation */
.download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.download-btn:hover::before {
  left: 130%;
}

.stars {
  margin-top: 8px;
  color: #f5a623;
  transition: color 0.3s ease;
}

.app-card:hover .stars {
  color: #ff9800;
}
.rating-text{
  font-size: 0.8rem;
  color: #666;
  margin-top: 3px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .app-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .app-right {
    width: 100%;
    text-align: left;
  }

  .app-card:hover {
    transform: none;
  }

  .apps-title {
    font-size: 24px;
  }
}


/* Registeration & Deposite Guide Section */
.reg-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.reg-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.reg-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.reg-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 0 auto 35px;
  border-radius: 10px;
}

.reg-subheading {
  font-size: 18px;
  font-weight: 700;
  margin: 25px 0 12px;
  color: #111;
}

.reg-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.reg-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.reg-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .reg-card {
    padding: 25px 20px;
  }

  .reg-title {
    font-size: 24px;
  }

  .reg-subheading {
    font-size: 16px;
  }

  .reg-card p,
  .reg-list li {
    font-size: 15px;
  }
}
 /* Why Choose Teen Patti Master Section */
 .why-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.why-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.why-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 0 auto 35px;
  border-radius: 10px;
}

.why-subheading {
  font-size: 18px;
  font-weight: 700;
  margin: 25px 0 12px;
  color: #111;
}

.why-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

.game-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.game-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .why-card {
    padding: 25px 20px;
  }

  .why-title {
    font-size: 24px;
  }

  .why-subheading {
    font-size: 16px;
  }

  .why-card p,
  .game-list li {
    font-size: 15px;
  }
}

/* Final Thoughts section  */
.final-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.final-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.final-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.final-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.final-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.final-note-box {
  background: #fff6dc;
  border-left: 5px solid #f4b400;
  padding: 20px 22px;
  border-radius: 10px;
}

.final-note-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.final-note {
  margin-bottom: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .final-card {
    padding: 25px 20px;
  }

  .final-title {
    font-size: 24px;
  }

  .final-intro,
  .final-note-box p {
    font-size: 14.5px;
  }
}

/* FAQ Section */
/* ===== COMMON ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 0 auto 35px;
  border-radius: 10px;
}

/* ===== AUTHOR ===== */
.author-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.author-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.author-box {
  display: flex;
  align-items: center;
  gap: 25px;
}

.author-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #e6e6e6;
}

.author-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.author-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* ===== FAQ ===== */
.faq-section {
  background: #f5f7fa;
  padding: 60px 20px 60px;
}

.faq-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.faq-item {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-content h3 {
    font-size: 20px;
  }

  .author-content p,
  .faq-question,
  .faq-answer {
    font-size: 15px;
  }
}

/* Review Section */
.review-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.review-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.review-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-underline {
  width: 70px;
  height: 4px;
  background: #eb8e4c;
  margin: 0 auto 35px;
  border-radius: 10px;
}

/* ===== REVIEW ITEM ===== */
.review-item {
  background: #fafafa;
  border-left: 4px solid #eb8e4c;
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
}

.review-author {
  font-size: 14px;
  color: #555;
  font-style: italic;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .review-card {
    padding: 25px 20px;
  }

  .review-title {
    font-size: 24px;
  }

  .review-text {
    font-size: 15px;
  }
}

/* Footer Css */
.site-footer {
  background: linear-gradient(135deg, #2c3e50, #d7a5a3);
  color: #ecf0f1;
  padding: 50px 20px 35px;
}

.footer-top {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.footer-item h4 {
  color: #eb8e4c;
  margin: 12px 0 6px;
  font-size: 16px;
}

.footer-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* Icons */
.icon {
  font-size: 28px;
  display: inline-block;
  transition: transform 0.4s ease, color 0.4s ease;
}

.footer-item:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: #4aa3ff;
}

/* Divider */
.footer-divider {
  max-width: 900px;
  margin: 40px auto;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.footer-divider.small {
  margin: 25px auto;
}

/* Links */
.footer-links {
  text-align: center;
}

.footer-links a {
  color: #ecf0f1;
  margin: 0 15px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #eb8e4c;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Copyright */
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #bdc3c7;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links a {
    display: inline-block;
    margin: 8px 10px;
  }
}



/* ===== All Apk Page ===== */
.apps-hero {
  background: linear-gradient(135deg, #eb8e4c, #2c3e50);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.apps-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.apps-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.breadcrumb {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.8;
}

/* ===== STATS ===== */
.apps-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  background: #f5f7fa;
}

.stat-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 200px;
}

.stat-card h2 {
  color: #eb8e4c;
  font-size: 28px;
}

.stat-card p {
  font-size: 14px;
  color: #555;
}

/* ===== APP LIST ===== */
.apps-list {
  background: #f5f7fa;
  padding: 40px 20px 60px;
}

.app-row {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-left: 5px solid #eb8e4c;
  transition: all 0.35s ease;
  margin-bottom: 18px;
}

.app-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.app-row:hover img {
  transform: scale(1.1);
}

.app-left h3 {
  margin-bottom: 6px;
}

.meta {
  font-size: 14px;
  color: #555;
}

.desc {
  font-size: 14px;
  margin: 6px 0 10px;
  color: #333;
}

.tags span {
  display: inline-block;
  background: #eaf4ff;
  color: #eb8e4c;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 6px;
}

/* RIGHT */
.app-right {
  text-align: right;
}

.download-btn {
  position: relative;
  display: inline-block;
  background: #eb8e4c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating {
  margin-top: 10px;
  color: #f39c12;
}

.details {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #eb8e4c;
  text-decoration: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .apps-stats {
    flex-direction: column;
    align-items: center;
  }

  .app-row {
    flex-direction: column;
  }

  .app-right {
    display: grid;
    text-align: center;
  }
  .app-left {
    display: grid;
    text-align: center;
  }

  .apps-hero h1 {
    font-size: 26px;
  }
}

/* About Page */
.aboutus-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.aboutus-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.aboutus-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.aboutus-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.aboutus-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin: 25px 0 15px;
}

.aboutus-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.aboutus-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.tick {
  color: #16a34a;
  font-weight: bold;
  font-size: 18px;
}

.aboutus-footer {
  margin-top: 20px;
  font-size: 16px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .aboutus-card {
    padding: 25px 20px;
  }

  .aboutus-title {
    font-size: 24px;
  }

  .aboutus-card p,
  .aboutus-list li {
    font-size: 15px;
  }
}
/* ===== Terms & Conditions ===== */
.terms-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.terms-card {
  max-width: 950px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.terms-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.terms-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.terms-card h4 {
  font-size: 18px;
  margin: 22px 0 10px;
  font-weight: 700;
  color: #111;
}

.terms-footer {
  margin-top: 25px;
  font-size: 16px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .terms-card {
    padding: 25px 20px;
  }

  .terms-title {
    font-size: 24px;
  }

  .terms-card p,
  .terms-card h4 {
    font-size: 15px;
  }
}

/* Privacy Policy Section  */
.privacy-section {
    background: #f5f7fa;
  padding: 60px 20px;
}

.privacy-card {
  max-width: 950px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.privacy-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.privacy-card p {
    font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.privacy-card h4 {
    font-size: 18px;
    margin: 22px 0 10px;
    font-weight: 700;
  color: #111;
}

.privacy-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-card ul li {
    font-size: 16px;
    line-height: 1.6;
  margin-bottom: 6px;
}

.highlight {
  color: #eb8e4c;
  font-weight: 600;
}

.highlight-red {
    color: #e11d48;
    font-weight: 600;
}

.privacy-footer {
    margin-top: 25px;
  font-size: 16px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .privacy-card {
    padding: 25px 20px;
  }

  .privacy-title {
      font-size: 24px;
  }
  
  .privacy-card p,
  .privacy-card ul li,
  .privacy-card h4 {
    font-size: 15px;
}
}

/* Disclaimer Section  */
.disclaimer-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.disclaimer-card {
  max-width: 950px;
  margin: auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.disclaimer-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.disclaimer-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.disclaimer-card h4 {
  font-size: 18px;
  margin: 22px 0 10px;
  font-weight: 700;
  color: #111;
}

.disclaimer-footer {
  margin-top: 25px;
  font-size: 16px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .disclaimer-card {
    padding: 25px 20px;
  }

  .disclaimer-title {
    font-size: 24px;
  }

  .disclaimer-card p,
  .disclaimer-card h4 {
    font-size: 15px;
  }
}
/* Bottom To Top Btn */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: 1px solid #de6604;
  outline: none;
  /* background-color: #304052; */
  background-color:linear-gradient(135deg, #eb8e4c, #eb8e4c);
  color: #de6604;
  cursor: pointer;
  padding: 12px 16px;
  border-radius:0 50%;
  font-size: 18px;
  display: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(189, 118, 31, 0.6);
}


/* Contact Us CSS */

/* Main Card */
.contact-container {
  max-width: 820px;
  margin: 60px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Heading */
.contact-container h1 {
  text-align: center;
  color: #000;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

/* Info Section */
.contact-info {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #111827;
}

.contact-info p {
  margin: 6px 0;
}

/* Form */
.contact-form h3 {
  margin-bottom: 15px;
  color: #111827;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

/* Button */
.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #eb8e4c, #eb8e4c);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(189, 118, 31, 0.6);
  background: linear-gradient(135deg, #eb8e4c,#eb8e4c);
}

/* floating-download-btn */
.floating-download-btn {
  position: fixed;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  z-index: 9999;

  /* backdrop-filter: blur(10px); */
  border: 1px solid rgba(255,255,255,0.2);

  /* shadow + glow */
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.25),
    0 0 15px rgba(255,122,24,0.4);

  transition: all 0.3s ease;

  /* animation combo */
  animation: jump 1.8s ease-in-out infinite, pulse 2.5s infinite;
}

.floating-download-btn img{
  height: 150px;
  width: 150px;
}
/* Hover luxury effect */
.floating-download-btn:hover {
  transform: translateX(-50%) scale(1.08);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    0 0 25px rgba(255,122,24,0.7);
}

/* Jump motion */
@keyframes jump {
  0%   { transform: translate(-50%, 0); }
  50%  { transform: translate(-50%, -10px); }
  100% { transform: translate(-50%, 0); }
}

/* Glow pulse */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,24,0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(255,122,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,24,0); }
}
