/* ================================
   ROOT THEME VARIABLES
================================ */
:root {
  --primary: #FFD700; 
  --primary-dark: #D4AF37;
  --secondary: #00BFFF;
  --dark: #0A0A0A;
  --light: #FFFFFF;
  --gray: #A0A0A0;
  --bg: #121212;
  --card-bg: #151515;
  --border: #2a2a2a;
  --radius: 10px;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);

  --fs-h1: 2.4rem;
  --fs-h2: 1.8rem;
  --fs-h3: 1.3rem;
  --fs-body: 1rem;
}

html {
  scroll-behavior: smooth;
}
#main-content a {
  color: #FFD700; /* Mahadev gold / yellow */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#main-content a:hover {
  color: #D4AF37; /* darker gold on hover */
  text-decoration: underline;
}

#main-content a:visited {
  color: #FFD700;
}

/* ================================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li { list-style: none; }

body {
  background: var(--bg);
  color: var(--light);
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-body);
}

/* ================================
   HEADER
================================ */
.mb-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.mb-header .mb-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* ================================
   LOGO
================================ */
.mb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mb-logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.mb-logo span {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
}

/* ================================
   DESKTOP NAVIGATION
================================ */
.mb-nav {
  display: flex;
  align-items: center;
}

.mb-nav-menu {
  display: flex;
  gap: 32px;
}

.mb-nav-menu li {
  position: relative;
}

.mb-nav-menu li a {
  color: var(--light);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 8px 0;
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}

.mb-nav-menu li a:hover {
  color: var(--primary);
}

/* REMOVE OLD UNDERLINE EFFECT */
.mb-nav-menu li a::after {
  display: none !important;
}

/* ================================
   DESKTOP DROPDOWN
================================ */
.dropdown .dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  font-size: 0.95rem;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(255, 215, 0, 0.08);
  color: var(--primary);
}

/* ================================
   CTA BUTTON
================================ */
.mb-cta-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 20px;
  transition: var(--transition);
}

.mb-cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ================================
   MOBILE MENU ICON
================================ */
.mb-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mb-mobile-menu span {
  width: 30px;
  height: 3px;
  background: var(--light);
  border-radius: 3px;
  transition: var(--transition);
}

/* ================================
   MOBILE DROPDOWN
================================ */
.mb-mobile-dropdown {
  background: #0c0c0c;
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mb-mobile-dropdown.active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.mb-mobile-dropdown ul {
  padding: 8px 0;
}

.mb-mobile-dropdown ul li a {
  color: var(--light);
  display: block;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

/* Mobile dropdown submenu */
.mobile-dropdown .mobile-submenu {
  height: 0;
  overflow: hidden;
  background: #101010;
  transition: var(--transition);
}

.mobile-dropdown.open .mobile-submenu {
  height: auto;
}

.mobile-dropdown-btn {
  display: block;
  padding: 14px 22px;
  color: var(--primary);
  cursor: pointer;
}

/* CTA inside mobile dropdown */
.mb-mobile-cta {
  background: var(--primary);
  color: var(--dark) !important;
  padding: 12px;
  border-radius: var(--radius);
  display: block;
  margin: 15px 22px;
  font-weight: 600;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .mb-nav,
  .mb-cta-btn {
    display: none;
  }
  
  .mb-mobile-menu {
    display: flex;
  }
}

/* ---------- Mobile dropdown behaviour ---------- */
/* When viewport is small, make dropdown-menu static (not absolute) */
@media (max-width: 992px) {
  .dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    opacity: 1 !important;        /* keep visible when open */
    visibility: visible !important;
    max-height: 0;                /* collapsed by default */
    overflow: hidden;
    transition: max-height 0.28s ease;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  /* Dropdown list items style on mobile */
  .dropdown .dropdown-menu li a {
    padding: 12px 0;
    display: block;
    color: var(--light);
    background: var(--card-bg);
    margin: 6px 0;
    padding-left: 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
  }

  /* When open, allow height to expand */
  .dropdown.open .dropdown-menu {
    max-height: 1000px; /* large enough to show all items */
    padding: 10px 0;
  }

  /* Make the parent link show as a toggle */
  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* small arrow indicator */
  .dropdown > a .dd-arrow {
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
    font-size: 0.9rem;
    color: var(--gray);
  }

  .dropdown.open > a .dd-arrow {
    transform: rotate(180deg);
    color: var(--primary);
  }
}
.active-page {
    color: var(--primary) !important;
    font-weight: 700;
}
/* Main Footer */
.mb-footer {
    background: var(--dark);
    color: var(--text);
    padding: 60px 20px 20px;
    border-top: 1px solid var(--border-color);
}

.mb-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: auto;
}

/* Titles */
.mb-footer-title {
    font-size: 26px;        /* increased from 22px */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;    /* added spacing below */
    display: block;
}


.mb-footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Paragraph */
.mb-footer-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.mb-social-icons a img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    transition: 0.3s ease;
    filter: brightness(0.9);
}

.mb-social-icons a img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Lists */
.mb-footer-col ul {
    list-style: none;
    padding-left: 0;
}

.mb-footer-col ul li {
    margin-bottom: 10px;
}

.mb-footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s ease;
}

.mb-footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Contact Icons */
.mb-icon {
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Footer Bottom */
.mb-footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    padding-top: 15px;
}

.mb-footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .mb-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mb-footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ========================================================================== 
   WHATSAPP FLOATING BUTTON (Green #198754)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #198754;
  color: #fff;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 30px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* PNG icon */
.whatsapp-float img {
  width: 22px;
  height: 22px;
  display: block;
}

/* Text styling */
.whatsapp-float span {
  color: #fff;
}

/* Hover state */
.whatsapp-float:hover {
  background-color: #157347;
  transform: translateY(-2px);
}

/* Active state */
.whatsapp-float:active {
  background-color: #0f5132;
  transform: scale(0.96);
}


.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px;
  background: var(--gradient-dark);
  color: var(--text);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.hero-benefits {
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
}

.hero-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.hero-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.hero-cta-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text);
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--dark);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    margin-top: 40px;
  }
  .hero-image img {
    max-width: 90%;
  }
}
.story-section {
  max-width: 720px;
  margin: 60px auto;
  color: var(--text);
  background: var(--card-bg);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.story-section h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
  text-align: center;
}

.story-section p {
  font-size: 18px;
  margin-bottom: 16px;
}

.story-problems,
.story-benefits {
  list-style: none;
  margin: 20px 0;
  padding-left: 20px;
  font-weight: 600;
  color: var(--primary-dark);
}

.story-problems li,
.story-benefits li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.story-problems li::before,
.story-benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.story-section em {
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
  display: block;
  margin: 20px 0;
  font-size: 20px;
  text-align: center;
}

/* Experience Section */
.experience-section {
  padding: 80px 20px;
  background: var(--card-bg);
  color: var(--text);
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-intro,
.section-outro {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin: 0 auto 50px auto;
  max-width: 1100px;
}

.exp-card {
  background: var(--bg);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.exp-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.exp-card h3 {
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .exp-card {
    padding: 20px;
  }
}
.id-gateway-section {
  background: var(--card-bg);
  padding: 80px 15px;
  color: var(--text);
  margin-top: 60px;
}

.id-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.id-step {
  background: var(--bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}

.id-step:hover {
  transform: translateY(-7px);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 15px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
}

.id-step h3 {
  color: var(--primary-dark);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.id-step p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.id-highlight {
  text-align: center;
  margin-top: 55px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}
/* Global Section Title Fix */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

/* Optional: Improve intro text alignment under section title */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 10px;
}
.id-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.id-image img {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0px 4px 20px rgba(0,0,0,0.4));
}

/* Mobile-Friendly */
@media (max-width: 900px) {
  .id-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .id-image img {
    margin: 20px auto 0;
  }
}
.sports-section {
  padding: 80px 6%;
  background: var(--bg);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.sport-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease-in-out;
}

.sport-card:hover {
  transform: translateY(-6px);
}

.sport-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.sport-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}

.sport-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .sports-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }
}
/* Security Section */
.security-section {
  background: var(--card-bg);
  padding: 80px 15px;
  margin-top: 60px;
  color: var(--text);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.security-card {
  background: var(--bg);
  border: 1px solid var(--border-color);
  padding: 30px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}

.security-card:hover {
  transform: translateY(-7px);
  border-color: var(--primary);
}

/* ICON WRAPPER (White Background Version) */
.security-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: #ffffff; /* White background */
  color: var(--primary-dark); /* Gold icon color */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-size: 34px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

/* CSS-Only Icons */
.shield-icon::before {
  content: "🛡️";
}

.fairness-icon::before {
  content: "⚖️";
}

.lock-icon::before {
  content: "🔒";
}

.verify-icon::before {
  content: "✔️";
}

.security-card h3 {
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.security-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Highlight Note */
.security-note {
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  margin-top: 55px;
  color: var(--primary);
}
/* Experience Section */
.experience-section {
  background: var(--bg);
  padding: 80px 20px;
  color: var(--text);
  margin-top: 60px;
}

.experience-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 50px;
}

/* Vertical Journey Steps */
.experience-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 10px;
}

