/* General Styles */
body {
  padding-top: 80px;
  background-color: #000 !important;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.hw-50 { height: 50px; }
.skewX-m13 { transform: skewX(-13deg); }
.skewX-13 { transform: skewX(13deg); }
.btn-fs-20 { font-size: 20px; }
.btn-padding { padding: 10px 20px; }
.rounded-10 { border-radius: 10px; }
.fs-montroc { font-weight: bold; }
.object-fit-contain { object-fit: contain; }
.pb-130 { padding-bottom: 130px; }

/* Header/Nav */
.nav-link-custom {
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.nav-link-custom:hover {
  color: #145ea0;
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 10px;
}
.btn-yellow {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
}
.btn-yellow:hover {
  background-color: #e0a800;
  color: #000;
}
.offcanvas-title {
  color: #ffc107;
}
.offcanvas-body a.btn {
  background-color: #ffc107;
  color: #000;
}
.offcanvas-body a.btn:hover {
  background-color: #e0a800;
}

/* === SECTION-SPECIFIC STYLES === */

/* Banner Section */
.banner-sec {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #145ea0;
  color: #fff;
  text-align: center;
}

/* Withdrawal Section */
.withdrawal-sec {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 50px;
  background-color: #000; /* optional background */
}
.withdrawal-sec .sec-title h2 {
  color: #fff;
}
.withdrawal-sec .threeline.purple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    45deg,
    #6f42c1,
    #6f42c1 10px,
    #ffffff 10px,
    #ffffff 20px
  );
}

