/* ===== VARIABLES ===== */
    :root {
      --blue: #0f5ec5;
      --blue: #0066FF;
      --gray-bg: #F8F9FA;
      --text: #333333;
      --text-light: #666666;
      --white: #FFFFFF;
      --yellow: #FFC107;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --nav-width: 280px;
      --bg: #f8f9fa;
      --card: #fff;
      --text: #1a1a1a;
      --accent: #0061fe;
      --green: #00c853;
      --red: #d50000;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }

    /* ===== GLOBAL ===== */
    body {
      font-family: poppins,sans-serif ;
      color: var(--text);
      line-height: 1.6;
      background: #fff;
      overflow-x: hidden;
      transition: transform 0.3s ease;
    }
    .container { max-width: 1200px; margin: auto; padding: 0 1rem; }

    /* ===== HEADER ===== */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 0;
    }
    .logo {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: var(--blue);
      font-size: 1.15rem;
    }
    .lang-wrapper {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.9rem;
      color: var(--text-light);
    }
    #google_translate_element select {
      padding: 0.4rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 0.85rem;
    }
    .icon-btn {
      font-size: 1.3rem;
      color: var(--text);
      padding: 0.5rem;
      border-radius: 50%;
      transition: background 0.2s;
    }
    .icon-btn:hover {
       background: var(--blue); 
       color: white;
    }

    /* ===== SIDE NAVBAR ===== */
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: var(--nav-width);
      height: 100vh;
      background: var(--white);
      box-shadow: 2px 0 15px rgba(0,0,0,0.1);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 2000;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
    }
    .sidebar.open {
      transform: translateX(0);
    }
    .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }
    .sidebar-header .logo {
      font-size: 1.3rem;
    }
    .close-btn {
      font-size: 1.5rem;
      color: var(--text-light);
    }
    .nav-menu {
      list-style: none;
      flex: 1;
    }
    .nav-menu li {
      margin-bottom: 1rem;
    }
    .nav-menu a {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.8rem 1rem;
      border-radius: 8px;
      color: var(--text);
      font-weight: 500;
      transition: all 0.2s;
    }
    .nav-menu a:hover {
      background: var(--gray-bg);
      color: var(--blue);
    }
    .nav-menu i {
      width: 20px;
      text-align: center;
    }

    /* ===== OVERLAY ===== */
    .overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 1500;
    }
    .overlay.show {
      opacity: 1;
      visibility: visible;
    }

    /* ===== HERO, GALLERY, ETC.  ===== */
    .hero {
       background: var(--gray-bg); padding: 3rem 1rem; text-align: center; }
    .hero p { 
      max-width: 800px; margin: 0 auto 1.8rem; font-size: 1rem; }
    .cta-group { 
      display: flex; gap: 1rem; justify-content: center; align-items: center;
       flex-wrap: wrap; margin-bottom: 1.5rem; }
    .btn-primary {
       background: var(--blue);
        color: white; 
        padding: 0.9rem 1.8rem;
       border-radius: 8px;
         font-weight: 600;
        text-transform: uppercase;
         letter-spacing: 0.5px;
         transition:
           background 0.2s; }
    .btn-primary:hover {
       background: #0055cc;
       }
    .btn-video {
       background: white;
        border: 2px solid var(--blue);
         width: 52px;
         height: 52px; 
         border-radius: 50%;
         color: var(--blue);
          font-size: 1.3rem;
           display: flex;
            align-items: center;
            justify-content: center; 
            transition: all 0.2s; }
    .btn-video:hover { 
      background: var(--blue);
       color: white; }
    .video-text {
       font-weight: 600; 
       color: var(--text-light); }

    .support { 
      display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--text-light); font-size: 0.95rem;
      flex-wrap: wrap; }
    .avatars { display: flex; margin-right: 0.5rem; }
    .avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid white; margin-left: -12px; }
    .avatars img:first-child { margin-left: 0; }
    .support a { color: var(--blue); text-decoration: underline; }

    .gallery {
       position: relative;
        display: flex;
         justify-content: center;
          gap: 2rem;
           margin: 4rem 0 6rem;
            flex-wrap: wrap;
             padding: 0 1rem; 
            }
    .gallery img {
       width: 45%; 
       max-width: 420px;
        height: 520px; 
       object-fit: cover;
        border-radius: var(--radius); 
       box-shadow: var(--shadow); 
       clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
      }
    .stat-badge { 
      position: absolute; bottom: -32px; 
      left: 50%; transform: translateX(-50%);
       background: white; 
       padding: 0.9rem 1.6rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
         font-weight: 700; color: var(--blue); 
         display: flex; align-items: center;
          gap: 0.6rem; 
           z-index: 10;
           }
    .coin { 
      position: absolute; bottom: -55px;
       left: 50%; transform: translateX(-50%);
        font-size: 1.8rem; color: var(--yellow); }

    .partners { display: flex; justify-content: center;
       gap: 2.5rem; flex-wrap: wrap; margin: 5rem 0; filter: grayscale(100%);
        opacity: 0.7; }
    .partners img { height: 30px; }

    .extra { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; padding: 0 1rem; }
    .extra img { width: 45%; max-width: 380px; height: 420px; object-fit: cover; border-radius: var(--radius); 
      box-shadow: var(--shadow); 
    }
     /* ===== NEW: ABOUT US SECTION ===== */
     .container h2{
      color: var(--blue);
       font-size: small;
       text-transform: uppercase;
       margin: 2rem;
     }
    
    .container h1 {
      font-size: 2.2rem;
      font-weight: 700;
      margin: 2rem;
      color: var(--text);
      white-space: normal;
    }
    .container p {
      max-width: 800px;
      margin: 5rem;
      color: var(--text-light);
      line-height: 22px;
      white-space: normal;
    }
    .features {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 600px;
      margin: 0 auto 2rem;
    }
    .feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      text-align: left;
    }
    .feature-icon {
      width: 40px;
      height: 40px;
      background: var(--gray-bg);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--blue);
    }
    .feature h3 {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
      color: var(--text);
    }
    .feature p {
      font-size: 0.95rem;
      color: var(--text-light);
      margin: 0;
    }
    .btn-readmore {
      background: var(--blue);
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 8px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ===== NEW: CURRENCY TOOLS SECTION ===== */
    .currency-tools {
      padding: 4rem 1rem;
      background: var(--gray-bg);
      text-align: center;
    }
    .currency-tools h2 {
      font-size: 1.1rem;
      text-transform: uppercase;
      color: var(--blue);
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }
    .currency-tools h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }
    .tools-grid {
      display: flex;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      scroll-behavior: smooth;
      max-width: 1000px;
      margin: 100px auto;
      overflow-x: auto;
    }
    .tools-grid::-webkit-scrollbar{
      display: none;
    }
    .tool-card {
      flex: 0 0  300px;
      background: var(--white);
      padding: 1rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      scroll-snap-align:start ;
    }
    .tool-icon {
      width: 70px;
      height: 70px;
      background: var(--gray-bg);
      border-radius: 60%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--blue);
    }
    .tool-card h3 {
      font-size: 1.2rem;
      color: var(--text);
      margin-left: 80px;
      margin-top:-80px ;
    }
    .tool-card p {
      font-size: 0.95rem;
      color: var(--text-light);
      flex: 1;
    }
    .tool-link {
      color: var(--blue);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }
     .tool-card:hover{
      transform: translateY(-10px);
      color: var(--white);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    /* ===== WHY CHOOSE US – 3 IMAGES ===== */
.why-choose { padding: 5rem 1rem; background:#fff; }
.why-grid {
  display:grid;
  grid-template-columns:1.2fr 0.8fr;  /* Adjusted ratio to give more space to text */
  gap:3rem;
  max-width:1200px;
  margin:auto;
  align-items: center;
}

/* ----- Text ----- */
.why-text h2 {
  font-size:0.9rem;
  text-transform:uppercase;
  color:var(--blue);
  letter-spacing:1.5px;
  margin-bottom:0.5rem;
}
.why-text h1 { font-size:2.2rem; font-weight:700;
   color:#222; 
   margin-bottom:1rem; 
  }
.why-text p { color:#555; 
  margin-bottom:2rem;
   line-height:1.7;
  
  }

.features-list { display:flex; flex-direction:column;
   gap:1rem;
   }
.feature-item {
  display:flex; align-items:center; gap:0.8rem;
  font-size:1.05rem; color:#333;
}
.check-icon {
  width:28px; height:28px;
  background:var(--gray-bg); color:var(--blue);
  border-radius:50%;
  display:flex; align-items:center; 
  justify-content:center;
  font-size:0.9rem; font-weight:bold;
}

/* ----- 3 Images ----- */
.why-images {
  display:flex;
  justify-content:flex-end;  /* Align images to the right */
  gap: 1rem;
  flex-wrap:wrap;
  align-self: start;

}

/* Image 1 – biggest, centered */
.img-1 {
  width:45%; max-width:320px;
  height:380px; object-fit:cover;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
  z-index:2;
   margin-top: -150px;
}

/* Image 2 – top‑right */
.img-2 {
  width:38%; max-width:260px;
  height:340px; object-fit:cover;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  align-self:flex-start;
  margin-top: -450px;
  margin-right: -200px;
  z-index:1;
}

/* Image 3 – bottom‑left */
.img-3 {
  width:38%; max-width:260px;
  height:400px; object-fit:cover;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  align-self:flex-end;
    margin-left:-75px;
   margin-top: -100px;
  z-index:1;
}
/* btc chart  */
.contain {
  width: 80%; 
  max-width: 1200px;
   margin: 2rem auto;
   background: var(--white);
  padding:0 1rem; 
}
#rates-table {
  width: 100% !important;     /* force full width */
  table-layout: fixed;        /* equal columns */
  border-collapse: collapse;
}

/* Give each column a fair share */
#rates-table td:nth-child(1) { width: 30%; }  /* Currency + Flag */
#rates-table td:nth-child(2) { width: 18%; }  /* Amount */
#rates-table td:nth-child(3) { width: 14%; }  /* Change */
#rates-table td:nth-child(4) { width: 20%; }  /* Chart */
#rates-table td:nth-child(5) { width:  18%; }  /* Send */

/* Optional: make text bigger when wide */
#rates-table td {
  padding: 1rem;
  font-size: 1rem;
  text-align: left;
}
.amount { font-size: 1.2rem; font-weight: 600; }
.chart{
  width: 60px;
  height: 24px;
}

    header {
       text-align: center; margin-bottom: 1.5rem; }
    h1 { font-size: 1.7rem; font-weight: 600; }
    p { color: #555; font-size: 0.95rem; }

    .toolbar {
      display: grid;
      grid-template-columns: 30% 18% 14% 20% 18%;
       justify-content: space-between; 
       align-items: center;
      background: #222; color: #fff; 
      padding: 0.75rem 1rem;
       border-radius: 8px;
      margin-bottom: 1rem;
       font-size: 0.9rem;
    }
    .toggle {
      display: flex; align-items: center; gap: 0.5rem;
    }
    .switch {
      position: relative; 
      width: 36px;
       height: 20px;
    }
    .switch input { opacity:0; width:0; height:0; }
    .slider {
      position: absolute; cursor: pointer; inset:0;
      background: #555; border-radius: 20px; transition: .3s;
    }
    .slider:before {
      position: absolute; content:""; height:16px; width:16px;
      left:2px; bottom:2px; background:#fff; border-radius:50%;
      transition:.3s;
    }
    input:checked + .slider { background: var(--accent); }
    input:checked + .slider:before { transform:translateX(16px); }

    table { width:80%; border-collapse: collapse; background: var(--card); border-radius:8px;
       overflow:hidden;
       box-shadow:0 2px 8px rgba(0,0,0,.08); 
      }
    th { background:#f1f3f5; text-align:left; padding:0.75rem 1rem; font-weight:600; 
      font-size:0.9rem; 
    }
    td { padding:0.75rem 1rem;
       vertical-align: middle; 
       border-top:1px solid #eee; 
    }
    .flag { width:24px; height:24px;
       border-radius:50%; object-fit:cover;
        margin-right:0.75rem; 
     vertical-align:middle;
     }
    .currency { display:flex;
       align-items:center; 
      font-weight:500; 
    }
    .amount { font-weight:600; font-size:1.1rem; 
    }
    .change { font-size:0.85rem;
     }
    .positive { color:var(--green);
     }
    .negative { color:var(--red);
     }
  
    .send-btn {
      background:var(--accent); color:#fff; border:none;
       border-radius:6px;
      padding:0.4rem 0.75rem; font-size:0.85rem; cursor:pointer;
       transition:.2s;
    }
    .send-btn:hover { background:#0050cc; }

    .footer {
      display:flex; justify-content:space-between; align-items:center;
      margin-top:1rem; font-size:0.8rem; color:#777;
    }
    .add-currency {
      color:var(--accent); text-decoration:none; font-weight:500;
    }
    .add-currency:hover {
       text-decoration:underline;
      
     }
     /* ====== BENEFITS SECTION ====== */
.benefits {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}

.benefits .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 1.5rem;
  color: #0061fe;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
  gap: 2rem;
}
.benefit-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-item:hover {
  background: #0061fe;           /* Blue background */
  color: white !important;       /* Text white */
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 97, 254, 0.3);
}