/* Timeline Connector Line */
.experience-steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

/* Step Container */
.exp-step {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
  position: relative;
}

/* Circular Icon Holder */
.exp-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  flex-shrink: 0;
  position: relative;
}

/* Icon Tick (CSS Shape) */
.exp-icon::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--primary-dark);
  border-bottom: 3px solid var(--primary-dark);
  transform: rotate(-45deg);
  top: 14px;
  left: 13px;
}

/* Step Content */
.exp-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.exp-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .experience-steps::before {
    left: 15px;
  }

  .exp-step {
    flex-direction: column;
    align-items: flex-start;
  }
}
.payments-section {
  background: var(--card-bg);
  color: var(--text);
  padding: 80px 20px;
  margin-top: 60px;
}

.payments-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.payments-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-feature {
  background: var(--bg);
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.payment-feature:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
}


/* Feature Titles */
.payment-feature h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

/* Feature Descriptions */
.payment-feature p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .payments-features {
    grid-template-columns: 1fr;
  }
}
.payments-section {
  background: var(--card-bg);
  color: var(--text);
  padding: 80px 20px;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.payments-section .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.payments-intro {
  max-width: 750px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  font-weight: 500;
}

/* Use flexbox for features with some spacing */
.payments-features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  justify-content: center;
}

/* Each feature is a horizontal block with icon and text side-by-side */
.payment-feature {
  display: flex;
  align-items: center;
  flex: 1 1 380px;
  min-width: 280px;
  background: transparent;  /* No background card */
  border: none;             /* No border */
  box-shadow: none;         /* No shadow */
  padding: 0;
}

/* Icon container with white background and subtle shadow */
.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-right: 22px;
  position: relative;
}

/* Icon shapes reused from before (optional) */
.payment-feature:nth-child(1) .feature-icon::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 34px;
  height: 22px;
  border: 3px solid var(--primary-dark);
  border-radius: 6px;
  box-sizing: border-box;
  background: transparent;
}

.payment-feature:nth-child(2) .feature-icon::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 25px;
  width: 22px;
  height: 38px;
  background: var(--primary-dark);
  border-radius: 5px;
}

.payment-feature:nth-child(3) .feature-icon::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 30px;
  height: 30px;
  border: 3px solid var(--primary-dark);
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
}

.payment-feature:nth-child(4) .feature-icon::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 32px;
  height: 26px;
  background: var(--primary-dark);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  border-radius: 4px;
}

.payment-feature:nth-child(5) .feature-icon::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 26px;
  height: 26px;
  background: var(--primary-dark);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-radius: 5px;
}

.payment-feature:nth-child(6) .feature-icon::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  border: 3px solid var(--primary-dark);
  clip-path: circle(50% at 50% 50%);
  border-radius: 50%;
  background: transparent;
}

/* Feature titles and descriptions */
.payment-feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.payment-feature p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 420px;
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
  .payments-features {
    flex-direction: column;
    gap: 30px;
  }

  .payment-feature {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .payment-feature p, .payment-feature h3 {
    max-width: 100%;
  }
}
/* Container and Layout */
.app-experience-section {
  background: var(--card-bg);
  color: var(--text);
  padding: 80px 15px;
  margin-top: 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.app-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.app-text-content .section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: left;
}

/* Intro paragraph */
.app-text-content .section-intro {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Paragraphs */
.app-text-content p {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Benefits List */
.app-benefits-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.app-benefits-list li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

/* Image styling */
.app-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 900px) {
  .app-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .app-text-content .section-title,
  .app-text-content .section-intro,
  .app-text-content p,
  .app-benefits-list li {
    text-align: center;
  }

  .app-image img {
    max-width: 320px;
    margin: 30px auto 0;
  }
}
.education-section {
  background: var(--card-bg);
  padding: 80px 20px;
  color: var(--text);
  max-width: 1100px;
  margin: 60px auto 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 1px solid var(--border-color);
}

.education-section .section-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.education-section .section-intro {
  font-size: 19px;
  max-width: 780px;
  margin: 0 auto 50px auto;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.02em;
}

.education-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.edu-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
  cursor: default;
}

.edu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 45px rgba(0,0,0,0.35);
  border-color: var(--primary);
}

.edu-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.edu-card p {
  font-size: 16.2px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.015em;
}

/* Responsive tweaks */
@media (max-width: 850px) {
  .education-section {
    padding: 60px 15px;
  }

  .education-cards {
    grid-template-columns: 1fr;
  }
}
/* Fixed Navigation */
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
}
.fixed-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
}
.fixed-nav a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s ease;
}
.fixed-nav a:hover,
.fixed-nav a:focus {
  color: var(--primary-dark);
  outline: none;
}

/* Section Separator for spacing between sections */
.section-separator {
  height: 60px;
  background: transparent;
}

/* Intro to Education line */
.intro-education {
  text-align: center;
  font-size: 18px;
  margin: 40px auto 20px;
  color: var(--text-muted);
  max-width: 700px;
  font-style: italic;
}

/* Education Cards */
.education-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 24px;
  margin-top: 20px;
}
.edu-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.edu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}
.edu-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary);
}
.edu-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .education-cards {
    grid-template-columns: 1fr;
  }
  .fixed-nav ul {
    flex-direction: column;
    gap: 15px;
  }
}
/* =============================
   TRUST & TEAM SECTION
   ============================= */
.trust-team-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--text);
}

.trust-team-section .section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}

.trust-team-section .section-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.trust-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}
.team-section {
  background: var(--bg);
  color: var(--text);
  padding: 80px 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.team-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.team-section .section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.team-section .team-intro {
  max-width: 720px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* Grid container for the team members */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Each team member block */
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 32px;
}

/* Last item no border */
.team-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Photo container */
.team-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--card-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.team-photo {
  width: 120px;
  height: auto;          /* Let height adjust automatically */
  margin-bottom: 20px;
  object-fit: cover;     /* Optional: fills the box nicely */
  border-radius: 50%;    /* Optional: for circle style */
}

/* Hover scale for photo */
.team-card:hover .team-photo {
  transform: scale(1.05);
}

/* Text content of each expert */
.team-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 4px 0;
}

.team-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 14px 0;
  font-style: italic;
}

.team-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 680px;
}