/* Download Section */
.download-sec {
  background: linear-gradient(135deg, #ffdd00 0%, #ffb700 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}
.download-sec .threeline.down {
  height: 5px;
  background: repeating-linear-gradient(
    45deg,
    #6f42c1,
    #6f42c1 10px,
    #ffffff 10px,
    #ffffff 20px
  );
}
.download-sec .download-box {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #ffc107;
  transition: transform 0.3s ease;
}
.download-sec .download-box:hover {
  transform: scale(1.02);
}
.download-sec .download-btn {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.download-sec .download-btn:hover {
  background-color: #e0a800;
}
.logo-icon,
.arrow-icon {
  width: 30px;
  height: auto;
}

/*Notice board section css*/

/* Notice Board Section */
.notice-section {
    border-radius: 18px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 35px 45px;
    box-shadow: 0 8px 25px rgba(6, 30, 65, 0.7);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    color: #e0e7ff;
    background: linear-gradient(135deg, #fff9e6, #061e41);
}

/* Ribbon Label on top-left */
.notice-section::before {
  content: "NOTICE";
  position: absolute;
  top: -18px;
  left: -18px;
  background: #0f4c81; /* lighter blue */
  color: #e0e7ff;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 0 0 15px 0;
  font-size: 1.1rem;
  letter-spacing: 2.5px;
  box-shadow: 2px 3px 10px rgba(15, 76, 129, 0.8);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Section Title */
.sec-main-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #c4d7ff; /* pale blue */
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Notice list */
.notice-content {
  list-style: none;
  padding-left: 0;
  max-width: 500px;
  margin: 0 auto;
}

.notice-content li {
  background: #0f4c81; /* medium blue block */
  border-left: 6px solid #4f7dcf; /* brighter blue accent */
  padding: 16px 25px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #e0e7ff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(15, 76, 129, 0.6);
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: default;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.notice-content li:hover {
  background: #4f7dcf; /* lighter blue on hover */
  color: #061e41;
  border-left-color: #dbe6ff;
  box-shadow: 0 3px 15px rgba(79, 125, 207, 0.9);
}

/* Responsive for small screens */
@media (max-width: 480px) {
  .notice-section {
    padding: 25px 20px;
  }
  .sec-main-title {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
  .notice-content li {
    font-size: 1rem;
    padding: 12px 18px;
    margin-bottom: 12px;
  }
}

/*Notice board section css*/

/*game rate section css*/

/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Styling */
.game-section {
  background: #061e41; /* Your dark navy color */
  padding: 60px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

/* Container */
.container {
  /*max-width: 900px;*/
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
  color: #f5c518; /* golden accent */
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

/* Game List */
.game-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Individual Game Item */
.game-item {
  background: linear-gradient(135deg, #0b2a66, #021731);
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(21, 33, 68, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
}

/* Hover Effect */
.game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.9);
  border-color: #f5c518;
}

/* Game Name */
.game-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f5c518;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Game Info Container */
.game-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.3rem;
  color: #ffffffdd;
  text-shadow: 0 0 6px rgba(245, 197, 24, 0.8);
}

/* Count */
.game-count {
  background: #f5c518;
  color: #061e41;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
  box-shadow: 0 0 10px #f5c518aa;
  user-select: none;
}

/* Unit */
.game-unit {
  font-style: italic;
  font-weight: 700;
  color: #f5c518;
  text-shadow: 0 0 8px #f5c518bb;
  user-select: none;
}

/* Price */
.game-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 1px 1px 8px #f5c518cc;
  user-select: none;
}


/*game rate section css*/

/*live matka result*/

.livematka-section {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  background: linear-gradient(135deg, #071936 0%, #225689 100%);
  padding: 3rem 0;
}

.livematka-section h2 {
  color: #F2F6F6;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.livematka-section .title-bar {
  width: 60px;
  height: 4px;
  background: #91AFCB;
  margin: 10px auto;
  border-radius: 2px;
}

.matka-card {
  background-color: #F2F6F6;
  border-left: 6px solid #225689; /* You can dynamically switch border color */
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
}

.matka-card h4 {
  color: #071936;
  font-weight: 700;
  margin-bottom: 1rem;
}

.matka-card p {
  font-weight: 600;
  color: #759EC3;
  background: #e9f0f7;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  display: inline-block;
  letter-spacing: 1px;
}

.matka-card .timings {
  color: #225689;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.matka-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.matka-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(34, 86, 137, 0.4);
  background-color: #dce9f9; /* lighter blue shade */
  border-left-color: #1a3d7c; /* slightly darker blue for border */
}

/*live matka result*/



  /*<!-- Top Mobile Games Section -->*/

  /* Updated colors per your palette */

.topmobile-section {
  background: linear-gradient(135deg, #1e436d, #2596be); /* Biscay to Your Blue */
  padding: 60px 0 90px;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.threeline.yellow {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e9f1f5; /* Catskill White */
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(233, 241, 245, 0.7);
  z-index: 1;
}

.sec-main-title {
  font-size: 2.8rem;
  color: #e9f1f5; /* Catskill White */
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 0 2px 6px rgba(30, 67, 109, 0.5); /* Biscay shadow */
  position: relative;
  z-index: 2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#topmobileslider.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
  pointer-events: none;
  z-index: 10;
}

#topmobileslider.owl-theme .owl-nav button {
  pointer-events: auto;
  background: #91afcb; /* Polo Blue */
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 18px;
  color: #1e436d; /* Biscay */
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(30, 67, 109, 0.3);
  width: 25px;
}

#topmobileslider.owl-theme .owl-nav button:hover {
  background: #2596be; /* Your main blue */
  color: #f2f6f6; /* Polo Blue very light */
  box-shadow: 0 6px 14px rgba(37, 150, 190, 0.7);
}

.item-card {
  background: #f2f6f6; /* Polo Blue very light */
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(37, 150, 190, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

.item-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.item-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 16px 30px rgba(37, 150, 190, 0.6);
}

.item-card:hover img {
  transform: scale(1.1) rotate(3deg);
}

@media (max-width: 768px) {
  .item-card {
    height: 160px;
    padding: 15px;
  }
  .sec-main-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .item-card {
    height: 140px;
    padding: 10px;
  }
}


  /*<!-- Top Mobile Games Section -->*/


  /*<!-- WHY Janta Matka APP Section -->*/

  /* Reset for this section */
#whyks {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 80px 0;
  background: radial-gradient(circle at top left, #2596be 0%, #071936 90%);
  color: #f2f6f6;
  position: relative;
  overflow: hidden;
}

/* Cool abstract shape in background */
#whyks::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, #8eafcd, #1e436d);
  filter: blur(120px);
  border-radius: 50%;
  top: -180px;
  right: -200px;
  opacity: 0.4;
  z-index: 0;
}

#whyks::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #7ba1c6 0%, #2596be 100%);
  filter: blur(100px);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  opacity: 0.35;
  z-index: 0;
}

/* Section title style */
#whyks .sec-main-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  color: #e9f1f5;
  text-shadow: 0 4px 10px rgba(37, 150, 190, 0.7);
  user-select: none;
}

/* Underline animation for title */
#whyks .sec-main-title::after {
  content: "";
  display: block;
  margin: 20px auto 0;
  width: 100px;
  height: 6px;
  background: #1e436d;
  border-radius: 50px;
  box-shadow:
    0 0 15px 5px #1e436d,
    0 0 30px 10px #2596be;
  animation: pulseGlow 2.5s ease-in-out infinite alternate;
  user-select: none;
}

@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 10px 3px #1e436d,
      0 0 20px 8px #2596be;
  }
  100% {
    box-shadow:
      0 0 25px 10px #1e436d,
      0 0 45px 18px #2596be;
  }
}

/* Cards container flex grid */
#whyks .why-content {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Each card unique style */
#whyks .why-card {
  background: linear-gradient(135deg, #759ec3, #1e436d);
  border-radius: 30px;
  box-shadow:
    inset 0 0 30px #071936,
    0 15px 30px rgba(37, 150, 190, 0.4);
  padding: 50px 40px 60px;
  width: 280px;
  text-align: center;
  color: #e9f1f5;
  cursor: default;
  transition:
    transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    box-shadow 0.5s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

/* Card hover glow + lift effect */
#whyks .why-card:hover {
  transform: translateY(-25px) scale(1.07);
  box-shadow:
    inset 0 0 40px #2596be,
    0 25px 45px rgba(37, 150, 190, 0.8);
  z-index: 5;
}

/* Icon styling with shadow and scale on hover */
#whyks .why-card img {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 15px #2596be);
  transition: filter 0.3s ease, transform 0.3s ease;
  user-select: none;
}

#whyks .why-card:hover img {
  filter: drop-shadow(0 0 25px #7ba1c6);
  transform: scale(1.15);
}

/* Numbers big and bold */
#whyks .why-card h3 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #f2f6f6;
  text-shadow: 0 3px 12px #071936;
}

/* Subtitle text */
#whyks .why-card p {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: #d4e0e9;
  user-select: none;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  #whyks .why-card {
    width: 240px;
    padding: 40px 30px 50px;
  }
  #whyks .why-card h3 {
    font-size: 3rem;
  }
  #whyks .why-card p {
    font-size: 1.3rem;
  }
  #whyks .sec-main-title {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  #whyks .why-content {
    gap: 2rem;
  }
  #whyks .why-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 35px 25px 45px;
  }
  #whyks .why-card h3 {
    font-size: 2.5rem;
  }
  #whyks .why-card p {
    font-size: 1.1rem;
  }
  #whyks .sec-main-title {
    font-size: 1.8rem;
  }
}


  /*<!-- WHY Janta Matka APP Section -->*/

