* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: inherit;
}
h1,h2,h3,h4,h5,h6{
    margin: 0px ;
}

.container {
  width: 92%;
  max-width: 1450px;
  margin: auto;
}
.topbar {
  background: #006b32;
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar i {
  color: #ffd347;
  margin-right: 6px;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.navbar {
  padding: 8px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 80px;
  width: auto;
  object-fit: cover;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  font-size: 14px;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #087333;
}

nav a.active {
  border-bottom: 3px solid #087333;
  padding-bottom: 3px;
}

.menu-btn {
  display: none;
  font-size: 25px;
  cursor: pointer;
}
.hero-sec {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.hero-bg .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-bg .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-bg .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  display: block;
}

.hero-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-content-home {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.hero-sec h1 {
  margin: 0;

  font-size: 48px;
  line-height: 1.15;

  color: #075f2c;
  font-weight: 800;
}

.hero-sec h1 span {
  display: block;

  color: #111;
  font-weight: 500;
  font-size: 37px;
}

.hero-sec p {
  margin: 15px 0 25px;

  font-size: 17px;
  color: #222;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 25px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-green {
  background: #087333;
  color: #fff;
}

.btn-green:hover {
  background: #054f24;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #222;

  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #f5f5f5;
  color: #222;
}

.quick-section {
  margin-top: -35px;
  position: relative;
  z-index: 5;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-card {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.quick-card:hover {
  transform: translateY(-5px);
}

.quick-icon {
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.green {
  background: #209537;
}
.gold {
  background: #e8a621;
}
.blue {
  background: #087e9b;
}
.purple {
  background: #7d2ca6;
}

.quick-text {
  flex: 1;
}

.quick-text h3 {
  font-size: 15px;
  margin: 0px;
}

.quick-text p {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.arrow-circle {
  width: 32px;
  height: 32px;
  border: 1px solid #087333;
  color: #087333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   CONTENT
========================= */

.main-section {
  padding: 24px 0 40px;
}

.grid-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}

.panel {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.panel-title {
  background: #076b31;
  color: #fff;
  padding: 11px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0px;
}

.panel-body {
  padding: 15px;
}
.today-result {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
}

.lottery-name {
  text-align: center;
  border-right: 1px solid #ddd;
  padding: 0px;
}

.lottery-name h2 {
  font-size: 30px;
  color: #dd2b78;
}

.lottery-name h4 {
  margin-bottom: 10px;
}

.draw-no {
  background: #dff3e5;
  padding: 6px 15px;
  display: inline-block;
  border-radius: 5px;
  font-size: 13px;
}

.result-winning {
  text-align: center;
  padding: 15px;
}

.result-winning .prize {
  color: #075f2c;
  font-size: 28px;
  font-weight: 800;
}

.result-number {
  background: #075f2c;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 7px;
  margin: 10px auto;
  max-width: 280px;
}

/* =========================
   WEEKLY
========================= */

.weekly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lottery-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 12px 6px;
}

.lottery-card h3 {
  color: #842ca0;
  font-size: 16px;
}
.lottery-card:nth-child(2) h3 {
  color: #e22b65;
}
.lottery-card:nth-child(3) h3 {
  color: #f45400;
}
.lottery-card:nth-child(4) h3 {
  color: #1455aa;
}
.lottery-card .day {
  font-size: 12px;
  font-weight: 700;
}
.lottery-card p {
  font-size: 12px;
  margin: 8px 0;
}

.lottery-card strong {
  color: #075f2c;
}

.card-btn {
  display: block;
  margin-top: 12px;
  background: #087333;
  color: #fff;
  padding: 7px;
  border-radius: 5px;
  font-size: 12px;
}

/* =========================
   BOTTOM GRID
========================= */

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.update-item {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.date-box {
  width: 48px;
  height: 48px;
  background: #e4f3e8;
  color: #087333;
  border-radius: 7px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
}

.date-box span {
  font-size: 10px;
}

.update-text h4 {
  font-size: 12px;
}

.update-text p {
  color: #777;
  font-size: 11px;
  margin-top: 4px;
}
.live-box {
  height: 190px;

  background: linear-gradient(rgba(7, 25, 55, 0.55), rgba(7, 25, 55, 0.7)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");

  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #fff;
  border-radius: 8px;
}

.live-box h2 {
  font-size: 27px;
  text-align: center;
}

.live-btn {
  margin-top: 15px;
  background: #e60019;
  padding: 9px 18px;
  border-radius: 6px;
}

/* =========================
   GALLERY
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}
footer {
  background: #055e2c;
  color: #fff;
}
.inner-hero {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;

  background: linear-gradient(
      90deg,
      rgba(0, 88, 42, 0.92),
      rgba(0, 88, 42, 0.58),
      rgba(0, 88, 42, 0.18)
    ),
    url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=1800&q=85");

  background-size: cover;
  background-position: center;
}
.hero-bg .swiper-button-next,
.hero-bg .swiper-button-prev {
  min-width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #1e5ac8;
  transition: all 0.25s ease;
}

.hero-bg .swiper-button-next:hover,
.hero-bg .swiper-button-prev:hover {
  background: #076b31;
  color: #fff;
}

.hero-bg .swiper-button-next::after,
.hero-bg .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}


.inner-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -85px;
  height: 150px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb span:last-child {
  color: #ffd33d;
}
.about-section {
  padding: 40px 0 35px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 35px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  height: 385px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
}
.trust-card {
  position: absolute;
  right: -28px;
  bottom: -25px;
  background: #fff;
  width: 150px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.trust-card i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e7f5eb;
  color: #087438;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.trust-card strong {
  display: block;
  color: #111;
  font-size: 15px;
  line-height: 1.4;
}

.section-label {
  color: #555;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.section-label::before {
  content: "";
  width: 35px;
  height: 3px;
  background: #e3b623;
  border-radius: 4px;
}

.about-text h2 {
  color: #087438;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-text p {
  color: #555;
  font-size: 14px;
  margin-bottom: 14px;
}

.about-buttons {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-green {
  background: #087438;
  color: #fff;
}

.btn-green:hover {
  background: #05592b;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #087438;
  color: #087438;
  background: #fff;
}

.btn-outline:hover {
  background: #eef8f1;
}
.section-title-line {
  margin: 9px auto 0;
  width: 82px;
  height: 3px;
  background: #e5b71d;
  border-radius: 5px;
  position: relative;
}

.section-title-line::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #e5b71d;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px #fff;
}

/* =========================
       MISSION VISION
    ========================== */

.mission-section {
  padding: 35px 0 45px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mission-card {
  border: 1px solid #e1e1e1;
  border-radius: 13px;
  padding: 24px;
  display: flex;
  gap: 18px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mission-icon {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.mission-card:nth-child(1) .mission-icon {
  background: #e4f2d8;
  color: #087438;
}

.mission-card:nth-child(2) .mission-icon {
  background: #fff2c9;
  color: #d49a00;
}

.mission-card:nth-child(3) .mission-icon {
  background: #e8f5e8;
  color: #087438;
}

.mission-card h3 {
  color: #087438;
  font-size: 17px;
  margin-bottom: 7px;
  margin-top: 0px;
}

.mission-card p,
.mission-card li {
  font-size: 12px;
  color: #555;
}

.value-list {
  list-style: none;
}

.value-list li {
  margin-bottom: 3px;
}

.value-list i {
  color: #087438;
  margin-right: 6px;
  font-size: 10px;
}

/* =========================
       WHY CHOOSE
    ========================== */

.why-section {
  padding: 20px 0 45px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.why-card {
  text-align: center;
  border: 1px solid #e4e4e4;
  border-radius: 7px;
  padding: 15px 8px;
  transition: 0.3s;
  background: #fff;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #e6f3dc;
  color: #087438;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

.why-card h3 {
  color: #087438;
  font-size: 13px;
  line-height: 1.25;
  min-height: 33px;
  margin-bottom: 8px;
}

.why-card p {
  color: #555;
  font-size: 11px;
  line-height: 1.55;
}
.stats-section {
  padding: 0 0 45px;
}
.stats-box {
  background: linear-gradient(rgba(0, 108, 51, 0.97), rgba(0, 108, 51, 0.97)),
    url("https://images.unsplash.com/photo-1593693411515-c20261bcad6e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 14px 10px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.38);
}
.stat-item i {
  font-size: 24px;
  margin-bottom: 5px;
}
.stat-item h3 {
  color: #ffd52c;
  font-size: 20px;
  line-height: 1.15;
}
.stat-item p {
  font-size: 12px;
  margin-top: 4px;
}
.commitment-section {
  padding: 0 0 30px;
}
.commitment-box {
  background: linear-gradient(90deg, #f2f8f3, #fffef5);
  border: 1px solid #dde8df;
  border-radius: 14px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  gap: 35px;
  align-items: center;
  overflow: hidden;
}

.commitment-image {
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
}

.commitment-content h2 {
  color: #087438;
  font-size: 26px;
  margin-bottom: 12px;
}

.commitment-content > p {
  color: #555;
  font-size: 13px;
  margin-bottom: 22px;
}

.commitment-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.commitment-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.commitment-point i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a9cfb4;
  color: #087438;
  border-radius: 50%;
}

.commitment-point h4 {
  color: #087438;
  font-size: 12px;
  margin: 0;
}

.commitment-point p {
  font-size: 10px;
  color: #555;
  margin: 0;
}

.support-section {
  padding: 0 0 40px;
}

.support-box-about {
  background: linear-gradient(90deg, #007138, #00612f);
  border-radius: 12px;
  color: #fff;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px 20px 160px;
  position: relative;
  overflow: visible;
}

.support-icon {
  width: 115px;
  height: 115px;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  color: #087438;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.support-icon i {
  font-size: 42px;
}

.support-icon strong {
  font-size: 13px;
  margin-top: 4px;
}

.support-text h2 {
  font-size: 28px;
  margin-bottom: 3px;
}

.support-text p {
  font-size: 12px;
  max-width: 520px;
}

.support-btn {
  background: #f5c327;
  color: #163018;
  padding: 13px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-hero {
  min-height: 310px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
      90deg,
      rgba(0, 87, 41, 0.94),
      rgba(0, 87, 41, 0.62),
      rgba(0, 87, 41, 0.15)
    ),
    url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=1800&q=85");

  background-size: cover;
  background-position: center;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -83px;
  left: -5%;
  width: 110%;
  height: 135px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-bottom: 35px;
}

.hero-content h1 {
  font-size: 49px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-content h2 {
  font-size: 25px;
  margin: 5px 0 8px;
}

.hero-content p {
  font-size: 14px;
  max-width: 430px;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.breadcrumb span {
  color: #ffd131;
}
.section-title {
  text-align: center;
  margin-bottom: 14px;
}

.section-title p {
  color: #666;
  font-size: 13px;
  margin-top: 5px;
}

.title-line {
  width: 80px;
  height: 3px;
  background: #e8b91f;
  margin: 8px auto;
  border-radius: 5px;
  position: relative;
}

.title-line::after {
  content: "";
  width: 9px;
  height: 9px;
  background: #e8b91f;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px #fff;
}

/* CONTACT CARDS */

.contact-info-section {
  padding: 30px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}

.contact-card .icon {
  width: 58px;
  height: 58px;
  background: #23803b;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-card h3 {
  color: #087238;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card strong {
  display: block;
  color: #087238;
  font-size: 20px;
  margin: 5px 0;
}

.contact-card p {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}

/* FORM + MAP */

.main-contact-section {
  padding: 15px 0 35px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.box {
  border: 1px solid #e2e2e2;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.box-inner {
  padding: 14px;
}

.box-title {
  text-align: center;
  margin-bottom: 20px;
}

.box-title h2 {
  color: #087238;
  font-size: 24px;
}

.box-title .title-line {
  margin-top: 7px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 12px;
}

.form-control {
  width: 100%;
  border: 1px solid #d8d8d8;
  outline: none;
  border-radius: 6px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 12px;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #087238;
  box-shadow: 0 0 0 3px rgba(8, 114, 56, 0.08);
}

textarea.form-control {
  height: 135px;
  resize: none;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 5px;
}

.secure-text {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 7px;
}

.secure-text i {
  color: #087238;
}

.send-btn {
  border: 0;
  background: #087238;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
}

.send-btn:hover {
  background: #05582b;
}

/* MAP */

.map-area {
  min-height: 430px;
}

.map-area iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* FAQ */

.faq-section {
  padding: 10px 0 35px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  text-align: left;
}

.faq-question .q-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question .q-icon {
  width: 23px;
  height: 23px;
  border: 1px solid #aaa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}

.faq-answer {
  display: none;
  padding: 0 16px 15px 49px;
  color: #666;
  font-size: 11px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question > i {
  transform: rotate(180deg);
}

/* HOURS AND SUPPORT */

.help-section {
  padding: 0 0 40px;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hours-box {
  border: 1px solid #e2e2e2;
  border-radius: 13px;
  padding: 16px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 25px;
  background: #fff;
}

.hours-icon {
  text-align: center;
  color: #087238;
}

.hours-icon i {
  font-size: 66px;
  margin-bottom: 12px;
}

.hours-icon strong {
  display: block;
  font-size: 22px;
  margin-top: -8px;
}

.hours-icon p {
  font-size: 11px;
  font-weight: 600;
}

.hours-content h2 {
  color: #087238;
  font-size: 22px;
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}

.hours-row:last-child {
  border: 0;
}

.urgent-box {
  border-radius: 13px;
  background: linear-gradient(135deg, #08753a, #005828);
  color: #fff;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.urgent-box h2 {
  font-size: 20px;
}

.urgent-box > p {
  font-size: 12px;
  margin: 8px 0 16px;
}

.phone-box {
  max-width: 400px;
  width: 100%;
  border: 1px solid #f4c629;
  margin: auto;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.phone-box i {
  color: #f4c629;
  font-size: 25px;
}

.phone-box strong {
  font-size: 18px;
  line-height: 1;
}

.phone-box small {
  display: block;
  font-size: 10px;
}
.lootery-sec {
  padding: 60px 0;
  background: #f8f9fb;
}

.lottery-tickets-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 24px;
  margin: 0 auto;
}

.lottery-ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.lottery-ticket:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.lottery-ticket-img {
  width: 100%;
  height: 220px;
}

.lottery-ticket-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.lottery-ticket-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.lottery-plan-name {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.lottery-price {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 22px;
}
.lottery-ticket-number {
  width: 100%;
  padding: 12px 10px;
  border-top: 2px dashed #e5e5e5;
  border-bottom: 2px dashed #e5e5e5;
  margin-bottom: 22px;
}

.lottery-ticket-label {
  display: block;
  font-size: 11.5px;
  color: #999;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lottery-number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lottery-number-box {
  background: #f7f8fa;
  border: 1.5px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  font-family: "Courier New", monospace;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lottery-number-box:hover {
  border-color: #1e5ac8;
  background: #eef3fc;
}

.lottery-number-box.selected {
  background: #1e5ac8;
  border-color: #1e5ac8;
  color: #fff;
}

/* ===== Buy button ===== */
.lottery-buy-btn {
  display: block;
  width: 100%;
  background: #1e5ac8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: all 0.25s ease;
}

.lottery-buy-btn:hover {
  background: #164a9e;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Standard variant ===== */
.lottery-ticket-standard {
  border: 2px solid #1e5ac8;
}

.lottery-popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #1e5ac8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  z-index: 3;
  text-transform: uppercase;
}

/* ===== Bumper variant (featured, middle, elevated) ===== */
.lottery-ticket-bumper {
  border: 2px solid #f2a900;
  background: linear-gradient(180deg, #fff 70%, #fffaf0 100%);
  transform: scale(1.06);
  box-shadow: 0 20px 45px rgba(242, 169, 0, 0.18);
  z-index: 2;
}

.lottery-ticket-bumper:hover {
  transform: scale(1.06) translateY(-6px);
}

.lottery-ticket-bumper .lottery-price {
  color: #d18a00;
}

.lottery-ticket-bumper .lottery-number-box.selected {
  background: #f2a900;
  border-color: #f2a900;
}

.lottery-ticket-bumper .lottery-buy-btn {
  background: linear-gradient(135deg, #f2a900 0%, #ffc93c 100%);
  color: #1a1a1a;
  box-shadow: 0 10px 24px rgba(242, 169, 0, 0.3);
}

.lottery-ticket-bumper .lottery-buy-btn:hover {
  background: linear-gradient(135deg, #d18a00 0%, #f2a900 100%);
  color: #1a1a1a;
}

.lottery-hot-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff8a3d 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}
.page-wrapper {
  width: 92%;
  max-width: 1350px;
  margin: auto;
  padding: 25px 0 35px;
}
.result-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 55px rgba(8, 80, 42, 0.12);
  overflow: hidden;
}
.status-title {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 30px;
}

.status-title h2 {
  font-size: 26px;
  font-weight: 700;
  color: #242b31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-title h2 span {
  color: #08763a;
}

.title-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.title-divider span {
  width: 60px;
  height: 2px;
  background: #e3e7e8;
}

.title-divider i {
  color: #08763a;
  font-size: 11px;
}

.status-title p {
  color: #687078;
  font-size: 14.5px;
  margin: 0;
}

.status-form {
  max-width: 670px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e9ea;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-grid-two {
  grid-template-columns: 1fr 1fr;
}

/* ===== Prefix input ===== */
.input-prefix-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #d7dddf;
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
  background: #fff;
  transition: all 0.25s ease;
}

.input-prefix-wrap:focus-within {
  border-color: #08763a;
  box-shadow: 0 0 0 3px rgba(8, 118, 58, 0.1);
}

.input-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 12px;
  background: #f5fbf6;
  color: #08763a;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #d7dddf;
  white-space: nowrap;
}

.input-prefix i {
  font-size: 13px;
}

.input-control-prefix {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  height: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 0 14px;
  color: #1a1a1a;
  background: transparent;
}

/* ===== Submit button ===== */
.check-btn {
  width: 100%;
  margin-top: 20px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #058036, #0a8e3f);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(8, 118, 58, 0.2);
  transition: all 0.25s ease;
}

.check-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(8, 118, 58, 0.28);
}

.check-btn i {
  font-size: 14px;
}

/* ===== Privacy note ===== */
.safe-message {
  width: max-content;
  max-width: 100%;
  margin: 16px auto 0;
  background: #f5fbf6;
  color: #53a16c;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12.5px;
  text-align: center;
}

.safe-message i {
  margin-right: 6px;
}
.features {
  border: 1px solid #dbe9df;
  border-radius: 14px;
  background: #f9fdf9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #dde8df;
}

.feature-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #08763a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature h3 {
  color: #08763a;
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 4px;
}

.feature p {
  color: #666;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}
.result-message {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.result-message.success {
  display: block;
  background: #ecf8ef;
  color: #08763a;
  border: 1px solid #cce7d3;
}

.result-message.error {
  display: block;
  background: #fff1f1;
  color: #c03737;
  border: 1px solid #f2cece;
}
.page-title h1 {
  font-size: 26px;
}

.page-title h1 span {
  color: #dba91f;
}
.page-title p {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}
#orderResult {
  display: none;
}

#orderResult.show {
  display: block;
}
.ticket-section {
  display: flex;
  flex-direction: column;
}


.price {
  padding: 7px 18px;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.basic .price {
  background: #ce9427;
}

.standard .price {
  background: #b31e4b;
}

.special .price {
  background: #285ca9;
}
.selection-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 25px;
}

.number-panel-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.number-btn {
  min-height: 34px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: 0.2s;
}

.number-btn:hover {
  transform: translateY(-1px);
}

.basic .number-btn.selected {
  background: #055426;
  color: #fff;
  border-color: #055426;
}

.standard .number-btn.selected {
  background: #b6204d;
  color: #fff;
  border-color: #b6204d;
}

.special .number-btn.selected {
  background: #285baa;
  color: #fff;
  border-color: #285baa;
}

/* ===========================
   SELECTED AREA
=========================== */

.selected-box {
  border-left: 1px solid #e7e3eb;
  padding-left: 20px;
}

.selected-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 36px;
  margin-bottom: 20px;
}

.chip {
  border-radius: 7px;
  padding: 7px 11px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.basic .chip {
  background: #eddcbc;
    color: #000;
    border: 1px solid #a36b21;
}

.standard .chip {
  background: #fff0f4;
  color: #ad2049;
  border: 1px solid #c8496f;
}

.special .chip {
  background: #edf4ff;
  color: #24539a;
  border: 1px solid #4675c0;
}

/* ===========================
   QUANTITY
=========================== */

.quantity-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}

.quantity-control {
  display: flex;
  align-items: center;
  width: 150px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 7px;
  overflow: hidden;
}

.quantity-control button {
  width: 45px;
  height: 100%;
  border: 0;
  background: #f7f7fa;
  cursor: pointer;
  font-size: 18px;
}

.quantity-control span {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

.delete-ticket {
  float: right;
  margin-top: -38px;
  border: 1px solid #ff9cb2;
  color: #ef3e64;
  background: #fff;
  width: 40px;
  height: 38px;
  border-radius: 7px;
  cursor: pointer;
}
.summary-section {
    display: none;

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 9999;

    padding: 12px 0;

    background:#111;

    border-top: 1px solid #dfe6ea;

    box-shadow:
        0 -5px 25px rgba(0, 0, 0, 0.10);

    backdrop-filter: blur(8px);
}


.summary-section.show {
    display: block;
}
.summary-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}
.summary-box {
    border: 2px solid #d1950b;
    border-radius: 14px;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 15px;
    align-items: center;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ec19c, #056932);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.summary-item small {
  display: block;
  color: #555;
  font-size: 11px;
}

.summary-item strong {
  display: block;
  font-size: 25px;
  color: #4d1998;
}

.payment-btn {
    min-height: 62px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    background: linear-gradient(90deg, #5e740a, #02612e, #b97c08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.secure-text {
  text-align: center;
  font-size: 11px;
  color: #5b4c6f;
  display: block;
  margin-top: 8px;
}

/* ===========================
   NOTE
=========================== */

.note {
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 13px;
  margin-bottom: 30px;
  color: #555;
  font-size: 12px;
}

.note strong {
  color: #ef3869;
}

/* ===========================
   MOBILE
=========================== */

.menu-btn {
  display: none;
  color: #fff;
  font-size: 24px;
}
:root {
  --purple: #6f23c7;
  --purple-dark: #250642;
  --purple-light: #f4edff;
  --pink: #ec2f83;
  --green: #159447;
  --text: #17142d;
  --muted: #6f6980;
  --border: #e4dcf0;
  --white: #ffffff;
}

.page-title {
  text-align: center;
}
.page-title p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.track-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 7px 25px rgba(51, 21, 96, 0.06);
  overflow: hidden;
  margin-bottom: 20px;
}

.track-form {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 22px;
  align-items: end;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd6e9;
  background: #fff;
  border-radius: 9px;
  height: 54px;
  overflow: hidden;
  transition: 0.2s;
}

.input-wrap:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(111, 35, 199, 0.07);
}

.input-icon {
  width: 55px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 18px;
}

.input-wrap input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  font-size: 13px;
  padding: 0 13px 0 0px;
}

.track-btn {
  height: 54px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #7728d4, #ec3081);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(113, 38, 199, 0.18);
}

.track-tip {
  background: #faf6ff;
  border-top: 1px solid #eee6f6;
  padding: 13px 20px;
  text-align: center;
  color: #68419b;
  font-size: 11px;
}

.track-tip i {
  margin-right: 7px;
}
.order-card {
  background: #fff;
  border: 1px solid #dce9df;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.order-summary {
  padding: 18px;
  background: linear-gradient(90deg, #fffdf2, #f6fff8);
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 25px;
  align-items: center;
}

.status-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.status-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ca553, #087e38);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.order-label {
  font-size: 11px;
  color: #777184;
}

.status-area h2 {
  color: var(--green);
  font-size: 26px;
  margin: 3px 0;
}

.status-area p {
  font-size: 11px;
  color: #6a6575;
}

.order-detail {
  border-left: 1px solid #e3e7e2;
  padding-left: 25px;
}

.order-detail strong {
  display: block;
  color: var(--purple);
  font-size: 21px;
  margin: 3px 0 12px;
}

.order-detail .date {
  font-size: 12px;
  font-weight: 600;
}

.amount-area {
  border-left: 1px solid #e3e7e2;
  padding-left: 25px;
}

.total-amount {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 4px 0 14px;
}

.total-amount strong {
  color: var(--purple);
  font-size: 26px;
}

.paid-badge {
  background: #e4f7e8;
  color: #178b40;
  border-radius: 15px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
}

.payment-method {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}
.bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
  padding: 14px 20px;

  background: linear-gradient(90deg, #058036, #0a8e3f);
  border-radius: 8px;
}

.bottom-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.bottom-links a i {
  font-size: 15px;
}
.bottom-links a:hover {
  color: #d9ffe7;
  transform: translateY(-1px);
}
.bottom-links .line {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.5);
}
.timeline {
  padding: 25px 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 46px;
  height: 3px;
  background: #22a34f;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #159447;
  color: #fff;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 7px #fff;
}

.step h4 {
  font-size: 12px;
}

.step p {
  font-size: 10px;
  color: #756e82;
  margin-top: 3px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 12px;
  color: #5d1fb2;
  
  margin-bottom: 13px;
}

.section-heading h3 {
  font-size: 18px;
  margin: 0px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
td {
  padding: 12px 14px;
  border-bottom: 1px solid #ece7f3;
  font-size: 11px;
}

.ticket-data {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-thumb {
  width: 88px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.ticket-sub {
  color: #777;
  font-size: 10px;
}

.ticket-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  background: #f6efff;
  border: 1px solid #d8c7ef;
  color: #6424ad;
  border-radius: 7px;
  font-weight: 600;
}

.copy-small {
  border: 0;
  background: transparent;
  color: #7a34c7;
  cursor: pointer;
}

.booked {
  color: #16843d;
  background: #e8f7ec;
  border-radius: 15px;
  padding: 6px 13px;
  font-size: 10px;
  font-weight: 600;
}

/* =========================
   SUPPORT
========================= */

.support-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.help-main {
  display: flex;
  gap: 15px;
  align-items: center;
}

.help-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0e8fb;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.help-main h3 {
  color: var(--purple);
  font-size: 18px;
}

.help-main p {
  color: #716a7d;
  font-size: 11px;
}

.support-item {
  border-left: 1px solid #eee;
  padding-left: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.support-item i {
  font-size: 21px;
  color: var(--purple);
}

.support-item.whatsapp-support i {
  color: #1ead5b;
}

.support-item strong {
  display: block;
  font-size: 11px;
  margin: 0;
  color: #222;
}

.support-item span {
  font-size: 11px;
  color: #595366;
}

.message.error {
  display: block;
  background: #fff0f1;
  color: #c4334c;
  border: 1px solid #f2cbd2;
}

.lottery-categories-sec {
  padding: 40px 0;
  background: #fff;
}

.lottery-category-slider {
  padding: 10px 6px 30px;
}

.lottery-cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lottery-cat-img {
  width: 100%;
  height: 100%;
}

.lottery-cat-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.lottery-cat-card:hover .lottery-cat-img img {
  transform: scale(1.08);
}

.lottery-cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
}

.lottery-cat-overlay h4 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px;
}

.lottery-cat-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ===== Swiper nav/pagination styling ===== */
.lottery-category-slider .swiper-button-next,
.lottery-category-slider .swiper-button-prev {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #1e5ac8;
  transition: all 0.25s ease;
}

.lottery-category-slider .swiper-button-next:hover,
.lottery-category-slider .swiper-button-prev:hover {
  background: #076b31;
  color: #fff;
}

.lottery-category-slider .swiper-button-next::after,
.lottery-category-slider .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}

.lottery-category-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #ddd;
  opacity: 1;
  transition: all 0.25s ease;
}

.lottery-category-slider .swiper-pagination-bullet-active {
  background: #1e5ac8;
  width: 24px;
  border-radius: 5px;
}
.winners-sec {
  padding: 30px 0;
  background: #f8f9fb;
}
.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 0px;
}

.section-title span {
  display: inline-block;
  background: rgba(30, 90, 200, 0.1);
  color: #076b31;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0px;
}

.section-title h2 {
  font-size: 26px;
  margin: 0 0 12px;
}

.section-title h2 strong {
      color: #b27c07;
}
.winners-slider {
  padding: 10px 6px 50px;
}

.winner-card {
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid #076b31;
}

.winner-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.winner-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(30, 90, 200, 0.15);
}

.winner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-lottery-type {
  display: inline-block;
  background: rgba(242, 169, 0, 0.12);
  color: #d18a00;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}

.winner-amount {
  font-size: 22px;
  font-weight: 600;
  color: #076b31;
  margin: 0 0 2px;
}

.winner-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.winner-location {
  font-size: 13px;
  color: #888;
  margin: 0 0 8px;
}

.winner-location i {
  color: #076b31;
  margin-right: 3px;
}

.winner-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 5px;
  border-top: 3px dashed #eee;
}

.winner-meta span {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 5px;
}

.winner-meta i {
  color: #e9c03c;
  font-size: 11px;
}
.winners-slider .swiper-button-next,
.winners-slider .swiper-button-prev {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #1e5ac8;
  transition: all 0.25s ease;
}

.winners-slider .swiper-button-next:hover,
.winners-slider .swiper-button-prev:hover {
  background: #076b31;
  color: #fff;
}

.winners-slider .swiper-button-next::after,
.winners-slider .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}

.winners-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #ddd;
  opacity: 1;
  transition: all 0.25s ease;
}

.winners-slider .swiper-pagination-bullet-active {
  background: #1e5ac8;
  width: 24px;
  border-radius: 5px;
}

.lottery-about-sec {
  padding: 40px 0;
  overflow: hidden;
  background: #fff;
}

.lottery-about-img-col {
  padding: 0 0px;
}

.lottery-about-card {
  position: relative;
  margin: 0 auto;
  padding: 30px;
}

.lottery-about-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(8, 118, 58, 0.18) 0%,
    rgba(8, 118, 58, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.lottery-about-main-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(8, 118, 58, 0.2);
}

.lottery-about-main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lottery-about-card:hover .lottery-about-main-img img {
  transform: scale(1.05);
}

.lottery-about-shape {
  position: absolute;
  border-radius: 16px;
  z-index: 1;
}

.lottery-about-shape-1 {
  top: 0;
  left: -6px;
  width: 90px;
  height: 90px;
  background: #08763a;
  opacity: 0.1;
}

.lottery-about-shape-2 {
  bottom: 10px;
  right: -6px;
  width: 70px;
  height: 70px;
  border: 3px solid #f2a900;
  opacity: 0.35;
}

/* ===== Floating stat badges ===== */
.lottery-about-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  animation: lotteryFloat 3.5s ease-in-out infinite;
}

.lottery-about-badge-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 118, 58, 0.1);
}

.lottery-about-badge-icon i {
  font-size: 17px;
  color: #08763a;
}

.lottery-about-badge h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
  white-space: nowrap;
}

.lottery-about-badge span {
  font-size: 11.5px;
  color: #888;
  white-space: nowrap;
}

.lottery-about-badge-1 {
  bottom: 82px;
  right: -20px;
  animation-delay: 0s;
}

.lottery-about-tag {
  display: inline-block;
  background: rgba(8, 118, 58, 0.1);
  color: #08763a;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.lottery-about-content h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.lottery-about-content h2 span {
  color: #08763a;
}
.lottery-about-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 10px;
}

.lottery-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 25px;
  background: linear-gradient(90deg, #058036, #0a8e3f);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 118, 58, 0.25);
  transition: all 0.25s ease;
}

.lottery-about-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 118, 58, 0.35);
}

.lottery-part {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
.lottery-testimonial-sec {
  padding: 40px 0;
  background: #faf5f1;
}
.lottery-testimonial-slider {
  padding: 10px 4px;
}

.lottery-testimonial-card {
  background: #fff;
  border: 1px solid #e3ede6;
  border-radius: 6px;
  padding: 18px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.lottery-testimonial-card:hover {
  border: 2px solid #058036;
}

.lottery-testimonial-quote {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 42px;
  height: 42px;
  opacity: 0.8;
  background: rgba(8, 118, 58, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lottery-testimonial-quote i {
  font-size: 16px;
  color: #08763a;
}

.lottery-testimonial-stars {
  margin-bottom: 8px;
}

.lottery-testimonial-stars i {
  color: #f2a900;
  font-size: 13px;
  margin-right: 2px;
}

.lottery-testimonial-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 26px;
  padding-right: 16px;
}

.lottery-testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lottery-testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(8, 118, 58, 0.2);
}

.lottery-testimonial-user h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
}

.lottery-testimonial-user span {
  font-size: 12.5px;
  color: #999;
}

.lottery-testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.lottery-testimonial-prev,
.lottery-testimonial-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d9e8dd;
  color: #08763a;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lottery-testimonial-prev:hover,
.lottery-testimonial-next:hover {
  background: linear-gradient(90deg, #058036, #0a8e3f);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 118, 58, 0.25);
}

.lottery-testimonial-prev.swiper-button-disabled,
.lottery-testimonial-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #08753a, #005828);
  color: #fff;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.site-footer::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: 50px 0 22px;
  display: grid;
  grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;
  gap: 25px;
}
.footer-part h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #fff;
}
.footer-part h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: cover;
}
.footer-social {
  display: flex;
  gap: 9px;
  margin-bottom: 15px;
}

.footer-social a {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;

  color: #058036;
  background: #fff;

  text-decoration: none;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #034a23;
  color: #fff;

  transform: translateY(-3px);
}
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a i {
  font-size: 9px;
  color: #fff;
  transition: transform 0.3s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-links a:hover i {
  transform: translateX(3px);
}
.footer-contact {
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
}
.contact-item small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a,
.contact-item span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.contact-item a:hover {
  color: #d9ffe7;
}
.copyright {
  position: relative;
  z-index: 2;
  background: #034a23;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 0;
}
.copy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.copy-inner span {
  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;
}

.copy-inner span:last-child {
  color: rgba(255, 255, 255, 0.55);
}
.gallery-section {
  padding: 40px 0px;
  background: #fff;
}
.gallery-slider {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4,1fr);
}
.gallery-item {
  position: relative;
  flex: 0 0 31.8%;
  height: 192px;
  overflow: hidden;
  border-radius: 12px;
  background: #ddd;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
} /* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
} 
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(241, 90, 41, 0.7),
    rgba(0, 0, 0, 0.6)
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}
.overlay-content {
  transform: translateY(25px) scale(0.8);
  transition: all 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.13);
  filter: brightness(0.8);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, #f15a29, #ff9a6c, #f15a29);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.gallery-item:hover::after {
  transform: scaleX(1);
}

.page-heading{
    text-align:center;
}

.page-heading h1{
    font-size:28px;
}

.page-heading h1 span{
    color:#8b28e7;
}

.page-heading p{
    color:var(--muted);
    font-size:12px;
    margin-top:4px;
}

/* STEPS */

.steps{
    border:1px solid var(--border);
    border-radius:14px;
    background:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-bottom:22px;
    overflow:hidden;
}

.step{
    min-height:78px;
    display:flex;
    align-items:center;
    gap:13px;
    padding:15px 20px;
    position:relative;
}

.step.active{
    background:#f7f1ff;
}

.step-number{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid #d4c9e5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.step.active .step-number{
    background:var(--purple);
    color:#fff;
}

.step h4{
    font-size:12px;
}

.step p{
    font-size:10px;
    color:#777;
}
.checkout-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:22px;
    margin-bottom:20px;
}

.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:20px;
    height: fit-content;
}

.card-title{
    color:#ae7702;
    font-size:18px;
    display:flex;
    align-items:center;
    gap:9px;
    margin: 0px;
    margin-bottom:8px;
}


.table-wrap{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:690px;
}

thead{
    background: linear-gradient(90deg, #146632, #6dc58d);
    color:#fff;
}

th{
    text-align:left;
    padding:10px 12px;
    font-size:10px;
    white-space: nowrap;
}

td{
    padding:9px 12px;
    border-bottom:1px solid #eee9f4;
    font-size:11px;
}

.ticket-info{
    display:flex;
    align-items:center;
    gap:10px;
}

.ticket-badge{
    width:64px;
    min-height:39px;
    border-radius:5px;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.badge-green{
    background:linear-gradient(#329956,#17733a);
}

.badge-blue{
    background:linear-gradient(#148dd1,#075c9f);
}

.badge-purple{
    background:linear-gradient(#a340c8,#6d2197);
}

.ticket-badge strong{
    font-size:15px;
}

.ticket-badge small{
    font-size:7px;
    margin-top:3px;
}

.lottery-name{
    font-weight:600;
}

.series{
    color:#716a7f;
    font-size:9px;
}

.ticket-number{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#6427bf;
    background:#f6f0ff;
    border:1px solid #ddd0ef;
    border-radius:6px;
    padding:6px 9px;
    font-weight:600;
}

.copy-btn{
    border:0;
    background:transparent;
    color:#6a2cc2;
    cursor:pointer;
}

.delete-btn{
    width:34px;
    height:34px;
    border:1px solid #ffb3bd;
    color:#f23d53;
    background:#fff;
    border-radius:7px;
    cursor:pointer;
}

.add-ticket{
    margin-top:14px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid #8243dd;
    color:#6121bf;
    padding:8px 15px;
    border-radius:7px;
    font-size:11px;
}

/* ORDER SUMMARY */

.summary-top{
    padding: 1px 10px;
    border: 1px solid #267a45;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.summary-stat:first-child{
    border-right:1px solid #ded1ee;
}

.summary-stat{
    padding:0 10px;
}

.summary-stat span{
    font-size:10px;
}

.summary-stat strong{
    display:block;
    color:#000;
    font-size:24px;
    margin-top:2px;
}

.amount-lines{
    margin-top:13px;
}

.amount-row{
    display:flex;
    justify-content:space-between;
    padding:7px 0;
}

.amount-row.total{
    border-top:1px solid #ddd7e5;
    margin-top:5px;
    padding-top:11px;
}

.amount-row.total strong{
    color:#000;
    font-size:25px;
}

/* CUSTOMER DETAILS */

.customer-box{
    border:1px solid #e5ddef;
    border-radius:11px;
    padding:16px;
    margin-top:10px;
}

.customer-title{
    color:#ae7702;
    font-size:15px;
    font-weight:600;
    display:flex;
    gap:8px;
    align-items:center;
    margin-bottom:14px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:13px 18px;
}

.form-group label{
    font-size:9px;
    text-transform:uppercase;
    display:block;
    margin-bottom:5px;
}

.form-control{
    width:100%;
    height:43px;
    border:1px solid #dcd7e2;
    border-radius:6px;
    padding:0 11px;
    outline:none;
    font-size:11px;
}

.form-control:focus{
    border-color:#7c35d3;
    box-shadow:0 0 0 3px rgba(124,53,211,.08);
}

.terms{
    grid-column:1/-1;
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:10px;
    color:#665e70;
}

.terms input{
    margin-top:2px;
    accent-color:#6c24d4;
}

.terms a{
    color:#6821d1;
}
.payment-security{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:14px;
}

.payment-box,
.security-box{
    border:1px solid #e5ddef;
    border-radius:10px;
    padding:14px;
}

.payment-box h4,
.security-box h4{
    font-size:11px;
    margin-bottom:10px;
}

.payment-icons{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}

.pay{
    min-width:59px;
    height:35px;
    border:1px solid #ddd;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    font-size:11px;
    font-weight:700;
}

.security-box{
    background:#f3fff6;
    display:flex;
    gap:12px;
    align-items:center;
}

.security-box i{
    color:#168f43;
    font-size:27px;
}

.security-box strong{
    color:#15883f;
    font-size:11px;
}

.security-box p{
    color:#56725f;
    font-size:9px;
    margin-top:3px;
}

/* FAIR PLAY */

.fair-play{
    background:#faf6ff;
    border:1px solid #e4d9f1;
    border-radius:12px;
    padding:17px 25px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-bottom:15px;
}

.fair-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.fair-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#eee1ff;
    color:#6e21d4;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.fair-item strong{
    color:#5620bd;
    font-size:11px;
}

.fair-item p{
    font-size:9px;
    color:#716878;
}

/* CHECKOUT BOTTOM */

.checkout-bottom{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:13px 18px;
    display:grid;
    grid-template-columns:1fr auto 410px;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.back-btn{
    width:max-content;
    border:1px solid #7a39d0;
    color:#5d1bbd;
    padding:10px 18px;
    border-radius:7px;
    font-size:11px;
}

.payable{
    text-align:right;
}

.payable span{
    font-size:9px;
}

.payable strong{
    display:block;
    color:#6220c9;
    font-size:25px;
}

.proceed{
    height:45px;
    border:0;
    border-radius:7px;
    padding: 0px 13px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    background: linear-gradient(90deg, #066f36, #e2ab1b);
    width: 100%;
}

@media(max-width:1100px){
    .checkout-grid{
        grid-template-columns:1fr;
    }

    .checkout-bottom{
        grid-template-columns:1fr 1fr;
    }
    .proceed{
        grid-column:1/-1;
    }
}


.payment-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal.show {
    display: flex;
}

.payment-modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    
}
.file-submit{
    padding: 8px 12px;
    font-size:14px;
    width: 100%;
    border-radius: 6px;
    border:1px solid #ddd;
}
.status-section{
    padding: 20px 25px;
}
.payment-modal-content h3{
    font-size: 20px;
    margin: 0px;
    margin-bottom: 10px;
}
.payment-modal-content h5{
    font-size: 15px;
    margin: 0px;
    margin-bottom: 10px;
}
.payment-modal-content p{
    font-size:12px;
    margin: 10px 0px;
    color: #4e4343;
}
.submit-pay{
    background: #146632;
    padding: 10px 15px;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 10px;
    border:none;
}
.popup-img {
    height: 180px;
    width: auto;
}
.popup-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.payment-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}
.first-prize{
  position:relative;
  background:
#006b32;
  border-radius:10px;
  padding:20px 25px;
  text-align:center;
  color:#fff;
  overflow:hidden;
  margin:40px 0;
  box-shadow:0 25px 60px rgba(61,26,92,.3);
  display: grid;
  grid-template-columns: 300px 1fr 300px;
}
.first-prize::before{
  content:'';
  position:absolute;
  top:-100px;
  left:50%;
  width:500px;
  height:300px;
  background:radial-gradient(circle, rgba(255,209,102,.2), transparent 70%);
  transform:translateX(-50%);
  pointer-events:none;
}
.prize-ribbon{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  background:linear-gradient(135deg,
#f9d976,
#f4c542);
  color:
#181818;
  padding:16px 24px;
  border-radius:8px;
  box-shadow:0 15px 35px rgba(244,197,66,.35);
}
.prize-ribbon i{
  font-size:26px;
}
.prize-ribbon h3{
  font-size:15px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}
.prize-ribbon strong{
  font-family:Georgia,'Times New Roman',serif;
  font-size:28px;
  font-weight:700;
}
.prize-label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:
#c9b8e8;
  margin-bottom:14px;
}
.winning-number{
  font-family:'Courier New',monospace;
  font-size:clamp(32px,5vw,54px);
  font-weight:800;
  letter-spacing:6px;
  color:#fff;
  padding:18px 30px;
  background:rgba(255,255,255,.06);
  border:2px dashed rgba(255,209,102,.5);
  border-radius:14px;
  display:inline-block;
  margin-bottom:36px;
}
.winner-info{
  position:relative;
}
.congrats{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:
#ffd166;
  margin-bottom:10px;
}
.winner-info h4{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:
#c9b8e8;
  margin: 0px;
  margin-bottom:8px;

}
.winner-info strong{
  display:block;
  font-family:Georgia,'Times New Roman',serif;
  font-size:26px;
  margin-bottom:14px;
}
.withdraw-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 34px;
  background:linear-gradient(135deg,
#ffd166,
#f4a531);
  color:
#181818;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  border:none;
  border-radius:30px;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(244,165,49,.35);
  transition:.3s;
}
.withdraw-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 35px rgba(244,165,49,.5);
}

/* ====================================================
   WITHDRAWAL DETAILS CARD
==================================================== */
.win-tittle{
    text-align: center;
    padding: 40px 0px;
}
.won-title h3{
    font-size: 25px;
    color: #006b32;
    padding: 8px 0px;
}
.img-gif{
    height: 250px;
    width: auto;
}
.img-gif img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.won-title{
    text-align: center;
    padding: 20px 0px;
}
.winner-animation {
    display: inline-block;
    animation: zoomInOut 1.2s ease-in-out infinite;
    font-size:26px;
    color: #006b32;
}
.withdraw-action-card-button{
    text-align: center;
}
.withdraw-action-card-button button{
    background: #006b32;
    padding: 14px 26px;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    color: #fff;
    border: none;
}



@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
.withdrawal-details{
  background:#fff;
  border-radius:6px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  overflow:hidden;
  
  margin-bottom:20px;
  max-width: 720px;
  margin: auto;
  border:1px solid #222;
}


.wd-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 28px;
  background:#006b32;
  color:#fff;
}
.wd-head-left{
  display:flex;
  align-items:center;
  gap:12px;
  border-bottom:1px solid #222;
  padding: 8px 10px;
  background: #006b32;
  width: 100%;
}
.wd-head-left h3{
  font-size:17px;
  font-weight:700;
  color: #fff;
}

.wd-group{
  margin-bottom:18px;
}
.wd-group:last-child{
  margin-bottom:0;
  border-bottom:none;
}

.wd-group-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#006b32;
  margin-bottom:10px;
  padding-bottom:8px;
  border-bottom:1.5px dashed #e5e5e5;
}
.wd-group-title i{
  font-size:12px;
}
.wd-grid{
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:10px;
}
.wd-item{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding: 5px 10px;
}
.wd-amount.pend{
    color: #006b32;
}
.wd-item:last-child{
    border-bottom:none;
}
.wd-item span{
  display:block;
  font-size:13.5px;
  text-transform:uppercase;
  letter-spacing:.6px;
  color:#222;
  font-weight:600;
}
.wd-item p{
  font-size:13.5px;
  font-weight:600;
  color:#222;
  margin: 0px;
}
.wd-mono{
  font-family:'Courier New',monospace;
  letter-spacing:1px;
  background:#f7f7f9;
  padding:6px 10px;
  border-radius:6px;
  display:inline-block;
}
.wd-amount{
  font-family:Georgia,'Times New Roman',serif;
  font-size:19px;
  font-weight:700;
  color:#006b32;
}
@media (max-width:992px){
  .wd-grid{
    grid-template-columns:repeat(1,1fr);
  }
}
@media (max-width:576px){
  .wd-grid{
    grid-template-columns:1fr;
  }
  .wd-head{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
 
}

/* ====================================================
   PRIZE GRID
==================================================== */
.prize-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 40px 0;
    margin-bottom: 30px;
}

.prize-card {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    transition: .35s ease;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .25);
}

/* Prize heading */
.prize-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.prize-card-top i {
    font-size: 28px;
    color: #f4c542;
}

.prize-card-top h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}
.winning-label {
    font-size: 16px;
    color: #fff;
}

.prize-card .amount {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    font-weight: 600;
    color: #f4c542;
    margin-bottom: 22px;
}

.ticket-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.prize-card .number {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: #1c1c1c;
    border: 2px solid #006b32;
    padding: 13px 18px;
    border-radius: 8px;
    letter-spacing: 2px;
    min-width: 130px;
}
/* ====================================================
   WITHDRAW MODAL
==================================================== */
.withdraw-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:20px;
}
.withdraw-modal.active{
  display:flex;
}

.withdraw-box{
  position:relative;
  background:#fff;
  width:100%;
  max-width:600px;
  max-height:90vh;
  overflow-y:auto;
  border-radius:8px;
  padding:16px 20px;
}
.withdraw-box::-webkit-scrollbar {
    width: 6px;
}
.withdraw-box::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.withdraw-box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.withdraw-box::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.withdraw-close{
  position:absolute;
  top:18px;
  right:18px;
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f5f5;
  border-radius:50%;
  color:#555;
  cursor:pointer;
  transition:.3s;
}
.withdraw-close:hover{
  background:#1a0f2e;
  color:#fff;
}

.withdraw-head{
  text-align:center;
  margin-bottom:15px;
}
.withdraw-head i{
  font-size:34px;
  color:#f4a531;
  margin-bottom:10px;
}
.withdraw-head h3{
  font-size:20px;
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:6px;
  margin-top: 0px;
}
.withdraw-head p{
  font-size:13px;
  color:#888;
  margin: 0px;
}

.form-group{
  margin-bottom:10px;
}
.form-group label{
  display:block;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:#555;
  margin-bottom:4px;
}
.form-group label span{
  color:#aaa;
  font-weight:400;
  text-transform:none;
  letter-spacing:0;
}
.form-group input,
.form-group select{
  width:100%;
  padding:12px 14px;
  border:1.5px solid #e5e5e5;
  border-radius:8px;
  font-size:14px;
  color:#333;
  outline:none;
  transition:.3s;
}
.form-group input:focus,
.form-group select:focus{
  border-color:#f4a531;
}
.form-group input[readonly]{
  background:#f7f7f9;
  color:#888;
}

.amount-display{
  font-family:Georgia,'Times New Roman',serif;
  font-size:24px;
  font-weight:700;
  color:#f4a531;
  padding:12px 14px;
  background:#fff8ec;
  border-radius:8px;
  border:1.5px solid #ffe6b3;
}

.withdraw-submit{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px;
  background:linear-gradient(135deg,#ffd166,#f4a531);
  color:#181818;
  border:none;
  border-radius:10px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  cursor:pointer;
  margin-top:8px;
  transition:.3s;
}
.withdraw-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(244,165,49,.35);
}

.withdraw-note{
  display:flex;
  align-items:flex-start;
  gap:7px;
  font-size:11.5px;
  color:#999;
  margin-top:16px;
  line-height:1.6;
}
.withdraw-note i{
  margin-top:2px;
  color:#f4a531;
}

.scanner-group{
  text-align:center;
}
.scanner-box{
  width:160px;
  height:160px;
  margin:0 auto 10px;
  padding:4px;
  background:#fff;
  border:2px dashed #563b12;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.scanner-box img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.scanner-note{
  font-size:11.5px;
  color:#999;
}
.latest-part{
    padding: 40px 0px 0px;
}
.latest-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.container.winning{
    max-width: 1000px;
    margin: auto;
}
.container.winning{
    max-width: 1000px;
    margin: auto;
}
.certificate-wrap{
            display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 40px 0px 20px;
        }
       .certificate{
        height: auto;
        width: 720px;
        position: relative;
       }
       .certificate img{
        height: 100%;
        width: 100%;
        object-fit: contain;
       }
       .content-part-certificate h2{
         font-family:Arial, sans-serif;
         font-style: oblique;
         font-size: 18px;
         position: absolute;
        top: 46%;
        left: 36%;
       }
       .content-part-certificate h4{
         font-family:Arial, sans-serif;
         font-style: oblique;
         font-size: 18px;
         position: absolute;
        top: 59%;
        left: 45%;
       }
       .amount-win{
        font-family:Arial, sans-serif;
         font-style: oblique;
         font-size: 18px;
         position: absolute;
        top: 65.3%;
        left: 48%;
       }
       .amount-date{
        font-family:Arial, sans-serif;
         font-style: oblique;
         font-size: 18px;
         position: absolute;
        top: 72%;
        left: 48%;
       }
       .ticket-part{
           position: relative;
       }
.ticket-img{
    height: auto;
    max-width: 720px;
    margin: auto;
    position: relative;
}
.ticket-img img{
    width: 100%;
    object-fit: contain;
}
.content-part-ticket .ticket-num{
        position: absolute;
    top: 20.8%;
    font-size: 15px;
    left: 73%;
}
.content-part-ticket .date-win{
    bottom: 8.8%;
    font-size: 15px;
    left: 41.5%;
    position: absolute;
    color: #fff;
}
.withdraw-tab-content .bank-info-item{
    flex-direction: row;
    justify-content: space-between;
}
.withdraw-tabs {
    display: flex;
    gap: 8px;
    background: #f3f3f3;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 22px;
}

.withdraw-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: .3s ease;
}

.withdraw-tab i {
    margin-right: 6px;
}

.withdraw-tab.active {
    background: #006b32;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.withdraw-tab-content {
    display: none;
    animation: withdrawTabFade .3s ease;
}

.withdraw-tab-content.active {
    display: block;
}

@keyframes withdrawTabFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.withdraw-submit {
    width: 100%;
    border: none;
    background: #006b32;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.withdraw-submit:hover {
    background: #f4c542;
    color: #111;
}


/* Mobile */

@media (max-width: 600px) {

    .grid-form {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .withdraw-tabs {
        gap: 5px;
    }

    .withdraw-tab {
        font-size: 11px;
        padding: 11px 8px;
    }

    .withdraw-tab i {
        margin-right: 3px;
    }
}

.ticket-sec{
  position:relative;
  background:#fff;
  padding:10px 0 40px;
  overflow:hidden;
 
}
.ticket-sec .container{
     max-width: 800px;
  margin: auto;
}
.ticket-sec::before{
  content:'';
  position:absolute;
  top:-100px;
  left:50%;
  width:600px;
  height:300px;
  background:radial-gradient(circle, rgba(244,197,66,.12), transparent 70%);
  transform:translateX(-50%);
  pointer-events:none;
}

.ticket-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:20px;
}

.ticket-card{
  
  border:1px solid #222;
  border-radius:18px;
  padding:12px;
  backdrop-filter:blur(6px);
  transition:.4s ease;
  margin-bottom: 12px;
}
.ticket-card:hover{
  transform:translateY(-8px);
  border-color:rgba(244,197,66,.4);
  box-shadow:0 20px 45px rgba(244,197,66,.12);
}

.ticket-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}
.ticket-top img{
  width:100%;
  height:320px;
  flex:1;
  border-radius:5px;
  object-fit:fill;
  flex-shrink:0;
}
.ticket-info{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap:6px;
  margin: 20px 0px;
}
.ticket-type{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.6px;
  color:#111;
}
.ticket-price{
  font-family:Georgia,'Times New Roman',serif;
  font-size:26px;
  font-weight:700;
  color:#222;
}
.ticket-divider span{
  flex:1;
  height:1px;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0 6px, transparent 6px 11px);
}