/* Credentials list */
.team-credentials {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.team-credentials li {
  font-size: 14px;
  background: var(--primary);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  user-select: none;
  white-space: nowrap;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-desc {
    max-width: 100%;
  }

  .team-credentials {
    justify-content: center;
  }
}
.community-testimonials-section {
  background: var(--bg);
  padding: 80px 0;
  color: var(--text);
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 15px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.testimonials-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
}

.review-card {
  background: var(--card-bg);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: transform .3s ease, border-color .3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.reviewer-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid var(--primary-dark);
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.reviewer-location {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.join-cta {
  margin-top: 60px;
  text-align: center;
}

.join-cta .btn-primary {
  background: var(--primary);
  padding: 14px 30px;
  border-radius: 40px;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}
.platform-stats-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  text-align: center;
}

.platform-stats-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.platform-stats-section .section-intro {
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 17px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.stat-box {
  background: var(--card-bg);
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-number {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 15px;
}
/* =============================
   COMPARISON TABLE SECTION
   ============================= */
.comparison-section {
  background: var(--card-bg);
  padding: 60px 20px;
  color: var(--text);
}

.comparison-section .section-title {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 14px;
}

.comparison-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

.comparison-table-wrapper {
  overflow-x: auto;
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 480px;
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  color: var(--text);
}

.comparison-table th {
  background: var(--primary-dark);
  color: var(--dark);
  font-weight: 700;
  font-size: 18px;
}

.comparison-table tbody tr:hover {
  background: var(--gradient-dark);
  color: var(--primary);
  cursor: default;
  transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover td {
  color: var(--primary);
}

.checkmark {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
}

.crossmark {
  color: #d9534f; /* bootstrap danger red */
  font-size: 22px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
  .comparison-table th, .comparison-table td {
    padding: 14px 12px;
    font-size: 14px;
  }

  .comparison-section .section-title {
    font-size: 28px;
  }
}
/* PARALLAX BACKGROUND */
.parallax-vision {
  position: relative;
  padding: 90px 0;
  background: var(--dark);
  overflow: hidden;
}

.parallax-vision .parallax-bg {
  position: absolute;
  inset: 0;
  background: inherit; /* keeps your same background */
  opacity: 0.18;
  transform: scale(1.2);
  filter: blur(8px);
}

/* HEADING */
.section-title {
  font-size: 42px;
  text-align: center;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
  z-index: 5;
}

.section-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 5;
}

/* TIMELINE WRAPPER */
.vision-timeline {
  width: 100%;
  position: relative;
  padding-left: 30px;
  border-left: 2px solid rgba(255, 215, 0, 0.25);
  z-index: 3;
}

/* THE GOLD MOVING LINE */
.vision-row {
  position: relative;
  padding: 40px 0 40px 40px;
}

.vision-line {
  position: absolute;
  left: -11px;
  top: 40px;
  width: 18px;
  height: 18px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* CONTENT BLOCK */
.vision-content {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.vision-content:hover {
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

/* TITLES + TEXT */
.vision-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}


.vision-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vision-timeline {
    padding-left: 20px;
  }
  .section-title {
    font-size: 32px;
  }
}
/* Section Styling */
.awards-section {
  padding: 80px 20px;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.awards-section .section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: 1px;
}

.awards-section .section-intro {
  max-width: 780px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Awards Layout */
.awards-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Award Item (No Cards) */
.award-item {
  position: relative;
  padding: 25px 20px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}

/* Clean glowing line on left side */
.award-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: var(--primary-dark);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* Award Icon (geometric gold emblem) */
.award-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 85% 25%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 15% 25%);
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
}

/* Text Styling */
.award-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 5px 0 8px;
  color: var(--primary);
}

.award-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */
@media (min-width: 768px) {
  .awards-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.keyword-accordion-section {
  padding: 80px 0;
  background: var(--bg);
  color: var(--text);
}

.keyword-accordion-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.keyword-accordion-section .section-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-muted);
}

.accordion {
  max-width: 950px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--primary);
  transform: scale(1.01);
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
}

.accordion-header::after {
  content: "+";
  font-size: 24px;
  position: absolute;
  right: 20px;
  top: 12px;
  color: var(--primary);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text);
  background: #161616;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  padding: 20px;
  max-height: 500px;
}

.accordion-body p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}
.responsible-betting-section {
  padding: 90px 0;
  background: transparent;
}

.responsible-betting-section .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.responsible-betting-section .section-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.responsible-content {
  max-width: 900px;
  margin: 0 auto;
}

.responsible-block {
  padding: 10px 0;
}

.responsible-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.responsible-block p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

.responsible-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-color),
    transparent
  );
  margin: 35px 0;
}

.responsible-note {
  margin-top: 50px;
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  font-style: italic;
}
.faq-section {
  padding: 90px 0;
}

.faq-section .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.faq-section .section-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}
/* =========================
   GET STARTED SECTION
   ========================= */

.get-started-section {
  padding: 90px 0;
  text-align: center;
}

/* Flow wrapper */
.get-started-flow {
  max-width: 820px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Each step */
.step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Step number */
.step-count {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #000;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Step text */
.step-content {
  text-align: center;
  max-width: 620px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.step-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Connector line */
.step-line::after {
  content: "";
  width: 2px;
  height: 40px;
  background: var(--border-color);
  margin-top: 18px;
}

.step-line:last-child::after {
  display: none;
}

/* Bottom note */
.get-started-note {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px dashed var(--border-color);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 768px) {

  .get-started-section {
    padding: 70px 16px;
  }

  .get-started-flow {
    gap: 42px;
  }

  .step-content {
    max-width: 100%;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 15px;
  }
}
/* =========================
   TRUST CLOSURE SECTION
   ========================= */

.trust-closure-section {
  padding: 90px 0;
  background: var(--gradient-dark);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.trust-closure-section .section-title {
  max-width: 720px;
  margin: 0 auto 18px;
}

.trust-closure-section .section-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.trust-points {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.trust-points p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text);
}

.trust-footer-note {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px dashed var(--border-color);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.trust-footer-note p {
  font-size: 14px;
  color: var(--text-muted);
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 768px) {
  .trust-closure-section {
    padding: 70px 16px;
  }

  .trust-points p {
    font-size: 15px;
  }
}
/* ===============================
   Mahadev Book Keyword Master
   =============================== */

.mbid-keyword-master {
  padding: 90px 20px;
  position: relative;
}

.mbid-keyword-master .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Title */
.mbid-keyword-master .section-title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  margin-bottom: 18px;
}

/* Intro Paragraph */
.mbid-keyword-master .section-intro {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Headings (H3) */
.mbid-keyword-master h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--light);
  margin-top: 55px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

/* Accent line before headings */
.mbid-keyword-master h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 22px;
  width: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Paragraphs */
.mbid-keyword-master p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 18px;
}

/* Keyword Highlights */
.mbid-keyword-master strong {
  color: var(--primary);
  font-weight: 600;
}

/* Smooth reading divider */
.mbid-keyword-master h3:not(:first-of-type) {
  padding-top: 10px;
}

/* ===============================
   Mobile Optimization
   =============================== */

@media (max-width: 768px) {
  .mbid-keyword-master {
    padding: 65px 16px;
  }

  .mbid-keyword-master .section-title {
    font-size: 30px;
  }

  .mbid-keyword-master .section-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .mbid-keyword-master h3 {
    font-size: 22px;
    padding-left: 14px;
  }

  .mbid-keyword-master h3::before {
    height: 18px;
    top: 5px;
  }

  .mbid-keyword-master p {
    font-size: 16px;
    line-height: 1.85;
  }
}

/* ===============================
   Extra Polish (Optional)
   =============================== */

.mbid-keyword-master p:hover strong {
  color: var(--primary-dark);
  transition: color 0.3s ease;
}

/* ==========================================================================================Mahadev Book Id Page start =================================================================================== */
.mbid-hero {
  padding: 80px 0 90px;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  color: var(--text);
}

.mbid-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--gradient-gold);
  border-radius: 50px;
  box-shadow: var(--shadow);
}

/* Heading */
.mbid-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--light);
}

/* Text */
.hero-subtext {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Points */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 30px auto 35px;
  max-width: 520px;
}

.hero-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--light);
  margin-bottom: 12px;
}

.hero-points span {
  color: var(--primary);
  font-weight: 700;
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  padding: 14px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
}

/* Trust Line */
.hero-trust {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gray);
}

