* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0a1929;
  --primary-dark: #071422;
  --secondary-color: #132f4c;
  --accent-color: #3b82f6;
  --success-color: #51cf66;
  --warning-color: #ffd43b;
  --error-color: #ff6b6b;
  --bg-color: #0a1929;
  --text-color: #e3f2fd;
  --text-light: #90caf9;
  --border-color: rgba(59, 130, 246, 0.15);
  --white: #ffffff;
  --glass-bg: rgba(19, 47, 76, 0.95);
  --glass-border: rgba(59, 130, 246, 0.15);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.5);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(180deg, #0a1e35 0%, #1a3a5c 50%, #0a1e35 100%);
  min-height: 100vh;
  background-attachment: fixed;
}

a {
  color: var(--text-light);
  text-decoration: none;
}

/* Header Styles */
.header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo h1 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.2px;
  margin: 0;
}

.header-nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.header-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
}

/* Main Content */
.main-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #0a1e35 0%, #1a3a5c 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--text-color);
  margin-top: 60px;
  padding: 50px 40px 30px;
  box-shadow: 0 -2px 8px rgba(59, 130, 246, 0.08);
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  overflow: visible;
}
.site-footer.scrolled {
  background: linear-gradient(
    180deg,
    rgba(10, 30, 53, 0.7) 0%,
    rgba(26, 58, 92, 0.7) 100%
  );
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.75) 30%,
    rgba(59, 130, 246, 1) 50%,
    rgba(59, 130, 246, 0.75) 70%,
    transparent
  );
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  transition: all 0.3s ease;
}
.site-footer.scrolled::before {
  height: 0.5px;
  opacity: 0.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col {
}
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #e3f2fd;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.7),
    rgba(59, 130, 246, 0.3),
    transparent
  );
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  border-radius: 2px;
}
.footer-text {
  font-size: 14px;
  color: #90caf9;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 280px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #90caf9;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #e3f2fd;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copyright {
  font-size: 14px;
  color: #90caf9;
  opacity: 0.8;
}
.footer-social {
  display: flex;
  gap: 20px;
}
.social-link {
  color: #90caf9;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.social-link:hover {
  color: #e3f2fd;
}