/* Ensure icon and text turn white on hover */
.benefit-item:hover img {
  filter: brightness(0) invert(1);  /* Makes icon white */
}

.benefit-item:hover h4 {
  color: white;
}
/* ====== CURRENCY PROFILE ====== */
.currency-section {
  text-align: center;
  padding: 4rem 1rem;
  background: #f9fbff;
}

.sub-title {
  color: #0047ff;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.main-title {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.currency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.currency-card {
  background: #fff;
  color: #0c0c0c;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.3s ease;
}


.currency-card:hover {
  background: #0941b9;
  transform: translateY(-5px);
}

.currency-card:hover p{
  color: #fff;
}h


.currency-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* ====== REVIEWS - HORIZONTAL SCROLL ====== */
.reviews {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}
.reviews h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Scroll container */
.reviews-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.reviews-scroll::-webkit-scrollbar { display: none; }
.reviews-scroll { -ms-overflow-style: none; scrollbar-width: none; }

/* Each card */
.review-card {
  flex: 0 0 calc(50% - 0.75rem);   /* 2 cards visible */
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  scroll-snap-align: start;
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.review-header h4 { margin: 0; font-size: 1.1rem; }
.review-header p { margin: 0; color: #666; font-size: 0.9rem; }
.quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: #0061fe;
  font-family: Georgia, serif;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s;
}
.dot.active {
   background: #0061fe; 
  }

/* ====== REVIEWS SECTION ====== */
.reviews {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}
.reviews h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  text-align: left;
  position: relative;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.review-header h4 { margin: 0; font-size: 1.1rem; }
.review-header p { margin: 0; color: #666; font-size: 0.9rem; }
.quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: #0061fe;
  font-family: Georgia, serif;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.dot.active { background: #0061fe; }

/* ====== BLOG SECTION ====== */
.blog {
  padding: 4rem 0;
  background: white;
  text-align: center;
}
.blog p{
  color: var(--blue);
  
  margin: right -300px;
  font-weight: 600;
}
.blog h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  align-items: center;
  color: var(--text);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  text-align: left;
  transition: transform .3s;
}


.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.tag {
  display: inline-block;
  background: #0061fe;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin: 1rem 1rem 0.5rem;
}
.blog-card .date {
  margin: 0 1rem;
  font-size: 0.85rem;
  color: #888;
}
.blog-card .date span { color: #0061fe; }
.blog-card h3 {
  margin: 0.8em 1rem 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}
.blog-card :hover{
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 12px 24x rgba(0,0,0,0.12);
   
}
/* ====== FOOTER ====== */
.footers{
  background:var(--text);
  color: #ccc;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: #0061fe;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #0061fe;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #aaa;
}
.contact-list i {
  color: #0061fe;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-icons a {
  width: 36px;
  height: 36px;
  background: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: #0061fe;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #0061fe;
  font-size: 0.9rem;
}

/* ====== HERO IMAGE (HALF HEIGHT + DARK OVERLAY) ====== */
.hero-image {
  height: 50vh;
  min-height: 300px;
  background: url('Images/yola.jpeg') center/cover no-repeat;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}
.hero-image h1 {
  color: white;
  font-size: 2.5rem;
  margin: 0;
}
.breadcrumb {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #ccc;
}
.breadcrumb a {
  color: #0061fe;
  text-decoration: none;
}
.breadcrumb span {
  margin: 0 0.5rem;
}

/* ====== $300 BONUS BANNER ====== */
.bonus-banner {
  background: #eff0f3;
  padding: 2rem 1rem;
  text-align: center;
}
.bonus-banner h2 {
  font-size: 1.4rem;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.5;
}

/* ====== MAIN CONTENT ====== */
.page-content {
  padding: 3rem 1rem;
  background: white;
}
.page-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}
.page-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #444;
  font-size: 1rem;
}
.feature-list i {
  color: #0061fe;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
/* ====== AVAILABLE ON PLATFORMS ====== */
.available-on {
  padding: 3rem 0;
  background: #f4f5f7;
  text-align: center;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.platform-item {
  background: white;
  padding: 1.2rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.platform-item i {
  font-size: 1.8rem;
  color: #0c0c0c;
}

.platform-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.platform-item i:hover {
  color: white;
}


.platform-item:hover {
  background: #0044cc;
  color: white;
}
/* ====== OUR APP SECTION ====== */
.app-section {
  padding: 4rem 0;
   background: #f4f5f7;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.app-mockups img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.app-content {
  padding: 1rem;
}

.app-content .section-label {
  color: #0061fe;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.app-content h2 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.app-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.app-stats {
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 2rem;
}

.app-stats i {
  color: #0061fe;
  margin-right: 0.5rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-btn {
  background: #000;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  min-width: 180px;
}

.download-btn i {
  font-size: 2rem;
}

.download-btn div span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.download-btn div strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.google-play {
  background: #000;
}

.google-play:hover {
  background: #333;
  transform: translateY(-3px);
}

.app-store {
  background: #007aff;
}

.app-store:hover {
  background: #005ecb;
  transform: translateY(-3px);
}
/* ====== CARD DETAILS SECTION ====== */
.card-details {
  padding: 2rem 0;
  background: #f8f5f0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.card-details h2 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card-details i {
  color: #0061fe;
}

.card-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.card-logos img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(0);
  transition: all 0.3s;
}

.card-logos img:hover {
  transform: scale(1.1);
}

/* ====== APPLY SECTION ====== */
.apply-section {
  padding: 4rem 0;
  background: #fdf8f3;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.apply-image img {
  width: 50%;
  max-width: 400px;
  border-radius: 20px;
  
}

.apply-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.apply-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-apply {
  background: #0061fe;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(0, 97, 254, 0.3);
}

.btn-apply:hover {
  background: #0044cc;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 97, 254, 0.4);
}
/* ====== CONTACT SECTION ====== */
.contact-section {
  padding: 4rem 0;
  background: #f8f5f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0061fe;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.info-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ====== CONTACT FORM ====== */
.contact-form-area {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9f9f9;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0061fe;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 97, 254, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #0061fe;
  cursor: pointer;
}

.checkbox-label a {
  color: #0061fe;
  text-decoration: underline;
}

.btn-message {
  background: #0061fe;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(0, 97, 254, 0.3);
}

.btn-message:hover {
  background: #0044cc;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 97, 254, 0.4);
}

.support-agent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  pointer-events: none;
}

.support-agent img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.1));
  
}

/* ====== REGISTER PAGE ====== */
.register-body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  overflow: hidden;
}