/* Mobile */
@media (max-width: 768px) {
  .mbid-hero {
    padding: 60px 0 70px;
  }

  .mbid-hero h1 {
    font-size: 30px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-points li {
    font-size: 15px;
  }
}
.mbid-how-section {
  padding: 80px 0;
  background: var(--bg);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 18px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-block {
  background: var(--card-bg);
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.how-block:hover {
  transform: translateY(-4px);
}

.how-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.how-block p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

/* Steps */
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 12px;
}

/* Step Number Styling – FIXED */
.how-steps span {
  min-width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

/* Improve step text alignment */
.how-steps li {
  align-items: center;
}

/* Dark theme contrast improvement */
.how-block {
  background: linear-gradient(180deg, #151515, #1b1b1b);
  border: 1px solid rgba(255, 215, 0, 0.08);
}

/* Optional subtle glow on hover */
.how-block:hover .how-steps span {
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}


/* Mobile */
@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}
.mbid-how-section {
  padding: 80px 0;
  background: transparent;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.how-block {
  position: relative;
  background: linear-gradient(180deg, #141414, #1c1c1c);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 16px;
  padding: 40px 28px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.step-number {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.15);
}

.how-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
}

.how-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.how-note {
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .mbid-how-section {
    padding: 60px 0;
  }

  .how-block {
    padding: 34px 22px 28px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}
.mbid-why-section {
  padding: 80px 0;
  background: transparent;
}

.why-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 28px;
  background: linear-gradient(180deg, #151515, #1e1e1e);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.why-icon {
  font-size: 28px;
  line-height: 1;
  margin-top: 4px;
}

.why-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 8px;
}

.why-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .mbid-why-section {
    padding: 60px 0;
  }

  .why-item {
    padding: 22px 20px;
  }

  .why-icon {
    font-size: 24px;
  }

  .why-content h3 {
    font-size: 17px;
  }
}
/* ===============================
   Mahadev Book ID Registration
   =============================== */

.mbid-registration {
  padding: 90px 20px;
}

.mbid-registration .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
.mbid-registration .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Intro */
.mbid-registration .section-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Steps Wrapper */
.mbid-steps {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Single Step */
.mbid-step {
  position: relative;
  padding-left: 80px;
}

.mbid-step .step-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff; /* pure white */
  opacity: 1;
  letter-spacing: 1px;
}


/* Step Heading */
.mbid-step h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 10px;
}

/* Step Text */
.mbid-step p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}

/* Note */
.mbid-note {
  margin-top: 50px;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   Mobile Optimization
   =============================== */

@media (max-width: 768px) {
  .mbid-registration {
    padding: 65px 16px;
  }

  .mbid-registration .section-title {
    font-size: 30px;
  }

  .mbid-registration .section-intro {
    font-size: 16px;
    margin-bottom: 45px;
  }

  .mbid-step {
    padding-left: 0;
  }

  .mbid-step .step-number {
    position: relative;
    display: block;
    margin-bottom: 8px;
    font-size: 34px;
  }

  .mbid-step h3 {
    font-size: 21px;
  }

  .mbid-step p {
    font-size: 16px;
  }
}
.mbid-trust-section {
  padding: 90px 0;
  background: var(--bg);
}

.mbid-trust-section .section-title {
  text-align: center;
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mbid-trust-section .section-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.trust-list {
  max-width: 900px;
  margin: 0 auto;
}

.trust-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-point:last-child {
  border-bottom: none;
}

.trust-icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}

.trust-point h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.trust-point p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .trust-point {
    flex-direction: column;
  }

  .trust-icon {
    font-size: 26px;
  }
}
.mbid-how-section {
  padding: 90px 0;
  background: var(--bg);
}

.mbid-how-section .section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 700;
}

.mbid-how-section .section-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.how-flow {
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-number {
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #ffffff; /* FIXED: white numbers */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.step-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .how-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-content h3 {
    margin-top: 10px;
  }
}
.mbid-markets-section {
  padding: 90px 0;
  background: var(--gradient-dark);
}

.mbid-markets-section .section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.mbid-markets-section .section-intro {
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.market-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.market-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.market-item h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.market-item p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.markets-note {
  text-align: center;
  margin-top: 50px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .markets-grid {
    grid-template-columns: 1fr;
  }

  .mbid-markets-section .section-title {
    font-size: 30px;
  }
}
.mbid-trust-section {
  padding: 90px 0;
  background: var(--bg);
}

.mbid-trust-section .section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 18px;
}

.mbid-trust-section .section-intro {
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-item {
  padding: 28px;
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.trust-item h3 {
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.trust-note {
  text-align: center;
  margin-top: 50px;
  font-size: 15px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .mbid-trust-section .section-title {
    font-size: 30px;
  }
}
.mbid-security-section {
  padding: 110px 0;
  background: var(--bg);
}

.mbid-security-section .section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 18px;
}

.mbid-security-section .section-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Content flow */
.security-content {
  max-width: 900px;
  margin: 0 auto;
}

.security-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-color);
}

.security-block:last-child {
  border-bottom: none;
}

.security-block h3 {
  font-size: 21px;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.security-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.security-block p {
  font-size: 15.8px;
  color: var(--text-muted);
  line-height: 1.7;
}

.security-note {
  margin-top: 70px;
  text-align: center;
  font-size: 15.5px;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .mbid-security-section .section-title {
    font-size: 30px;
  }

  .security-block h3 {
    font-size: 19px;
  }

  .security-block {
    padding: 22px 0;
  }
}
.mbid-comparison-section {
  padding: 120px 0;
  background: var(--bg);
}

.mbid-comparison-section .section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}

.mbid-comparison-section .section-intro {
  max-width: 920px;
  margin: 0 auto 90px;
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Comparison layout */
.comparison-flow {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row .label {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.comparison-row p {
  font-size: 15.8px;
  color: var(--text-muted);
  line-height: 1.7;
}

.comparison-note {
  max-width: 850px;
  margin: 80px auto 0;
  text-align: center;
  font-size: 15.5px;
  color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mbid-comparison-section .section-title {
    font-size: 30px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .comparison-row .label {
    font-size: 14px;
  }
}
.mbid-final-section {
  padding: 130px 0;
  background: var(--bg);
  text-align: center;
}

.mbid-final-section .final-title {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 26px;
}

.mbid-final-section .final-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

.final-highlights {
  max-width: 520px;
  margin: 0 auto 70px;
  text-align: left;
}

.final-highlights p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
}

.final-cta {
  margin-bottom: 40px;
}

.final-cta .btn-primary {
  padding: 16px 34px;
  font-size: 16px;
  border-radius: 40px;
}

.final-note {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .mbid-final-section .final-title {
    font-size: 30px;
  }

  .final-highlights {
    text-align: center;
  }

  .final-highlights p {
    font-size: 15px;
  }
}

/* ==========================================================================================Mahadev Book Id Page End =================================================================================== */


/* ==========================================================================================Mahadevbook page start =================================================================================== */
/* ===============================
   COMMON UTILITIES (SAFE)
================================ */
.mahadevbook-hero,
.platform-explanation,
.indian-demand,
.verification-matters,
.platform-trust,
.platform-entertainment,
.financial-operations,
.mobile-optimization,
.community-trust,
.responsible-engagement,
.confident-access {
  padding: 70px 0;
  background: transparent;
}

.mahadevbook-hero .container,
.platform-explanation .container,
.indian-demand .container,
.verification-matters .container,
.platform-trust .container,
.platform-entertainment .container,
.financial-operations .container,
.mobile-optimization .container,
.community-trust .container,
.responsible-engagement .container,
.confident-access .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===============================
   TYPOGRAPHY
================================ */
.mahadevbook-hero h1,
section h2 {
  color: #FFD700;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

section h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

section h4 {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 8px;
}

section p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===============================
   HERO SECTION
================================ */
.mahadevbook-hero {
  background: linear-gradient(180deg, #0a0a0a, #111);
}

.hero-features {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.hero-features li {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.hero-cta {
  margin-top: 30px;
}

.hero-cta .cta-button {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-cta .cta-button:hover {
  background: #e6c200;
}

/* ===============================
   CARD / GRID SECTIONS
================================ */
.platform-attributes,
.demand-grid,
.verification-benefits,
.trust-dimensions,
.entertainment-options,
.financial-principles,
.device-considerations,
.trust-factors,
.responsibility-features,
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* ===============================
   CARD STYLE
================================ */
.attribute-item,
.demand-point,
.benefit,
.dimension,
.option-category,
.principle,
.consideration,
.factor,
.feature,
.step {
  background: #141414;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.attribute-item:hover,
.demand-point:hover,
.benefit:hover,
.dimension:hover,
.option-category:hover,
.principle:hover,
.consideration:hover,
.factor:hover,
.feature:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: #FFD700;
}

/* ===============================
   ICON COLOR
================================ */
section i {
  color: #FFD700;
  margin-right: 6px;
}

/* ===============================
   STEP NUMBERS
================================ */
.step-number {
  display: inline-block;
  background: #FFD700;
  color: #000;
  font-weight: 700;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* ===============================
   FINAL CTA
================================ */
.final-cta {
  margin-top: 50px;
  text-align: center;
}

.cta-button-primary {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000;
  padding: 16px 40px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.cta-button-primary:hover {
  opacity: 0.9;
}

.cta-note {
  margin-top: 15px;
  color: #bfbfbf;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  section h2 {
    font-size: 28px;
  }

  .mahadevbook-hero h1 {
    font-size: 30px;
  }
}

/* ==========================================================================================Mahadevbook page End =================================================================================== */

/* ==========================================================================================Mahadev book whatsp page start =================================================================================== */
/* ================================
   MAHADEV BOOK WHATSAPP PAGE
   Scoped CSS – Safe & Independent
================================ */

#mahadevbook-whatsapp-page {
  background: #0d0d0d;
  color: #eaeaea;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

/* Container */
#mahadevbook-whatsapp-page .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Section Spacing */
#mahadevbook-whatsapp-page section {
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

#mahadevbook-whatsapp-page section:last-child {
  border-bottom: none;
}

/* Headings */
#mahadevbook-whatsapp-page h1 {
  font-size: 42px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 24px;
  line-height: 1.3;
}

#mahadevbook-whatsapp-page h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

#mahadevbook-whatsapp-page h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

#mahadevbook-whatsapp-page h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
}

/* Paragraphs */
#mahadevbook-whatsapp-page p {
  font-size: 16.5px;
  color: #dcdcdc;
  margin-bottom: 18px;
}

/* Hero Section */
.whatsapp-hero {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  text-align: left;
}

.whatsapp-hero .hero-intro {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 900px;
}

/* CTA Buttons */
#mahadevbook-whatsapp-page .cta-button,
#mahadevbook-whatsapp-page .cta-button-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #d4af37);
  color: #0b0b0b;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#mahadevbook-whatsapp-page .cta-button:hover,
#mahadevbook-whatsapp-page .cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}

/* Importance Grid */
.importance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.importance-item {
  background: #141414;
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 14px;
  padding: 28px;
}

.importance-item p {
  font-size: 15.5px;
  color: #cfcfcf;
}

/* Benefits List */
.benefit-list {
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #d8d8d8;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd700;
  font-weight: bold;
}

/* Safety Points */
.safety-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.safety-item {
  background: #121212;
  border-left: 4px solid #ffd700;
  padding: 22px 24px;
  border-radius: 10px;
}

/* Final CTA Section */
.whatsapp-final {
  background: linear-gradient(180deg, #121212, #0a0a0a);
  text-align: center;
}

.whatsapp-final h2 {
  font-size: 34px;
}

.whatsapp-final p {
  max-width: 850px;
  margin: 0 auto 25px;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
  #mahadevbook-whatsapp-page h1 {
    font-size: 32px;
  }

  #mahadevbook-whatsapp-page h2 {
    font-size: 26px;
  }

  #mahadevbook-whatsapp-page .container {
    padding: 60px 16px;
  }
}


/* ==========================================================================================Mahadev book whatsp page End =================================================================================== */

/* ==========================================================================================Mahadev book app page start =================================================================================== */

/* Container */
#mahadev-book-app-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  color: #f0f0f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.02em;
  background-color: transparent;
}

/* General Section Style */
#mahadev-book-app-page section {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(217, 181, 58, 0.3);
  margin-bottom: 3rem;
  padding: 2.5rem 3rem;
  transition: box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.15s;
}

#mahadev-book-app-page section:hover {
  box-shadow: 0 12px 24px #FFD700;
}