/* Footer Social Icons */
.footer-payment {
  margin-top: 20px;
}
.footer-payment .payment-label {
  display: block;
  color: rgba(144, 202, 249, 0.7);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-payment .payment-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.payment-icon {
  width: 36px;
  height: auto;
  color: rgba(144, 202, 249, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}
.payment-icon:hover {
  color: rgba(144, 202, 249, 0.9);
  transform: translateY(-2px);
}

/* Footer Payments */
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.payment-label {
  font-size: 13px;
  color: #90caf9;
  font-weight: 500;
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-icon {
  height: 24px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(20%);
  transition: opacity 0.3s ease;
}
.payment-icon:hover {
  opacity: 1;
}
.payment-icon-svg {
  height: 20px;
  width: 50px;
  opacity: 0.8;
}

/* Footer Bottom Links */
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: #90caf9;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: #e3f2fd;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 32px;
  height: 32px;
}
.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #e3f2fd;
  letter-spacing: -0.5px;
}

/* Buttons */
.btn-submit,
.btn-next,
.btn-back,
.btn-process,
.btn-home,
.btn-print {
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 0.85rem;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  letter-spacing: 0.3px;
}

.btn-submit,
.btn-next,
.btn-process,
.btn-home {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: var(--white);
  border: none;
}

.btn-back,
.btn-print {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(21, 28, 38, 0.6);
  color: var(--text-color);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Glass Overlay */
.glass-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(224, 231, 255, 0.1) 0%,
    rgba(209, 215, 220, 0.1) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-light {
  color: var(--text-light);
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

/* Responsive Footer - Keep same layout on mobile as desktop */
@media (max-width: 968px) {
  body.site-body {
    padding-top: 60px;
  }

  .site-footer {
    margin-top: 40px;
    padding: 30px 15px 20px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 30, 53, 0.1) transparent;
  }
  .site-footer::-webkit-scrollbar {
    height: 6px;
    background: transparent;
  }
  .site-footer::-webkit-scrollbar-track {
    background: transparent;
  }
  .site-footer::-webkit-scrollbar-thumb {
    background: rgba(10, 30, 53, 0.15);
    border-radius: 10px;
  }
  .site-footer::-webkit-scrollbar-thumb:hover {
    background: rgba(10, 30, 53, 0.25);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    min-width: 550px;
  }

  .footer-heading {
    font-size: 13px;
  }

  .footer-text {
    font-size: 11px;
    max-width: 180px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-bottom {
    min-width: 550px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .social-link {
    font-size: 11px;
  }

  .footer-social-icons {
    gap: 8px;
    margin-top: 12px;
  }
  .social-icon-link {
    width: 28px;
    height: 28px;
  }
  .social-icon-link svg {
    width: 14px;
    height: 14px;
  }
  .footer-payments {
    padding: 15px 0;
    gap: 10px;
    min-width: 550px;
  }
  .payment-label {
    font-size: 10px;
  }
  .payment-icon {
    height: 16px;
  }
  .footer-bottom-links {
    gap: 12px;
  }
  .footer-bottom-links a {
    font-size: 11px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-logo img {
    width: 24px;
    height: 24px;
  }
  .footer-logo-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 25px 10px 15px;
  }

  .footer-grid {
    gap: 12px;
    min-width: 500px;
  }

  .footer-heading {
    font-size: 12px;
    padding-bottom: 8px;
  }

  .footer-text {
    font-size: 10px;
    max-width: 150px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-bottom {
    padding-top: 20px;
    min-width: 500px;
  }

  .footer-copyright {
    font-size: 10px;
  }

  .social-link {
    font-size: 10px;
  }

  .footer-social-icons {
    gap: 6px;
    margin-top: 10px;
  }
  .social-icon-link {
    width: 26px;
    height: 26px;
  }
  .social-icon-link svg {
    width: 12px;
    height: 12px;
  }
  .footer-payments {
    padding: 12px 0;
    gap: 8px;
    min-width: 500px;
  }
  .payment-label {
    font-size: 9px;
  }
  .payment-icon {
    height: 14px;
  }
  .footer-bottom-links {
    gap: 10px;
  }
  .footer-bottom-links a {
    font-size: 10px;
  }
  .footer-logo-text {
    font-size: 14px;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, #0a1e35 0%, #1a3a5c 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--text-color);
  margin-top: 60px;
  padding: 50px 40px 30px;
  box-shadow: 0 -2px 8px rgba(59, 130, 246, 0.08);
  position: relative;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin: auto;
}

/* Footer Text */
.footer-text {
  font-size: 14px;
  color: #90caf9;
  line-height: 1.7;
  max-width: 280px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #90caf9;
  font-size: 14px;
}
.footer-links a:hover {
  color: #e3f2fd;
}

/* ===== FOOTER ICONS (SMALL + SAME SIZE) ===== */
.footer-payment {
  margin-top: 20px;
}

.footer-payment .payment-icons,
.footer-social,
.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* WE ACCEPT ICONS – EXTRA BIG, CLOSE & CLEAR */
.payment-icons {
  display: flex;
  gap: 8px; /* কাছাকাছি */
  align-items: center;
  flex-wrap: wrap;
}

.payment-icon,
.payment-icon-svg {
  width: 56px; /* আরও বড় */
  height: 56px;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  border-radius: 10px;
  opacity: 1;
  filter: grayscale(0%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.payment-icon:hover,
.payment-icon-svg:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.35);
}

/* ===== FOOTER PAYMENTS CENTER ===== */
.footer-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 25px 0;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  max-width: 1400px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}

/* ===== FOOTER BOTTOM (FULL CENTER) ===== */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  max-width: 1400px;
  margin: auto;
  flex-direction: column;
  gap: 10px;
}

/* COPYRIGHT CENTER */
.footer-copyright {
  font-size: 14px;
  color: #90caf9;
  opacity: 0.9;
}

/* Footer Bottom Links */
.footer-bottom-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #90caf9;
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: #e3f2fd;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #e3f2fd;
}
/* REMOVE WE ACCEPT TEXT & ICONS */
.footer-payment,
.footer-payments,
.payment-label,
.payment-icons,
.payment-icon,
.payment-icon-svg {
  display: none !important;
}

/* REMOVE HERO EXTRA BACKGROUND / OVERLAY */
.hero-section::after,
.hero-section::before {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
}

*{margin:0;padding:0;box-sizing:border-box;}

:root {
    --primary-color: #0a1929;
    --primary-dark: #071422;
    --secondary-color: #132f4c;
    --accent-color: #3b82f6;
    --success-color: #51cf66;
    --warning-color: #ffd43b;
    --error-color: #ff6b6b;
    --bg-color: #0a1929;
    --text-color: #e3f2fd;
    --text-light: #90caf9;
    --border-color: rgba(59,130,246,0.15);
    --white: #ffffff;
    --glass-bg: rgba(19, 47, 76, 0.95);
    --glass-border: rgba(59, 130, 246, 0.15);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.5);
}

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, #0a1e35 0%, #1a3a5c 50%, #0a1e35 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

a {
    color: var(--text-light);
    text-decoration: none;
}

/* Header Styles */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo h1 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.2px;
    margin: 0;
}

.header-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.header-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Footer Styles */
.site-footer{ background:linear-gradient(180deg, #0a1e35 0%, #1a3a5c 100%); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border-top:1px solid rgba(59,130,246,0.2); color:var(--text-color); margin-top:60px; padding:50px 40px 30px; box-shadow:0 -2px 8px rgba(59,130,246,0.08); position:relative; transition:all 0.3s ease; width:100%; overflow:visible; }
.site-footer.scrolled{ background:linear-gradient(180deg, rgba(10,30,53,0.7) 0%, rgba(26,58,92,0.7) 100%); border-top:1px solid rgba(59,130,246,0.15); }
.site-footer::before{ content:''; position:absolute; top:-1px; left:10%; right:10%; height:1px; background:linear-gradient(90deg, transparent, rgba(59,130,246,0.75) 30%, rgba(59,130,246,1) 50%, rgba(59,130,246,0.75) 70%, transparent); box-shadow:0 0 20px rgba(59,130,246,0.5); transition:all 0.3s ease; }
.site-footer.scrolled::before{ height:0.5px; opacity:0.7; }
.footer-grid{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; max-width:1400px; margin-left:auto; margin-right:auto; }
.footer-col{ }
.footer-heading{ font-size:16px; font-weight:700; color:#e3f2fd; margin-bottom:18px; letter-spacing:0.5px; position:relative; display:inline-block; padding-bottom:10px; }
.footer-heading::after{ content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(90deg, rgba(59,130,246,0.7), rgba(59,130,246,0.3), transparent); box-shadow:0 0 12px rgba(59,130,246,0.5); border-radius:2px; }
.footer-text{ font-size:14px; color:#90caf9; line-height:1.7; opacity:0.9; max-width:280px; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom:12px; }
.footer-links a{ color:#90caf9; font-size:14px; font-weight:400; transition:color 0.2s ease; }
.footer-links a:hover{ color:#e3f2fd; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:30px; border-top:1px solid rgba(59,130,246,0.08); max-width:1400px; margin-left:auto; margin-right:auto; }
.footer-copyright{ font-size:14px; color:#90caf9; opacity:0.8; }
.footer-social{ display:flex; gap:20px; }
.social-link{ color:#90caf9; font-size:14px; font-weight:500; transition:color 0.2s ease; }
.social-link:hover{ color:#e3f2fd; }

/* Footer Social Icons */
.footer-payment{margin-top:20px;}
.footer-payment .payment-label{display:block;color:rgba(144,202,249,0.7);font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:12px;}
.footer-payment .payment-icons{display:flex;gap:6px;flex-wrap:wrap;align-items:center;justify-content:flex-start;}
.payment-icon{width:36px;height:auto;color:rgba(144,202,249,0.6);transition:all 0.3s ease;cursor:pointer;}
.payment-icon:hover{color:rgba(144,202,249,0.9);transform:translateY(-2px);}

/* Footer Payments */
.footer-payments{ display:flex; align-items:center; justify-content:center; gap:20px; padding:30px 0; margin-bottom:20px; border-top:1px solid rgba(59,130,246,0.1); border-bottom:1px solid rgba(59,130,246,0.1); max-width:1400px; margin-left:auto; margin-right:auto; flex-wrap:wrap; }
.payment-label{ font-size:13px; color:#90caf9; font-weight:500; }
.payment-icons{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:center; }
.payment-icon{ height:24px; width:auto; opacity:0.8; filter:grayscale(20%); transition:opacity 0.3s ease; }
.payment-icon:hover{ opacity:1; }
.payment-icon-svg{ height:20px; width:50px; opacity:0.8; }

/* Footer Bottom Links */
.footer-bottom-links{ display:flex; gap:24px; }
.footer-bottom-links a{ color:#90caf9; font-size:13px; transition:color 0.2s ease; }
.footer-bottom-links a:hover{ color:#e3f2fd; }

/* Footer Logo */
.footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo img{ width:32px; height:32px; }
.footer-logo-text{ font-size:20px; font-weight:700; color:#e3f2fd; letter-spacing:-0.5px; }

/* Buttons */
.btn-submit, .btn-next, .btn-back, .btn-process, .btn-home, .btn-print {
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 0.85rem;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    letter-spacing: 0.3px;
}

.btn-submit, .btn-next, .btn-process, .btn-home {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    border: none;
}

.btn-back, .btn-print {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.85rem;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(21, 28, 38, 0.6);
    color: var(--text-color);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Glass Overlay */
.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.1) 0%, rgba(209, 215, 220, 0.1) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: -1;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Responsive Footer - Keep same layout on mobile as desktop */
@media (max-width: 968px) {
    body.site-body {
        padding-top: 60px;
    }
    
    .site-footer {
        margin-top: 40px;
        padding: 30px 15px 20px;
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: thin;
        scrollbar-color: rgba(10, 30, 53, 0.1) transparent;
    }
    .site-footer::-webkit-scrollbar {
        height: 6px;
        background: transparent;
    }
    .site-footer::-webkit-scrollbar-track {
        background: transparent;
    }
    .site-footer::-webkit-scrollbar-thumb {
        background: rgba(10, 30, 53, 0.15);
        border-radius: 10px;
    }
    .site-footer::-webkit-scrollbar-thumb:hover {
        background: rgba(10, 30, 53, 0.25);
    }
    
    .footer-grid { 
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 15px;
        min-width: 550px;
    }
    
    .footer-heading{
        font-size: 13px;
    }
    
    .footer-text{
        font-size: 11px;
        max-width: 180px;
    }
    
    .footer-links a{
        font-size: 11px;
    }
    
    .footer-bottom { 
        min-width: 550px;
    }
    
    .footer-copyright{
        font-size: 11px;
    }
    
    .social-link{
        font-size: 11px;
    }
    
    .footer-social-icons{
        gap: 8px;
        margin-top: 12px;
    }
    .social-icon-link{
        width: 28px;
        height: 28px;
    }
    .social-icon-link svg{
        width: 14px;
        height: 14px;
    }
    .footer-payments{
        padding: 15px 0;
        gap: 10px;
        min-width: 550px;
    }
    .payment-label{
        font-size: 10px;
    }
    .payment-icon{
        height: 16px;
    }
    .footer-bottom-links{
        gap: 12px;
    }
    .footer-bottom-links a{
        font-size: 11px;
    }
    .footer-logo{
        margin-bottom: 10px;
    }
    .footer-logo img{
        width: 24px;
        height: 24px;
    }
    .footer-logo-text{
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 10px 15px;
    }
    
    .footer-grid { 
        gap: 12px;
        min-width: 500px;
    }
    
    .footer-heading{
        font-size: 12px;
        padding-bottom: 8px;
    }
    
    .footer-text{
        font-size: 10px;
        max-width: 150px;
    }
    
    .footer-links a{
        font-size: 10px;
    }
    
    .footer-links li{
        margin-bottom: 8px;
    }
    
    .footer-bottom { 
        padding-top: 20px;
        min-width: 500px;
    }
    
    .footer-copyright{
        font-size: 10px;
    }
    
    .social-link{
        font-size: 10px;
    }
    
    .footer-social-icons{
        gap: 6px;
        margin-top: 10px;
    }
    .social-icon-link{
        width: 26px;
        height: 26px;
    }
    .social-icon-link svg{
        width: 12px;
        height: 12px;
    }
    .footer-payments{
        padding: 12px 0;
        gap: 8px;
        min-width: 500px;
    }
    .payment-label{
        font-size: 9px;
    }
    .payment-icon{
        height: 14px;
    }
    .footer-bottom-links{
        gap: 10px;
    }
    .footer-bottom-links a{
        font-size: 10px;
    }
    .footer-logo-text{
        font-size: 14px;
    }
}













/* Footer Styles */
.site-footer{
  background:linear-gradient(180deg, #0a1e35 0%, #1a3a5c 100%);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-top:1px solid rgba(59,130,246,0.2);
  color:var(--text-color);
  margin-top:60px;
  padding:50px 40px 30px;
  box-shadow:0 -2px 8px rgba(59,130,246,0.08);
  position:relative;
  width:100%;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:40px;
  max-width:1400px;
  margin:auto;
}

/* Footer Text */
.footer-text{
  font-size:14px;
  color:#90caf9;
  line-height:1.7;
  max-width:280px;
}

/* Footer Links */
.footer-links{list-style:none;padding:0;margin:0;}
.footer-links li{margin-bottom:10px;}
.footer-links a{
  color:#90caf9;
  font-size:14px;
}
.footer-links a:hover{color:#e3f2fd;}

/* ===== FOOTER ICONS (SMALL + SAME SIZE) ===== */
.footer-payment{
  margin-top:20px;
}

.footer-payment .payment-icons,
.footer-social,
.payment-icons{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* WE ACCEPT ICONS – EXTRA BIG, CLOSE & CLEAR */
.payment-icons{
  display:flex;
  gap:8px;              /* কাছাকাছি */
  align-items:center;
  flex-wrap:wrap;
}

.payment-icon,
.payment-icon-svg{
  width:56px;           /* আরও বড় */
  height:56px;
  background:rgba(255,255,255,0.04);
  padding:8px;
  border-radius:10px;
  opacity:1;
  filter:grayscale(0%);
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
  transition:all 0.3s ease;
}

.payment-icon:hover,
.payment-icon-svg:hover{
  transform:translateY(-3px) scale(1.07);
  box-shadow:0 8px 18px rgba(59,130,246,0.35);
}


/* ===== FOOTER PAYMENTS CENTER ===== */
.footer-payments{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding:25px 0;
  border-top:1px solid rgba(59,130,246,0.1);
  border-bottom:1px solid rgba(59,130,246,0.1);
  max-width:1400px;
  margin:0 auto 20px;
  flex-wrap:wrap;
}

/* ===== FOOTER BOTTOM (FULL CENTER) ===== */
.footer-bottom{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding-top:30px;
  border-top:1px solid rgba(59,130,246,0.08);
  max-width:1400px;
  margin:auto;
  flex-direction:column;
  gap:10px;
}

/* COPYRIGHT CENTER */
.footer-copyright{
  font-size:14px;
  color:#90caf9;
  opacity:0.9;
}

/* Footer Bottom Links */
.footer-bottom-links{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}

.footer-bottom-links a{
  color:#90caf9;
  font-size:13px;
}

.footer-bottom-links a:hover{
  color:#e3f2fd;
}

/* Footer Logo */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}

.footer-logo img{
  width:32px;
  height:32px;
}

.footer-logo-text{
  font-size:20px;
  font-weight:700;
  color:#e3f2fd;
}
/* REMOVE WE ACCEPT TEXT & ICONS */
.footer-payment,
.footer-payments,
.payment-label,
.payment-icons,
.payment-icon,
.payment-icon-svg{
  display: none !important;
}


/* REMOVE HERO EXTRA BACKGROUND / OVERLAY */
.hero-section::after,
.hero-section::before {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
}


