/* Poppins Regular */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* Poppins Medium */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
       url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* Poppins SemiBold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

/* Poppins Bold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
       url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
       font-family: 'Poppins', sans-serif;
        }

    
    /* ---------- Root colors & fonts ---------- */
:root {
   --brand-dark: #181818;
  --accent: #d1e000;
  --light: #CCD6F6;
  --lighter: #8892B0;
  --bg: #F5F5F5;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.06);
  --max-width: 1200px;
}

/* All hyperlinks hover effect */
a:hover {
  color: var(--accent) !important;
}


/* ===== PRELOADER BASE ===== */
.handle-preloader {
  position: fixed;
  inset: 0;
  background-color: rgb(45 46 36);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999999;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.handle-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* ===== CLOSE BUTTON ===== */
.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 18px;
  background: #d1e000;
  color: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.preloader-close:hover {
  transform: scale(1.15) rotate(10deg);
}

/* ===== ORBIT CONTAINER ===== */
.orbit-container {
  position: relative;
  width: 170px;
  height: 170px;
  margin: auto;
  animation: spin 6s linear infinite;
}

.orbit-item {
  position: absolute;
  width: 40px;
  height: 40px;
}

.orbit-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.orbit-item:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

.coin-icon {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== LOADING TEXT ===== */
/* CONTAINER */
.txt-loading {
  text-align: center;
  user-select: none;
  perspective: 1200px;
  margin-top: 15px;
}

/* LETTER STYLING */
.letters-loading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: inline-block;
  font-size: 42px;
  letter-spacing: 8px;
  color: #cdd400;
  position: relative;
  transform-style: preserve-3d;
  margin: 0 3px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* FLIP EFFECT LAYER */
.letters-loading:before {
  content: attr(data-text-preloader);
  position: absolute;
  inset: 0;
  color: #ffffff;
  text-shadow: 0 0 10px #faff9e, 0 0 20px #faff9e;
  animation: flip3D 1.6s infinite ease-in-out;
  transform-origin: center;
}

/* DELAY PER LETTER */
.letters-loading:nth-child(1):before { animation-delay: 0s; }
.letters-loading:nth-child(2):before { animation-delay: 0.12s; }
.letters-loading:nth-child(3):before { animation-delay: 0.24s; }
.letters-loading:nth-child(4):before { animation-delay: 0.36s; }
.letters-loading:nth-child(5):before { animation-delay: 0.48s; }
.letters-loading:nth-child(6):before { animation-delay: 0.60s; }
.letters-loading:nth-child(7):before { animation-delay: 0.72s; }
.letters-loading:nth-child(8):before { animation-delay: 0.84s; }
.letters-loading:nth-child(9):before { animation-delay: 0.96s; }
.letters-loading:nth-child(10):before { animation-delay: 1.08s; }

/* MODERN 3D FLIP ANIMATION */
@keyframes flip3D {
  0% { transform: rotateY(-90deg); opacity: 0; }
  25% { transform: rotateY(0deg); opacity: 1; }
  75% { transform: rotateY(0deg); opacity: 1; }
  100% { transform: rotateY(90deg); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .letters-loading {
    font-size: 30px;
    letter-spacing: 4px;
  }
}

/* ---------- NAVBAR / HEADER ---------- */
header { width:100%; }
.navbar {
  background: linear-gradient(90deg, #282A35, #282A35);
  padding: 14px 0;
  box-shadow: 0 6px 25px rgba(7,10,23,0.25);
}

/* General navbar look */
    .navbar {
      transition: all 0.3s ease;
      font-weight: 500;
      letter-spacing: 0.5px;
      font-family: Arial, sans-serif;
    }

    .navbar .nav-link {
      color: #ddd !important;
      padding: .3rem 1rem;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }

    .navbar .nav-link {
  position: relative;
  color: #fff;
  transition: color 0.3s ease;
}

/* Create the underline */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: #d1e000;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* On hover – change color + animate underline */
.navbar .nav-link:hover {
  color: #d1e000 !important;
}

.navbar .nav-link:hover::after {
  width: 100%;
}


    .navbar .nav-link.active {
      color: #d1e000 !important;
      font-weight: 600;
    }

    /* Shrink effect */
    .navbar.scrolled {
      padding-top: 0.4rem !important;
      padding-bottom: 0.4rem !important;
      background-color: #111 !important;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }

    .navbar.scrolled .navbar-brand img {
      transform: scale(0.85);
      transition: transform 0.3s ease;
    }

    /* Scroll Progress Bar */
    #scrollProgress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, #d1e000, #d1e000);
      width: 0%;
      transition: width 0.1s ease-out;
    }

    /* Modern Hamburger */
    .hamburger {
      display: inline-block;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px;
      background: #fff;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Drawer styles */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -70%;
      width: 70%;
      height: 100vh;
      background: #1d1e1d;
      color: #fff;
      z-index: 1050;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      transition: right 0.3s ease-in-out;
    }

    .mobile-drawer.active {
      right: 0;
    }

    .drawer-close {
      position: absolute;
      top: 15px;
      right: 20px;
      background: #fff;
      border: none;
      color: #111;
      font-size: 1.8rem;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      text-align: center;
      line-height: 30px;
      cursor: pointer;
    }

    .drawer-footer {
      margin-top: auto;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 1rem;
    }

    .drawer-footer .social-links a {
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    .drawer-footer .social-links a:hover {
      color: #d1e000;
    }

    /* Overlay */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .navbar-nav .nav-item {
  display: flex;
  align-items: center;
   font-size: 16px !important;
}

.navbar-nav .nav-link {
  display: inline-block;
  width: 100%;
  text-align: left;
}

/* Desktop alignment */
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    text-align: center;
  }
}
@media (min-width: 992px) {
    .gap-lg-3 {
        gap: 2rem !important;
       
    }
}
    
/* ---------- NAVBAR / HEADER end ---------- */

/* General logo styles */
.brand-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Desktop Logo (show only on md+ screens) */
.desktop-logo {
  display: none;
}

@media (min-width: 768px) {
  .desktop-logo {
    display: block;
  }
  .desktop-logo img {
    height: 50px; /* adjust as per your actual logo height */
    width: auto;
  }
}

/* Mobile Logo (show only below md) */
.mobile-logo {
  display: block;
}
.mobile-logo img {
    height: 40px; /* adjust as per your actual logo height */
    width: auto;
  }

@media (min-width: 768px) {
  .mobile-logo {
    display: none;
  }
}

/* go to top start */
 /* Scroll to Top wrapper */
    .scroll-to-top {
      position: fixed;
      bottom: 40px;
      right: 40px;
      z-index: 9999;
      cursor: pointer;
    }

    /* Inner structure */
    .scroll-to-top .scroll-top-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #74690f, #74690f);
      padding: 12px 18px;
      border-radius: 50px;
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      opacity: 0;
      visibility: hidden;
      transition: all cubic-bezier(.4, 0, .2, 1) .4s;
      transform: translateY(20px);
    }
    .scroll-to-top :hover {
      background: linear-gradient(135deg, #282927, #282927);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Bar animation */
    .scroll-to-top .scroll-bar {
      width: 22px;
      height: 22px;
      border: 2px solid #fff;
      border-radius: 50%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .scroll-to-top .bar-inner {
      width: 6px;
      height: 6px;
      background: #fff;
      border-radius: 50%;
      animation: pulse 1.2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.5);
        opacity: 0.6;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Visible state */
    .scroll-to-top.visible .scroll-top-inner {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0);
    }

    /* Loading Spinner */
    #loading-spinner {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
    }

    .spinner {
      width: 60px;
      height: 60px;
      border: 6px solid #f3f3f3;
      border-top: 6px solid #ff6600;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

/* go to top end */


 /* Footer Area Background */
  .footer-area {
    background: linear-gradient(90deg, #1c1e24, rgb(50 12 40));
    position: relative;
    overflow: hidden;
  }
  .todu{
    color: #fff !important;
  }

  
.footer-area::before {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -120px;
  
  animation-delay: 0s; /* start immediately */
}

.footer-area::after {
  width: 350px;
  height: 350px;
  bottom: -150px;
  right: -120px;

  animation-delay: 5s; /* start later for variation */
}

/* Keyframes for rotation + floating */
@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

  /* Ensure content above pseudo elements */
  .footer-area .container {
    position: relative;
    z-index: 1;
  }

  /* Footer Logo */
  .footer-logo {
    max-width: 180px;
    height: auto;
  }

  .footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    padding: 4px 0;
  }

 .footer-links a {
  color: #ccc;
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: rgb(209, 224, 0); /* underline color */
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}


  /* Social Icons */
  .social-icons a {
    font-size: 20px;
    margin-right: 12px;
    display: inline-block;
    color: #ddd;
    transition: 0.3s;
  }

  .social-icons a:hover {
    transform: scale(1.2);
  }

  .social-icons .facebook:hover {
    color: #3b5998;
  }

  .social-icons .linkedin:hover {
    color: #0077b5;
  }

  .social-icons .instagram:hover {
    color: #e4405f;
  }

  .social-icons .twitter:hover {
    color: #1da1f2;
  }

  /* Copyright */
  .copyright-area {
    background: rgb(24 24 24);
    color: #bbb;
  }

  
/* Floating Services */
.services-btn {
  position: fixed;
  right: 20px;
  top: 70%;
  z-index: 1000;
}

.service-circle {
  width: 55px;
  height: 55px;
  background: #74690f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-circle:hover {
  background: #27282c;
  transform: scale(1.1);
}
.product-circle i {
  font-size: 32px;
  color: #fff;
  transition: transform 0.3s ease;
}

/* Hover effect */
.product-circle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.product-circle:hover i {
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-circle {
    width: 60px;
    height: 60px;
  }
  .product-circle i {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .product-circle {
    width: 50px;
    height: 50px;
  }
  .product-circle i {
    font-size: 22px;
  }
}
 /* Make all text black */
.copyright-area p {
  color: #fff !important;
}

/* Default link style inside */
.copyright-area a {
  color: #fff !important; /* same as text */
  text-decoration: none;
  transition: 0.3s;
}

/* Hover effect only on Cashmypayment */
.copyright-area a:hover {
  color: #000 !important; /* blue */
}

.money-circle i {
    font-size: 32px;
    color: white;
  }

  .money-circle:hover {
    transform: scale(1.1) rotate(10deg);
  }

  /* Responsive */
  @media (max-width: 767px) {
    .footer-logo {
      margin: 0 auto;
    }
    .social-icons {
      text-align: center;
    }
  }