/* FadeIn Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Headings */
#mahadev-book-app-page h1,
#mahadev-book-app-page h2 {
  color: #FFD700;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid #D4AF37;
  padding-bottom: 0.4rem;
  max-width: fit-content;
}

/* h1 specific */
#mahadev-book-app-page h1 {
  font-size: 2.5rem;
}

/* h2 specific */
#mahadev-book-app-page h2 {
  font-size: 2rem;
}

/* Paragraphs */
#mahadev-book-app-page p {
  font-size: 1.125rem;
  color: #eaeaea;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Hero Intro Paragraph */
#mahadev-book-app-page .hero-intro {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff8cc;
  margin-bottom: 1.5rem;
}

/* Importance Grid for "Why Choose the App" section */
#mahadev-book-app-page .importance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

/* Individual Importance Item */
#mahadev-book-app-page .importance-item {
  background: #272727;
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 4px 10px rgba(217, 181, 58, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

#mahadev-book-app-page .importance-item:hover {
  background: #3a3a00;
  box-shadow: 0 8px 20px #FFD700;
}

/* Importance Item Headings */
#mahadev-book-app-page .importance-item h3 {
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

/* Feature List Styling */
#mahadev-book-app-page .feature-list {
  list-style-type: disc;
  margin-left: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

#mahadev-book-app-page .feature-list li {
  margin-bottom: 0.75rem;
}

/* Responsive Typography and Layout */
@media (max-width: 768px) {
  #mahadev-book-app-page h1 {
    font-size: 2rem;
  }
  #mahadev-book-app-page h2 {
    font-size: 1.6rem;
  }
  #mahadev-book-app-page p,
  #mahadev-book-app-page .feature-list li {
    font-size: 1rem;
  }
  #mahadev-book-app-page section {
    padding: 2rem 1.5rem;
  }
  #mahadev-book-app-page .importance-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility focus styles for links (if any in content) */
#mahadev-book-app-page a:focus {
  outline: 2px solid #FFD700;
  outline-offset: 3px;
}

/* Utility: Highlight important phrases */
#mahadev-book-app-page .highlight-yellow {
  color: #FFD700;
  font-weight: 700;
}

/* Additional spacing for last paragraphs */
#mahadev-book-app-page section p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================================Mahadev book app page end =================================================================================== */

/* ==========================================================================================Laser247 start  =================================================================================== */

/* ======================================
   Laser247 Page – Main Content Styles
   ====================================== */

#laser247-page {
  background: var(--bg, #121212);
  color: var(--text, #f0f0f0);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Container */
#laser247-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Section Base */
#laser247-page section {
  border-bottom: 1px solid var(--border-color, #2a2a2a);
}

#laser247-page section:last-child {
  border-bottom: none;
}

/* Headings */
#laser247-page h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--primary, #FFD700);
}

#laser247-page h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  color: var(--primary, #FFD700);
}

#laser247-page h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary-dark, #D4AF37);
}

/* Paragraphs */
#laser247-page p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted, #cfcfcf);
  margin-bottom: 18px;
}

/* Hero Section */
#laser247-page .laser-hero {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.07),
    rgba(18, 18, 18, 0.95)
  );
}

#laser247-page .hero-intro {
  font-size: 1.15rem;
  color: var(--text, #f5f5f5);
}

/* Why Grid */
#laser247-page .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

#laser247-page .why-item {
  background: var(--card-bg, #1a1a1a);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow, 0 6px 18px rgba(0,0,0,0.6));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#laser247-page .why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.75);
}

/* Feature List */
#laser247-page .feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

#laser247-page .feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-muted, #d0d0d0);
}

#laser247-page .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--primary, #FFD700);
}

/* Alternating Section Backgrounds */
#laser247-page
.laser-understanding,
#laser247-page
.laser-experience,
#laser247-page
.laser-security,
#laser247-page
.laser-existing-users,
#laser247-page
.laser-trust {
  background: var(--gradient-dark, linear-gradient(135deg, #0a0a0a, #1a1a1a));
}

#laser247-page
.laser-performance,
#laser247-page
.laser-new-users,
#laser247-page
.laser-responsible,
#laser247-page
.laser-conclusion {
  background: var(--bg, #121212);
}

/* Conclusion */
#laser247-page .laser-conclusion h2 {
  text-align: center;
}

#laser247-page .laser-conclusion p {
  max-width: 820px;
  margin: 0 auto 16px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  #laser247-page .container {
    padding: 60px 16px;
  }

  #laser247-page h1 {
    font-size: 2rem;
  }

  #laser247-page p {
    font-size: 1rem;
  }
}

/* ==========================================================================================Laser247 End  =================================================================================== */


/* ==========================================================================================Gold365 start =================================================================================== */
/* ===============================
   GOLD365 PAGE BASE
================================ */

#gold365-page {
  background: linear-gradient(180deg, #0a0a0a, #121212);
  color: #eaeaea;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.8;
}

#gold365-page .container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* ===============================
   HEADINGS
================================ */

#gold365-page h1 {
  font-size: 42px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

#gold365-page h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
}

#gold365-page h3 {
  font-size: 20px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 12px;
}

/* ===============================
   PARAGRAPHS & LISTS
================================ */

#gold365-page p {
  font-size: 17px;
  color: #cccccc;
  margin-bottom: 18px;
}

#gold365-page ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

#gold365-page ul li {
  padding-left: 28px;
  margin-bottom: 14px;
  position: relative;
  color: #d0d0d0;
}

