* body {
  background: #0b1220;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* BANNER */
.banner {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  padding: 60px;
  color: white;
  overflow: hidden;

  background:
    linear-gradient(to right, rgba(5,15,25,0.95) 35%, rgba(5,15,25,0.6) 60%, transparent 80%),
    url('./images/bg.png') center/cover no-repeat;
}
.testimonials-section {
  padding: 90px 20px;
  text-align: center;
  color: white;
  background: radial-gradient(circle at center, #0c1b3a 0%, #050914 70%);
  position: relative;
  overflow: hidden;
}

/* CONTENT */
.content {
  max-width: 520px;
  z-index: 2;
}

.content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.highlight {
  color: #ffd84d;
}

.subtext {
  margin: 18px 0;
  font-size: 17px;
  color: #cfd8dc;
}

/* BUTTON */
.cta-btn {
  background: linear-gradient(90deg, #00c853, #76ff03);
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 255, 100, 0.3);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

/* BADGES CONTAINER */

.badges {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 🔥 GLASS BADGE */
.badges span {
  padding: 8px 14px;
  font-size: 13px;
  color: #b9f6ca;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  display: inline-flex;
  align-items: center;
  gap: 6px;

  /* ANIMATION START STATE */
  opacity: 0;
  transform: translateY(20px);

  animation: fadeSlideUp 0.6s ease forwards;
}

/* ICON STYLE */
.badges i {
  color: #00ff88;
  font-size: 12px;
}

/* DELAY FOR EACH BADGE */
.badges span:nth-child(1) {
  animation-delay: 0.2s;
}
.badges span:nth-child(2) {
  animation-delay: 0.4s;
}
.badges span:nth-child(3) {
  animation-delay: 0.6s;
}

/* HOVER */
.badges span:hover {
  background: rgba(0, 255, 120, 0.1);
  border-color: rgba(0, 255, 120, 0.4);
  transform: translateY(-3px);
}

/* 🔥 KEYFRAMES */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PLAYERS */
.players {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}

.players img {
  height: 110%;
  object-fit: contain;
}


@media (max-width: 768px) {

  .banner {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.1)),
      url('./images/bg.jpg') center top / cover no-repeat;

    padding: 30px 20px;
    height: auto;
    flex-direction: column;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b1220;
}

/* ===== PREMIUM BACKGROUND ===== */
.secure-section {
  padding: 90px 20px;
  text-align: center;
  color: white;

  background: radial-gradient(circle at center, #0c1b3a 0%, #050914 70%);
  position: relative;
  overflow: hidden;
}
 /*=======================================================================================================
                         secure section
============================================================================================================= =========*/

/* SECTION BORDER LINE — compact */
.secure-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%; /* was 70% */
  height: 2px;
  background: linear-gradient(to right, transparent, #00ffcc, transparent);
  opacity: 0.6;
}

/* TITLE — compact spacing + smaller size */
.title {
  font-size: 24px;        /* was 28px */
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;    /* was 60px */
}

.title span {
  width: 60px; /* was 80px */
  height: 1px;
  background: linear-gradient(to right, transparent, #6f7ea3, transparent);
}

/* CARD WRAPPER — smaller gap */
.cards {
  display: flex;
  justify-content: center;
  gap: 22px; /* was 40px */
  flex-wrap: wrap;
}

/* 🔥 COMPACT GLASS CARD */
.card {
  width: 250px;          /* was 300px */
  padding: 22px 18px;    /* was 35px 25px */
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.55);

  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* ICON BOX — smaller */
.icon {
  width: 55px;       /* was 70px */
  height: 55px;
  margin: 0 auto 15px; /* was 20px */
  border-radius: 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;  /* was 28px */
}

/* ICON COLORS */
.shield {
  background: rgba(0, 255, 150, 0.15);
  color: #00ffa2;
}

.lock {
  background: rgba(0, 255, 120, 0.15);
  color: #00ff88;
}

/* TEXT — smaller + tighter */
.card h3 {
  font-size: 15px;    /* was 17px */
  margin-bottom: 10px;
}

.check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.check i {
  color: #00ff88;
}

.check p {
  font-size: 13px;     /* was 14px */
  color: #aeb8d0;
  line-height: 1.4;
}

/* ===== PAYMENT LOGOS — reduced size ===== */
.payment-logos {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px; /* was 20px */
}

.payment-logos img {
  height: 38px; /* was 50px */
}

/* FOOTER TEXT WITH LINES — compact */
.footer-text {
  margin-top: 28px;     /* was 50px */
  font-size: 13px;      /* was 14px */
  color: #cfd6ea;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.9;
}

/* SIDE LINES — smaller */
.footer-text span {
  width: 60px; /* was 80px */
  height: 1px;
  background: linear-gradient(to right, transparent, #6f7ea3, transparent);
}

/* =============== MOBILE RESPONSIVE =============== */
@media (max-width: 768px) {

  .cards {
    flex-direction: row;     /* was column */
    flex-wrap: wrap;         /* allow wrapping into rows */
    justify-content: center;
    gap: 18px;
  }

  .card {
    width: 48%;              /* 2 cards per row */
    padding: 20px 16px;
  }

  .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .payment-logos img {
    height: 32px;
  }
}


/* ======================================================================================================
                         NAVBAR CONTAINER
============================================================================================================= =========*/

/* NAVBAR BASE */
.navbar {
    width: 100%;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 999;
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.nav-logo {
    height: 36px;          /* original navbar height */
    overflow: visible;     /* allow large logo without expanding navbar */
}

.nav-logo img {
    height: 144px;         /* 4x size */
    width: auto;
    margin-top: -54px;     /* perfectly center the oversized logo */
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #d3d3d3;
    font-size: 17px;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

/* LOGIN BUTTON */
.login-btn {
  background: linear-gradient(90deg, #00c853, #76ff03);
  padding: 10px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 255, 100, 0.3);
  transition: all 0.3s ease;
}

.login-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE */
.menu-icon {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* MOBILE DROPDOWN */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    padding: 15px;
    text-align: center;
}

.mobile-menu a {
    padding: 12px 0;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.mobile-login {
    margin-top: 10px;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 820px) {
    .nav-links,
    .nav-login {
        display: none;
    }

    .menu-icon {
        display: block;
    }
}
/* ======================================================================================================
                         HOW IT WORKS — MATCHES SECURE SECTION UI
============================================================================================================= =========*/

/* SECTION WRAPPER — Reduced Height */
.hiw-section {
  padding: 45px 20px; /* was 90px */
  text-align: center;
  color: white;
  background: radial-gradient(circle at center, #0c1b3a 0%, #050914 70%);
  position: relative;
  overflow: hidden;
}

/* Bottom Glow */
.hiw-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ffcc, transparent);
  opacity: 0.6;
}

/* Title Bar — Smaller Spacing */
.hiw-section .title {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px; /* was 60px */
}

.hiw-section .title span {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #6f7ea3, transparent);
}

/* CARD WRAPPER — Tighter Spacing */
.hiw-cards {
  display: flex;
  justify-content: center;
  gap: 22px; /* was 40px */
  flex-wrap: wrap;
}

/* COMPACT GLASS CARDS */
.hiw-card {
  width: 250px; /* smaller width */
  padding: 22px 18px; /* was 35px 25px */
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);

  transition: 0.25s ease;
}

.hiw-card:hover {
  transform: translateY(-6px);
}

/* SMALLER ICON */
.hiw-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;

  border-radius: 50%;
  border: 2px solid #00ff99;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00ff99;
  font-size: 22px;
  font-weight: 700;

  background: rgba(0, 255, 100, 0.1);
  backdrop-filter: blur(4px);
}

/* HEADINGS — More Compact */
.hiw-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* TEXT — Smaller + Tighter */
.hiw-card p {
  font-size: 13px;
  line-height: 1.4;
  color: #b7c4dd;
}

/* -----------------------------------------RESPONSIVE — Mobile Compact Version----------------------------------------- */
@media (max-width: 768px) {

  .hiw-section {
    padding: 35px 15px;
  }

  .hiw-cards {
    flex-direction: row;        /* keep cards in a row */
    flex-wrap: wrap;            /* allow wrapping */
    justify-content: center;
    gap: 18px;
  }

  .hiw-card {
    width: 48%;                 /* 2 cards per row (half width) */
    padding: 20px 16px;
  }

  .hiw-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ======================================================================================================
                            WHY CHOOSE US 
============================================================================================================= =========*/

.why-section {
    padding: 45px 20px; /* was 90px */
  text-align: center;
  color: white;
  background: radial-gradient(circle at center, #0c1b3a 0%, #050914 70%);
  position: relative;
  overflow: hidden;
}
/* Bottom Glow */
.why-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ffcc, transparent);
  opacity: 0.6;
}
/* TITLE — smaller + tighter */
.why-title {
    font-size: 26px;            /* was 32px */
    font-weight: 700;
    margin-bottom: 25px;        /* was 40px */
}

/* FEATURES BOX — compact */
.why-features {
    max-width: 850px;
    margin: 0 auto;
    padding: 18px 20px;         /* was 25px 30px */
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;                  /* was 25px */
}

.why-item i {
    font-size: 22px;            /* was 26px */
    color: #00ff9d;
}

.why-item p {
    font-size: 13px;            /* was 15px */
    color: #d8e2ff;
}


/* --------------------------------------- PREMIUM GLASS STATS GRID---------------------------------------- */
.stats-box {
    margin: 28px auto;
    max-width: 900px;

    padding: 22px 20px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(14px);

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;

    /* soft outer glow */
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* ---------------------------------------INDIVIDUAL STAT CARD---------------------------------------- */
.stat {
    padding: 16px 10px;
    border-radius: 14px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle inner-glass highlight */
.stat::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 45%;
    background: radial-gradient(circle at top, rgba(255,255,255,0.06), transparent);
    opacity: 0.4;
}

/* Hover effect — cleaner and more premium */
.stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 18px rgba(255, 227, 123, 0.25);
}

/* ---------------------------------------OPTIONAL ICONS---------------------------------------- */

.stat .icon {
    font-size: 28px;
    color: #ffe37b;
    margin-bottom: 4px;

    opacity: 0.85;
    filter: drop-shadow(0 0 5px rgba(255, 227, 123, 0.2));
}

/*---------------------------------------STAT NUMBER (main highlight)---------------------------------------- */

.stat h3 {
    font-size: 30px;
    font-weight: 700;

    background: linear-gradient(90deg, #ffe37b, #fff1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 0.5px;
    margin-bottom: 2px;

    filter: drop-shadow(0 0 6px rgba(255, 235, 156, 0.35));
}

/*---------------------------------------STAT LABEL (description)---------------------------------------- */

.stat p {
    font-size: 14px;
    color: #c9d4ea;
    max-width: 170px;
    line-height: 1.3;
}

/* ---------------------------------------RESPONSIVE: TABLETS---------------------------------------- */

@media (max-width: 300px) {
    .stats-box {
        padding: 18px 16px;
        gap: 16px;
    }

    .stat h3 {
        font-size: 26px;
    }

    .stat p {
        font-size: 13px;
    }
}

/* ---------------------------------------RESPONSIVE: SMALL MOBILE---------------------------------------- */
@media (max-width: 220px) { 
    .stats-box {
        grid-template-columns: repeat(2, 1fr) !important; /* force 2 columns */
        gap: 14px;
    }

    .stat {
        padding: 14px 10px;
    }
}

/*--------------------------SMALL + RESPONSIVE TESTIMONIAL CARDS (LOW)------------------------------------------- */


.testimonials.small-t {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* more compact */
    gap: 10px;                     /* was 14px */
    max-width: 850px;
    margin: 22px auto 0;           /* was 30px */
}

/* ULTRA-COMPACT t-card */

.small-t .t-card {
    padding: 8px 10px;             /* was 10px 12px */
    height: 54px;                   /* was 60px */
    border-radius: 8px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    gap: 8px;                       /* was 10px */
    overflow: hidden;
}

/* Smaller Avatar */

.small-t .t-card img {
    width: 32px;                    /* was 38px */
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Text */

.small-t .t-text {
    font-size: 11px;                /* was 12px */
    line-height: 1.1;
    color: #dfe7f8;
}

.small-t .t-name {
    font-size: 10px;                /* was 11px */
    margin-top: 2px;
    color: #00ff9d;
}

/* -----------------------------------------MOBILE — stack & auto height------------------------------------------ */


@media (max-width: 768px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 15px;
    }

    .stats-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .small-t .t-card {
        height: auto;
        padding: 10px;
        gap: 8px;
    }

    .small-t .t-card img {
        width: 28px;
        height: 28px;
    }

    .small-t .t-text {
        font-size: 10px;
    }

    .small-t .t-name {
        font-size: 9px;
    }
}