.ticket-numbers{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding-right:4px;
}
.ticket-numbers span{
  font-family:'Courier New',monospace;
  font-size:15.5px;
  font-weight:800;
  letter-spacing:.5px;
  color:#222;
  background:rgba(255,255,255,.06);
  border:1px solid #222;
  padding:12px 18px;
  border-radius:6px;
  transition:.25s;
}
.ticket-numbers span:hover{
  background:rgba(244,197,66,.15);
  border-color:#f4c542;
  color:#f4c542;
}
.ticket-numbers::-webkit-scrollbar{
  width:5px;
}
.ticket-numbers::-webkit-scrollbar-thumb{
  background:rgba(244,197,66,.4);
  border-radius:10px;
}

@media (max-width:992px){
  .ticket-grid{
    grid-template-columns:repeat(1,1fr);
  }
}
@media (max-width:576px){
  .ticket-grid{
    grid-template-columns:1fr;
  }
  .section-title{ font-size:28px; }
}
.payment-withdraw-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 720px;
    margin: auto;
    padding: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
}
.payment-status-card {
    gap: 15px;
}

.bank-info-card {
    gap: 15px;
}

.payment-status-label {
    display: block;
    background: #006b32;
    padding: 8px 15px;
    border-radius: 6px;
    color: #fff;
    font-size:18px;
    font-weight: 600;
    width: fit-content;
}