#gold365-page ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 600;
}

/* ===============================
   HERO SECTION
================================ */

.gold-hero {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  border-bottom: 1px solid #2a2a2a;
}

.gold-hero .hero-intro {
  font-size: 18px;
  max-width: 850px;
}

/* ===============================
   SECTION STYLING
================================ */

#gold365-page section {
  position: relative;
}

#gold365-page section:not(.gold-hero) {
  border-bottom: 1px solid #222;
}

#gold365-page section:last-child {
  border-bottom: none;
}

/* ===============================
   FEATURE GRID
================================ */

.gold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gold-item {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  transition: all 0.35s ease;
}

.gold-item:hover {
  transform: translateY(-6px);
  border-color: #FFD700;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.08);
}

/* ===============================
   EXPERIENCE & CONTENT BLOCKS
================================ */

.gold-experience p,
.gold-existing-users p,
.gold-security p,
.gold-responsible p,
.gold-trust p {
  max-width: 900px;
}

/* ===============================
   RESPONSIBLE & TRUST SECTIONS
================================ */

.gold-responsible,
.gold-trust {
  background: linear-gradient(180deg, #111, #0b0b0b);
}

/* ===============================
   CONCLUSION
================================ */

.gold-conclusion {
  background: linear-gradient(180deg, #151515, #0d0d0d);
}

.gold-conclusion h2 {
  font-size: 34px;
}

.gold-conclusion p {
  font-size: 18px;
}

/* ===============================
   SUBTLE ANIMATION
================================ */

#gold365-page section {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  #gold365-page .container {
    padding: 60px 18px;
  }

  #gold365-page h1 {
    font-size: 34px;
  }

  #gold365-page h2 {
    font-size: 26px;
  }

  #gold365-page p {
    font-size: 16px;
  }
}

/* ==========================================================================================Gold365 End =================================================================================== */

/* ==========================================================================================Reddy anna start =================================================================================== */

/* ===============================
   REDDY ANNA MAIN PAGE BASE
================================ */
#reddy-anna-page {
  background: #0d0f14;
  color: #eaeaf0;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.75;
}

/* Container */
#reddy-anna-page .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section spacing */
#reddy-anna-page section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#reddy-anna-page section:last-child {
  border-bottom: none;
}

/* Headings */
#reddy-anna-page h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

#reddy-anna-page h2 {
  font-size: 30px;
  font-weight: 600;
  color: #ffd166;
  margin-bottom: 22px;
}

#reddy-anna-page h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Paragraphs */
#reddy-anna-page p {
  font-size: 17px;
  color: #d4d6dd;
  margin-bottom: 16px;
}

/* Hero Section */
#reddy-anna-page .reddy-hero {
  background: linear-gradient(135deg, #111827, #0d0f14);
  padding: 110px 0 100px;
}

#reddy-anna-page .hero-intro {
  font-size: 18px;
  color: #f1f1f6;
  max-width: 900px;
}

/* Why Grid */
#reddy-anna-page .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

#reddy-anna-page .why-item {
  background: #141826;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 24px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

#reddy-anna-page .why-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 209, 102, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#reddy-anna-page .why-item p {
  font-size: 16px;
  margin-bottom: 0;
}

/* Feature List */
#reddy-anna-page .feature-list {
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
}

#reddy-anna-page .feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #e1e2e8;
}

#reddy-anna-page .feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd166;
  font-weight: bold;
}

/* Experience & Text Sections */
#reddy-anna-page
.reddy-experience,
.reddy-performance,
.reddy-security,
.reddy-new-users,
.reddy-existing-users,
.reddy-responsible,
.reddy-trust {
  background: #0f121b;
}

/* Conclusion Section */
#reddy-anna-page .reddy-conclusion {
  background: linear-gradient(135deg, #141826, #0f121b);
  text-align: center;
}

#reddy-anna-page .reddy-conclusion h2 {
  color: #ffffff;
}

#reddy-anna-page .reddy-conclusion p {
  max-width: 900px;
  margin: 0 auto 14px;
  color: #e6e7ee;
}

/* Responsive */
@media (max-width: 768px) {

  #reddy-anna-page section {
    padding: 60px 0;
  }

  #reddy-anna-page h1 {
    font-size: 32px;
  }

  #reddy-anna-page h2 {
    font-size: 24px;
  }

  #reddy-anna-page p {
    font-size: 16px;
  }
}

/* ==========================================================================================Reddy anna End =================================================================================== */


/* ==========================================================================================Diamond Exchange Start =================================================================================== */
/* ===============================
   Diamond Exchange – Main Content
   =============================== */

#diamond-exchange-page {
  background: var(--bg, #121212);
  color: var(--text, #f0f0f0);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif;
  line-height: 1.8;
}

/* Container */
#diamond-exchange-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Section Base */
#diamond-exchange-page section {
  border-bottom: 1px solid var(--border-color, #2a2a2a);
}

#diamond-exchange-page section:last-child {
  border-bottom: none;
}

/* Headings */
#diamond-exchange-page h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--primary, #FFD700);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

#diamond-exchange-page h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

#diamond-exchange-page h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--primary-dark, #D4AF37);
}

/* Text */
#diamond-exchange-page p {
  font-size: 1.05rem;
  color: var(--text-muted, #bdbdbd);
  margin-bottom: 18px;
  max-width: 850px;
}

/* Hero Section */
#diamond-exchange-page .diamond-hero {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #161616 50%,
    #0a0a0a 100%
  );
}

#diamond-exchange-page .hero-intro {
  font-size: 1.15rem;
  color: #e6e6e6;
  max-width: 900px;
}

/* Feature List */
#diamond-exchange-page .feature-list {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

#diamond-exchange-page .feature-list li {
  background: var(--card-bg, #1a1a1a);
  border: 1px solid var(--border-color, #2f2f2f);
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #eaeaea;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#diamond-exchange-page .feature-list li::before {
  content: "◆";
  color: var(--primary, #FFD700);
  margin-right: 10px;
}

#diamond-exchange-page .feature-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Sports & Gaming Section */
#diamond-exchange-page .diamond-sports h3 {
  border-left: 4px solid var(--primary, #FFD700);
  padding-left: 12px;
}

/* Card-Style Sections */
#diamond-exchange-page .diamond-experience,
#diamond-exchange-page .diamond-performance,
#diamond-exchange-page .diamond-security,
#diamond-exchange-page .diamond-responsible,
#diamond-exchange-page .diamond-trust {
  background: var(--card-bg, #181818);
}

/* New & Existing Users */
#diamond-exchange-page .diamond-new-users,
#diamond-exchange-page .diamond-existing-users {
  background: linear-gradient(
    135deg,
    #141414 0%,
    #1d1d1d 100%
  );
}

/* Conclusion */
#diamond-exchange-page .diamond-conclusion {
  background: linear-gradient(
    135deg,
    #0d0d0d 0%,
    #1a1a1a 100%
  );
}

#diamond-exchange-page .diamond-conclusion h2 {
  color: var(--primary, #FFD700);
}

/* Spacing Improvements */
#diamond-exchange-page section .container > *:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #diamond-exchange-page .container {
    padding: 60px 18px;
  }

  #diamond-exchange-page h1 {
    font-size: 2rem;
  }

  #diamond-exchange-page p {
    font-size: 1rem;
  }
}

/* ==========================================================================================Diamond Exchange End =================================================================================== */


/* ==========================================================================================lotus365 start =================================================================================== */
/* ================================
   Lotus365 – Modern Main Content CSS
   ================================ */

#lotus365-page {
  background: #0e0e0e;
  color: #eaeaea;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.75;
}

/* Container */
#lotus365-page .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Base */
#lotus365-page section {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#lotus365-page section:last-child {
  border-bottom: none;
}

/* Headings */
#lotus365-page h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f5c96b;
  margin-bottom: 24px;
}

#lotus365-page h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #f5c96b;
  margin-bottom: 22px;
}

#lotus365-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Paragraphs */
#lotus365-page p {
  font-size: 1.05rem;
  color: #cfcfcf;
  margin-bottom: 16px;
}

/* Hero Section */
#lotus365-page .lotus-hero {
  background: radial-gradient(circle at top, #1a1a1a, #0e0e0e);
  text-align: center;
}

#lotus365-page .lotus-hero .hero-intro {
  font-size: 1.1rem;
  color: #e6e6e6;
  max-width: 900px;
  margin: 0 auto 20px;
}