/*HOW TO INSTALL*/

/* Base and reset */
#howto {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #1c1c3c 0%, #111139 100%);
  font-family: 'Poppins', sans-serif;
  color: #eee;
  overflow: hidden;
}

/* Abstract animated background glow */
#howto::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, #ff5f7e, transparent 70%);
  filter: blur(160px);
  top: 50px;
  left: -150px;
  opacity: 0.25;
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

#howto::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, #42e9f5, transparent 70%);
  filter: blur(140px);
  bottom: 80px;
  right: -120px;
  opacity: 0.3;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.25;
    transform: scale(1);
  }
}

/* Section Title */
#howto .sec-main-title {
  font-weight: 900;
  font-size: 3.8rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 70px;
  z-index: 1;
  color: #fff;
  text-shadow:
    0 0 15px #ff5f7e,
    0 0 30px #ff5f7e,
    0 0 40px #42e9f5,
    0 0 70px #42e9f5;
  user-select: none;
}

/* Container flex for steps */
#howto .howto-content .row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

/* Each step card style */
#howto .step-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  padding: 40px 30px 50px;
  width: 300px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 8px 32px 0 rgba(66, 233, 245, 0.2),
    inset 0 0 2px 1px rgba(255, 95, 126, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: default;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d0e9f9;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Step card floating animation */
#howto .step-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow:
    0 15px 40px 0 rgba(66, 233, 245, 0.6),
    inset 0 0 15px 2px rgba(255, 95, 126, 0.6);
  z-index: 10;
}