.payment-details-heading,
.bank-info-heading {
    margin: 8px 0px 15px;
    font-size: 20px;
    color: #006b32;
    font-weight: 600;
}

.payment-info-container,
.bank-info-container {
    width: 100%;
}

.payment-info-list,
.bank-info-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-info-item,
.bank-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-bottom:1px solid #eee;
}
.bank-info-item:last-child{
    border-bottom: none;
}
.payment-info-item span,
.bank-info-item span {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.payment-info-item p,
.bank-info-item p {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 0px;
}

.bank-account-text {
    word-break: break-word;
}

.withdraw-action-card {
    align-items: flex-start;
}

.withdraw-money-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
#confetti,
  #bubbles,
  #flowers {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
  }
     .confirmation-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 18px;
    margin: 20px 0;
}

.confirmation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
}

.confirmation-row + .confirmation-row {
    border-top: 1px solid #ddd;
}

.confirmation-row strong {
    color: #111;
}

.confirmation-text {
    text-align: center;
    margin: 15px 0 20px;
    color: #555;
}

.confirmation-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cancel-payment-btn,
.confirm-payment-btn {
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.cancel-payment-btn {
    background: #e5e5e5;
    color: #333;
}

.confirm-payment-btn {
    background: #28a745;
    color: #fff;
}

.cancel-payment-btn:hover {
    background: #d5d5d5;
}

.confirm-payment-btn:hover {
    background: #218838;
}
.main-navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background: #fff;
  border-bottom:1px solid #ddd;
  box-sizing: border-box;
}

.navbar-logo img {
  width: 100px;
  height: auto;
}

.navbar-tollfree {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.tollfree-label {
  font-size: 14px;
  color: #777;
  margin-bottom: 3px;
}

.tollfree-number {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}
.tollfree-number i{
    color: #222;
}



@media (max-width: 600px) {
  .main-navbar {
    padding: 12px 20px;
  }

  .navbar-logo img {
    width: 70px;
  }

  .tollfree-number {
    font-size: 16px;
  }

  .contact-strip {
    padding: 10px 20px;
  }
}
.pdf-wrap-btn{
    display: flex;
    gap: 5px;
    align-items: center;
}