/* Why Grid */
#lotus365-page .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

#lotus365-page .why-item {
  background: linear-gradient(145deg, #151515, #1c1c1c);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

#lotus365-page .why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Feature List */
#lotus365-page .feature-list {
  list-style: none;
  margin-top: 28px;
  padding-left: 0;
}

#lotus365-page .feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #dcdcdc;
  font-size: 1rem;
}

#lotus365-page .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5c96b;
  font-weight: 700;
}

/* Content Sections */
#lotus365-page .lotus-understanding,
#lotus365-page .lotus-experience,
#lotus365-page .lotus-performance,
#lotus365-page .lotus-security,
#lotus365-page .lotus-new-users,
#lotus365-page .lotus-existing-users,
#lotus365-page .lotus-responsible,
#lotus365-page .lotus-trust {
  background: #121212;
}

/* Conclusion */
#lotus365-page .lotus-conclusion {
  background: linear-gradient(180deg, #121212, #0e0e0e);
  text-align: center;
}

#lotus365-page .lotus-conclusion p {
  max-width: 900px;
  margin: 0 auto 16px;
}

/* Responsive */
@media (max-width: 768px) {
  #lotus365-page section {
    padding: 65px 0;
  }

  #lotus365-page h1 {
    font-size: 2rem;
  }

  #lotus365-page h2 {
    font-size: 1.45rem;
  }
}

/* ==========================================================================================lotus365 End =================================================================================== */

/* ========================================================================================== online Betting Id Start  =================================================================================== */
/* ================================
   ONLINE BETTING ID – HERO SECTION
   ================================ */

.obid-hero {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
  padding: 90px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid #1f1f1f;
}

/* Soft glow background */
.obid-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
  pointer-events: none;
}

/* Container */
.obid-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Heading */
.obid-hero h1 {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

/* Main paragraph */
.obid-hero-subtext {
  font-size: 18px;
  line-height: 1.75;
  color: #e6e6e6;
  margin-bottom: 18px;
}

/* Context paragraph */
.obid-hero-context {
  font-size: 16.5px;
  line-height: 1.75;
  color: #cfcfcf;
  margin-bottom: 22px;
}

/* Highlight line */
.obid-hero-highlight {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
  color: #ffffff;
  border-left: 4px solid #ffd700;
  padding-left: 16px;
}

/* Link styling inside hero */
.obid-hero a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.obid-hero a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .obid-hero {
    padding: 70px 0 60px;
  }

  .obid-hero h1 {
    font-size: 32px;
  }

  .obid-hero-subtext {
    font-size: 16.5px;
  }

  .obid-hero-highlight {
    font-size: 16px;
  }
}
/* =========================================
   ONLINE BETTING ID – MEANING SECTION
   ========================================= */

.obid-meaning-section {
  background: linear-gradient(180deg, #121212 0%, #0f0f0f 100%);
  padding: 80px 0;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.obid-meaning-section .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.obid-meaning-section h2 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

/* Sub-headings */
.obid-meaning-section h3 {
  font-size: 22px;
  margin-top: 42px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 600;
}

/* Paragraphs */
.obid-meaning-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #d6d6d6;
  margin-bottom: 18px;
}

/* Highlight block */
.obid-meaning-highlight {
  margin-top: 34px;
  padding: 18px 22px;
  background: rgba(255, 215, 0, 0.08);
  border-left: 4px solid #ffd700;
  color: #ffffff;
  font-size: 17.5px;
  line-height: 1.75;
  font-weight: 600;
}

/* Links inside content */
.obid-meaning-section a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.obid-meaning-section a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .obid-meaning-section {
    padding: 60px 0;
  }

  .obid-meaning-section h2 {
    font-size: 28px;
  }

  .obid-meaning-section h3 {
    font-size: 20px;
  }

  .obid-meaning-section p {
    font-size: 16px;
  }

  .obid-meaning-highlight {
    font-size: 16.5px;
  }
}
/* =========================================
   OBID RISK SECTION – WARNING STYLE
   ========================================= */

.obid-risk-section {
  background-color: #0b0b0b;
  padding: 90px 0;
  position: relative;
}

/* Vertical warning rail */
.obid-risk-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #ffd700,
    rgba(255, 215, 0, 0.2),
    transparent
  );
}

.obid-risk-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Main heading */
.obid-risk-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 32px;
  letter-spacing: -0.4px;
}

/* Intro paragraphs (stronger emphasis) */
.obid-risk-section > .container > p {
  font-size: 18px;
  line-height: 1.85;
  color: #e0e0e0;
  max-width: 820px;
  margin-bottom: 22px;
}

/* Sub-sections behave like risk blocks */
.obid-risk-section h3 {
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 48px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

/* Small warning dot */
.obid-risk-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #ffd700;
  border-radius: 50%;
  transform: translateY(-50%);
}

.obid-risk-section h3 + p,
.obid-risk-section h3 + p + p {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  color: #cfcfcf;
  line-height: 1.8;
  border: 1px solid #1f1f1f;
}

/* Highlight conclusion block (different from other sections) */
.obid-risk-highlight {
  margin-top: 60px;
  padding: 26px 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(255, 215, 0, 0.05)
  );
  border-radius: 12px;
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Links */
.obid-risk-section a {
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
}

.obid-risk-section a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .obid-risk-section {
    padding: 65px 0;
  }

  .obid-risk-section h2 {
    font-size: 28px;
  }

  .obid-risk-section > .container > p {
    font-size: 16.5px;
  }

  .obid-risk-highlight {
    font-size: 16.5px;
    padding: 20px;
  }
}
/* =========================================
   OBID SECURITY SECTION – SPLIT TRUST LAYOUT
   ========================================= */

.obid-security-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #151515 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Soft diagonal texture */
.obid-security-section::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 65%);
  transform: rotate(25deg);
}

/* Wrapper */
.obid-security-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.obid-security-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 28px;
  letter-spacing: -0.4px;
}

.obid-security-content p {
  font-size: 17.5px;
  line-height: 1.85;
  color: #d6d6d6;
  margin-bottom: 18px;
  max-width: 520px;
}

/* RIGHT PILLARS */
.obid-security-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.security-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #242424;
  border-radius: 14px;
  padding: 22px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.security-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.security-pillar h3 {
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.security-pillar p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Links */
.obid-security-section a {
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
}

.obid-security-section a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .obid-security-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .obid-security-content p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .obid-security-section {
    padding: 70px 0;
  }

  .obid-security-content h2 {
    font-size: 30px;
  }

  .security-pillar {
    padding: 20px;
  }
}

/* ===============================
   OBID MARKETS SECTION
================================ */

.obid-markets-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
}

.obid-markets-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT CONTENT */

.obid-markets-intro h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #ffd700;
  margin-bottom: 24px;
  font-weight: 700;
}

.obid-markets-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #d6d6d6;
  margin-bottom: 18px;
  max-width: 520px;
}

.obid-markets-intro a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
}

.obid-markets-intro a:hover {
  border-bottom-color: #ffd700;
}

/* RIGHT ICON LIST */

.obid-markets-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.market-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 215, 0, 0.25);
  transition: border-color 0.3s ease;
}

.market-item:hover {
  border-left-color: #ffd700;
}

.market-icon {
  font-size: 26px;
  line-height: 1;
  margin-top: 4px;
}

.market-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.market-item p {
  font-size: 15px;
  color: #bcbcbc;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .obid-markets-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .obid-markets-intro p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .obid-markets-section {
    padding: 70px 0;
  }

  .obid-markets-intro h2 {
    font-size: 30px;
  }

  .market-icon {
    font-size: 22px;
  }
}
/* ===============================
   OBID VERIFICATION TIMELINE
================================ */

.obid-timeline-section {
  padding: 100px 0;
  background-color: #0c0c0c;
}

/* HEADER */

.obid-timeline-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.obid-timeline-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 18px;
}

.obid-timeline-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #cfcfcf;
}

/* TIMELINE */

.obid-timeline {
  position: relative;
  padding-left: 40px;
}

.obid-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 215, 0, 0.15),
    rgba(255, 215, 0, 0.45),
    rgba(255, 215, 0, 0.15)
  );
}

/* STEPS */