.register-container {
  display: flex;
  height: 100vh;
}

/* LEFT: Fixed Blue Panel */
.register-left {
  flex: 1;
  background: #0061fe;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding: 2rem;
  text-align: center;
}

.left-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.left-content h2 {
  font-size: 2.2rem;
  margin: 1.5rem 0;
}

.left-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* RIGHT: Scrollable Form */
.register-right {
  flex: 1;
  margin-left: 50%;
  background: #fdf8f3;
  overflow-y: auto;
  padding: 3rem 5rem;
}

.register-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.register-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a2e;
}

/* Split First Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-group {
  margin-bottom: 1rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  font-size: 1rem;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #0061fe;
  background: white;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #0061fe;
  margin: 1.5rem 0;
}

.btn-submit {
  width: 100%;
  background: #0061fe;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #0044cc;
  transform: translateY(-3px);
}

.signin-link {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
}

.signin-link a {
  color: #0061fe;
  text-decoration: none;
  font-weight: 600;
}
.logoe-small {
  text-align: center;
  margin-bottom: 1rem;
}
.logoe-small h1 {
  font-size: 1.8rem;
  color: #1a1a2e;
}
.logoe-small i {
  color: #0061fe;
}
/* ====== DASHBOARD LAYOUT ====== */
.dashboard-body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fa;
  display: flex;
  min-height: 100vh;
}