/* Step images with neon glow */
#howto .step-card img {
  width: 130px;
  height: 260px;
  object-fit: contain;
  margin-bottom: 30px;
  filter:
    drop-shadow(0 0 12px #ff5f7e)
    drop-shadow(0 0 18px #42e9f5);
  transition: filter 0.4s ease, transform 0.4s ease;
  user-select: none;
}

#howto .step-card:hover img {
  filter:
    drop-shadow(0 0 25px #ff5f7e)
    drop-shadow(0 0 30px #42e9f5);
  transform: scale(1.12);
}

/* Step description text */
#howto .step-card p {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  color: #a0d8f7;
  text-transform: capitalize;
  user-select: none;
  margin: 0;
  max-width: 270px;
}

/* Responsive design */
@media (max-width: 992px) {
  #howto .howto-content .row {
    gap: 2rem;
  }
  #howto .step-card {
    width: 260px;
    padding: 35px 25px 40px;
  }
  #howto .step-card img {
    height: 220px;
  }
  #howto .sec-main-title {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  #howto .howto-content .row {
    flex-direction: column;
    align-items: center;
  }
  #howto .step-card {
    width: 90vw;
    max-width: 320px;
  }
  #howto .step-card img {
    height: 200px;
  }
  #howto .sec-main-title {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }
}


/*HOW TO INSTALL*/

/*<!-- About -->*/
.about-section {
  background: #0a0a0a;
  color: #e0e0e0;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Text Box */
.about-text {
  flex: 1 1 450px;
  max-width: 600px;
}

.sec-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ff416c, #1fa2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow:
    0 0 6px rgba(255, 65, 108, 0.8),
    0 0 8px rgba(31, 162, 255, 0.8);
  user-select: none;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #cfd8ff;
  user-select: text;
}

/* Right Image Box */
.about-image {
  flex: 1 1 400px;
  max-width: 450px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(255, 65, 108, 0.5),
    0 0 30px rgba(31, 162, 255, 0.5);
  transition: transform 0.3s ease;
}

.about-image img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.2);
  transition: filter 0.3s ease;
  border-radius: 25px;
}

/* Hover effect */
.about-image:hover {
  transform: scale(1.05);
}

.about-image:hover img {
  filter: brightness(1) saturate(1.4);
}

/* Responsive */
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
  }
  .about-text, .about-image {
    max-width: 100%;
    flex: none;
  }
  .sec-main-title {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }
}


/*<!-- About -->*/

/*FAQ*/

/* FAQ Section Main Container */
#faq {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    border-radius: 0;
    width: 100% !important;
}

.accordion-item {
    width: 80%;
    margin: 0 auto; /* Ye line add karen for horizontal center */

}

h2.faq-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 700;
}


/* Decorative blobs behind */
#faq::before,
#faq::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
  z-index: 0;
}