.timeline-step {
  position: relative;
  margin-bottom: 55px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2px;
  top: 6px;
  width: 18px;
  height: 18px;
  background-color: #0c0c0c;
  border: 2px solid #ffd700;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  padding-left: 35px;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #bdbdbd;
}

.timeline-content a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
}

.timeline-content a:hover {
  border-bottom-color: #ffd700;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .obid-timeline-section {
    padding: 80px 0;
  }

  .obid-timeline-header h2 {
    font-size: 32px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }
}
/* ===============================
   RESPONSIBLE BETTING SECTION
================================ */

.obid-responsibility-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #0b0b0b, #111111);
}

.obid-responsibility-wrap {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

/* TEXT SIDE */

.obid-responsibility-text {
  flex: 1;
}

.obid-responsibility-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
}

.obid-responsibility-text p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 18px;
}

.obid-responsibility-text a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
}

/* FOCUS STRIP */

.obid-responsibility-focus {
  width: 220px;
  border-left: 2px solid rgba(255, 215, 0, 0.35);
  padding-left: 30px;
}

.obid-responsibility-focus span {
  display: block;
  font-size: 15px;
  color: #ffd700;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .obid-responsibility-wrap {
    flex-direction: column;
  }

  .obid-responsibility-focus {
    width: 100%;
    border-left: none;
    border-top: 2px solid rgba(255, 215, 0, 0.35);
    padding-left: 0;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .obid-responsibility-focus span {
    margin-bottom: 0;
  }
}
/* ===============================
   FINAL CTA
================================ */

.obid-final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #141414, #0e0e0e);
  text-align: center;
}

.obid-final-cta h2 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.obid-final-cta p {
  max-width: 680px;
  margin: 0 auto 35px;
  font-size: 17px;
  line-height: 1.8;
  color: #cfcfcf;
}

.obid-cta-button {
  display: inline-block;
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  background: linear-gradient(135deg, #ffd700, #d4af37);
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.obid-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}
/* ===============================
   FAQ ACCORDION
================================ */

.obid-faq-section {
  padding: 100px 0;
  background: #0f0f0f;
}

.obid-faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.obid-faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}

.obid-faq-accordion details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.obid-faq-accordion summary {
  font-size: 17px;
  font-weight: 600;
  color: #ffd700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 25px;
}

.obid-faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.obid-faq-accordion details[open] summary::after {
  content: "–";
}

.obid-faq-accordion p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #cfcfcf;
}

/* Remove default arrow */
.obid-faq-accordion summary::-webkit-details-marker {
  display: none;
}
/* ===============================
   LEGAL & SAFETY DISCLAIMER
================================ */

.obid-legal-section {
  padding: 80px 0;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.obid-legal-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.obid-legal-section p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 16px;
}

.obid-legal-section a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
}

.obid-legal-note {
  margin-top: 30px;
  padding-left: 18px;
  border-left: 3px solid rgba(255, 215, 0, 0.6);
  color: #d6d6d6;
  font-style: italic;
}

/* ========================================================================================== online Betting Id End  =================================================================================== */

/* -------- Global Page Setup -------- */
.aboutpage-wrapper {
  background: var(--bg-main);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.9;
  overflow-x: hidden;
}

/* -------- Section Containers -------- */
.aboutus-container {
  width: min(1200px, 90%);
  margin: auto;
  padding: 80px 0;
  position: relative;
}

/* Decorative Gold Line Behind Headings */
.aboutus-container h1, 
.aboutus-container h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}
.aboutus-container h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg,var(--gold),transparent);
  border-radius: 10px;
}

/* -------------------------------------
   PREMIUM SECTION EFFECTS
-------------------------------------- */

/*** Intro Section (Hero-Like) */
.aboutus-intro-section {
  background: linear-gradient(145deg,#000,#111,#000);
  padding: 120px 0;
  text-align: center;
}
.aboutus-intro-section h1 {
  font-size: 3rem;
  text-shadow: 0 0 25px rgba(255,215,0,0.3);
  transform: translateZ(0);
}
.aboutus-intro-section p {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/*** Mission + Vision Glass Cards */
.aboutus-mission-section,
.aboutus-vision-section {
  background: linear-gradient(to bottom,#0b0b0b,#000);
}
.aboutus-mission-section .aboutus-container,
.aboutus-vision-section .aboutus-container {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid var(--gold-dark);
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: 0.4s ease;
}
.aboutus-mission-section:hover .aboutus-container,
.aboutus-vision-section:hover .aboutus-container {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(255,215,0,0.1);
}

/*** Story Highlighted Panel */
.aboutus-story-section {
  background: #0a0a0a;
}
.aboutus-story-section .aboutus-container {
  border-left: 3px solid var(--gold);
  padding-left: 45px;
  animation: fadeSlide 0.8s ease forwards;
}
@keyframes fadeSlide {
  from {opacity:0; transform: translateX(-40px);}
  to {opacity:1; transform: translateX(0);}
}

/*** Service & Trust Feature Cards */
.aboutus-service-list,
.aboutus-trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 22px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}
.aboutus-service-list li,
.aboutus-trust-list li {
  background: linear-gradient(145deg,#141414,#0b0b0b);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--text-muted);
  transition: 0.4s ease;
  cursor: default;
  backdrop-filter: blur(10px);
}
.aboutus-service-list li:hover,
.aboutus-trust-list li:hover {
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

/*** Core Values Section */
.aboutus-values-section {
  background: radial-gradient(circle at center,#111,#000);
  text-align: center;
  padding: 120px 0;
}

/*** Legal Notice */
.aboutus-legal-section {
  background: #0d0d0d;
  border-top: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  padding: 80px 0;
}

/*** CTA Button (Premium Gold) */
.aboutus-cta-box {
  text-align: center;
  background: linear-gradient(160deg,#111,#000,#111);
  padding: 80px 40px;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}
.aboutus-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 16px 45px;
  font-weight: 800;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.3s ease;
}
.aboutus-cta-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 0 22px rgba(255,215,0,0.5);
}

/* -------------------------------------
   RESPONSIVE
-------------------------------------- */
@media(max-width:768px){
  .aboutus-intro-section h1 {font-size: 2.2rem;}
  .aboutus-container {padding: 50px 25px;}
  .aboutus-story-section .aboutus-container {
    padding-left: 20px;
    border-left: none;
    border-top: 3px solid var(--gold);
  }
}

/* ========================================================================================== Blog start  =================================================================================== */
/* ROOT COLORS */

/* PAGE HEADER */
.blog-list-header {
  text-align: center;
  padding: 50px 20px;
  background: var(--black);
  color: var(--primary);
}
.blog-list-header h1 {
  font-size: 42px;
  font-weight: 700;
}
.blog-list-header p {
  color: var(--text-light);
  font-size: 18px;
  margin-top: 8px;
}

/* BLOG GRID */
.blog-list-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  background: var(--black);
  padding: 40px;
}

/* BLOG CARD */
.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0px 10px 30px rgba(255,215,0,0.25);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 15px;
}
.blog-card h2 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 10px;
}
.blog-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 15px;
}
.blog-btn {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.blog-btn:hover {
  background: #e6be00;
}

/* PAGINATION */
.pagination {
  background: var(--black);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
}
.page-btn,
.number-btn {
  cursor: pointer;
  border: 1px solid var(--primary);
  padding: 10px 16px;
  border-radius: 8px;
  background: transparent;
  color: var(--primary);
}
.number-btn.active,
.page-btn:hover {
  background: var(--primary);
  color: #000;
  font-weight: bold;
}

/* ========================================================================================== Blog End  =================================================================================== */
/* ================================
   SPLASH SCREEN SECTION
================================ */
.splash-screen {
  width: 100%;
  background: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
  padding: 120px 20px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.splash-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 50px;
  border-radius: 25px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.10);
  animation: fadeInUp 0.8s ease;
}

.splash-logo {
  width: 140px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.splash-title {
  font-size: 38px;
  color: #FFD700;
  font-weight: 700;
  margin: 10px 0 5px;
}

.splash-subtext {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 8px;
}

.splash-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Buttons */
.splash-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #111;
  border: 1px solid #FFD700;
  border-radius: 10px;
  color: #FFD700;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.splash-btn:hover {
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px #FFD700;
  transform: translateY(-3px);
}

/* Entrance Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .splash-card {
    padding: 35px;
  }
  .splash-title {
    font-size: 28px;
  }
  .splash-btn {
    width: 100%;
    text-align: center;
  }
}