.sidebars {
  width: 260px;
  background: #0061fe;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.sidebars-header h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 3rem;
}

.sidebars-menu {
  list-style: none;
  padding: 0;
}

.sidebars-menu li {
  margin: 0.5rem 0;
}

.sidebars-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 12px;
  transition: all 0.3s;
}

.sidebars-menu a:hover,
.sidebars-menu li.active a {
  background: rgba(255,255,255,0.2);
  color: white;
}

.dashboard-main {
  margin-left: 260px;
  padding: 2rem;
  width: 100%;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background: #fdf8f3;
  padding: 1.5rem;
  border-radius: 16px;
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.btn-topup {
  background: white;
  border: 2px solid #0061fe;
  color: #0061fe;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-send {
  background: #1a1a2e;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

/* Balance Card */
.balance-card {
  background: #0061fe;
  color: white;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.balance-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.3);
}

.balance-info h3 { margin: 0; opacity: 0.9; }
.balance-info h1 { font-size: 2.8rem; margin: 0.5rem 0; }

.account-number {
  background: rgba(255,255,255,0.2);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1rem;
}

.account-number button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.balance-actions {
  display: flex;
  gap: 1rem;
}

.btn-small {
  background: white;
  color: #0061fe;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-small.outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

.stat-box h4 { margin: 0 0 0.5rem; color: #333; }
.stat-box p { margin: 0 0 1rem; color: #777; font-size: 0.9rem; }
.stat-box strong { font-size: 1.6rem; color: #0061fe; 
}

/* ====== RECENT TRANSACTIONS SECTION ====== */
.transactions-section {
  margin-top: 3rem;
}
.section-titles {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.table-containers {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.transactions-table {
  width: 100%;
  border-collapse: collapse;
}
.transactions-table th {
  background: #f8f9fa;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
}
.transactions-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #eee;
}
.transactions-table tr:hover {
  background: #f8f9fa;
}
.icon i {
  font-size: 1.3rem;
}
.text-danger { color: #e74c3c; }
.text-success { color: #27ae60; }
.amount {
  font-weight: 600;
  font-size: 1.1rem;
}
.amount.negative { color: #e74c3c; }
.amount.positive { color: #27ae60; }
.tag {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.tag.debit    { background: #fdf2f2; color: #e74c3c; }
.tag.credit   { background: #f2fdf6; color: #27ae60; }
.tag.rejected { background: #fdf2f2; color: #e74c3c; }
.tag.processed{ background: #e8f5e9; color: #27ae60; }

/* ====== DEPOSIT PAGE ====== */
.page-header {
  margin-bottom: 2rem;
}
.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: var(--gray);
}

.deposit-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.deposit-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.method-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.method-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ccc;
}
.method-card.active,
.method-card:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-5px);
}
.method-card.active i,
.method-card:hover i {
  color: white;
}

.deposit-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.deposit-summary {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1.1rem;
}
.deposit-summary strong {
  color: var(--primary);
}
.deposit-btn {
  width: 100%;
  padding: 1.2rem !important;
  font-size: 1.2rem !important;
}


    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .gallery img, .extra img { 
        width: 80%; height: auto; }
      .stat-badge { position: static; transform: none; margin: 2rem auto; }
      .coin { display: none; }
      .why-grid{grid-template-columns:1fr; text-align:center;}
      .why-images{justify-content:center; gap:1rem;}
      .img-1,.img-2,.img-3{width:50%; height:auto;}
       .img-2{margin-top:0;}
        .img-3{margin-bottom:0;}
          .currency-grid {
           grid-template-columns: 1fr;
         .benefits-grid{
          grid-template-columns: 1fr;
         gap: 2rem;
  }
   .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .logo-col {
    grid-column: 1 / -1;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }

}
.app-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-mockups img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }
  .download-buttons {
    justify-content: center;
  }
  .apply-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .apply-image img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .support-agent {
    position: static;
    width: 120px;
    margin: 2rem auto 0;
  }
  .register-container {
    flex-direction: column;
  }
  .register-left {
    position: relative;
    width: 100%;
    height: 40vh;
  }
  .register-right {
    margin-left: 0;
    padding: 2rem 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .sidebars { width: 80px; padding: 1rem 0.5rem; }
  .sidebars-header h2, .sidebar-menu a span { display: none; }
  .sidebars-menu a { justify-content: center; }
  .dashboard-main { margin-left: 80px; }
  .balance-card { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
.deposit-container {
    grid-template-columns: 1fr;
  }

  .table-container {
    overflow-x: auto;
  }
  .transactions-table {
    min-width: 800px;
  }


    
    @media (max-width: 600px) {
      .hero { padding: 2rem 1rem; }
      .cta-group { flex-direction: column; align-items: center; }
      .btn-primary { width: 100%; max-width: 280px; }
      .support { flex-direction: column; text-align: center; }
       .review-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: 280px;}
     platform-grid {
    grid-template-columns: 1fr 1fr;
  }
    .reviews-grid, blog-grid{ 
      grid-template-columns: 1fr; }

  .hero-image { height: 40vh; }
  .hero-image h1 { font-size: 2rem; }
  .bonus-banner h2 { font-size: 1.2rem;
   }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-list li {
    justify-content: center;
  }
    }