#faq::before {
  width: 300px;
  height: 300px;
  background: #ff0057;
  top: -100px;
  left: -100px;
}

#faq::after {
  width: 250px;
  height: 250px;
  background: #00ffe7;
  bottom: -100px;
  right: -80px;
}

/* Section Title */
#faq .sec-main-title {
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff0057, #00ffe7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accordion container */
.accordion {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 255, 231, 0.15);
  background: #0f1624;
  border: none;
}

/* Accordion item */
.accordion-item {
  border-bottom: 1px solid #222d48;
}

/* Accordion headers */
.accordion-header {
  margin: 0;
}

/* Accordion buttons */
.accordion-button {
  background: #16213e;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  border: none;
  border-radius: 0;
  transition: background 0.3s ease;
  position: relative;
  user-select: none;
  box-shadow: inset 0 -2px 0 #00ffe7;
}

/* Number bubble */
.faq-nub {
  width: 40px;
  height: 40px;
  background: #ff0057;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px #ff0057;
}

/* Text next to number */
.faq-text {
  flex-grow: 1;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

/* Accordion button hover and expanded */
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #ff0057, #00ffe7);
  color: #0f1624;
  box-shadow: 0 0 20px #00ffe7;
}

/* Remove default collapse icon */
.accordion-button::after {
  display: none;
}

/* Accordion body */
.accordion-body {
  background: #0f1624;
  color: #cfd8dc;
  font-size: 1.05rem;
  padding: 20px 30px 30px 80px;
  line-height: 1.6;
  border-left: 4px solid #00ffe7;
  position: relative;
  font-weight: 400;
  user-select: text;
}

/* FAQ description */
.faq-description p {
  margin-bottom: 1rem;
  color: #a0aec0;
}

/* Smooth collapse transitions */
.accordion-collapse {
  transition: max-height 0.4s ease, padding 0.3s ease;
  overflow: hidden;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  #faq {
    padding: 40px 15px;
    max-width: 100%;
    border-radius: 0;
  }
  .accordion-button {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .faq-nub {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .accordion-body {
    font-size: 1rem;
    padding-left: 60px;
  }
}


/*FAQ*/

/*footer*/

/* Footer base */
.custom-footer {
  background-color: #000000;
  color: #8eafcd;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 40px;
  border-top: 4px solid #2596be;
  user-select: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex layout for footer columns */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

/* Titles */
.footer-title {
  font-weight: 700;
  font-size: 1.75rem;
  color: #1e436d;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 6px;
}

.footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #2596be;
  border-radius: 3px;
  margin-top: 4px;
}

/* Lists */
.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 14px;
}

.footer-list li a {
  color: #8eafcd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: #2596be;
  text-decoration: underline;
}

/* Disclaimer text */
.footer-disclaimer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #91afcb;
  margin-top: 8px;
  max-width: 100%;
}

/* Partner logo */
.partner-logo {
  max-width: 220px;
  filter: drop-shadow(0 0 5px #2596be);
  margin-top: 8px;
}

/* Social and download row */
.footer-social-download {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Contact icons */
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2596be;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 0 15px rgba(37, 150, 190, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.contact-icon:hover {
  background-color: #1e436d;
  transform: scale(1.15);
}

/* Show WhatsApp web on md+ screens */
.whatsapp-web {
  display: none;
}

@media(min-width: 768px) {
  .whatsapp-web {
    display: flex;
  }
  .whatsapp-app {
    display: none;
  }
}

/* Download button */
.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #2596be, #7ba1c6);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  color: #071936;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 150, 190, 0.4);
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(45deg, #7ba1c6, #2596be);
}

.download-btn img {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 0 3px #fff);
}

/* Footer copyright */
.footer-copy {
  margin-top: 60px;
  font-size: 0.85rem;
  text-align: center;
  color: #91afcb;
  user-select: text;
}

/* Responsive footer columns */
@media (max-width: 767px) {
  .footer-row {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    min-width: 100%;
  }
}


/*footer*/