/* 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: #0E1D40;
  --accent: #116eac;
  --brand-green: #ffffff;
  --muted: #6b7280;
  --bg: #f6f7fb;
  --white: #ffffff;
  --glass: rgba(255,255,255,0.06);
  --max-width: 1200px;
}

/* All hyperlinks hover effect */
a:hover {
  color: red !important;
}


/* ===== PRELOADER BASE STYLE ===== */
    .handle-preloader {
      align-items: center;
      display: flex;
      height: 100%;
      justify-content: center;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 9999999;
      background: #0E1D40; /* dark blue background */
    }

    .preloader-close {
      position: fixed;
      z-index: 99999999;
      font-size: 14px;
      background: #fff;
      color: red;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      cursor: pointer;
      right: 30px;
      top: 30px;
      font-weight: 400;
    }

    .handle-preloader .animation-preloader {
      position: absolute;
      z-index: 100;
    }

    /* Spinner circle */
    .handle-preloader .animation-preloader .spinner {
      animation: spinner 1s infinite linear;
      border-radius: 50%;
      height: 150px;
      margin: 0 auto 45px auto;
      width: 150px;
      border: 3px solid #ffffff;
      border-top-color: rgba(255, 255, 255, 0.5);
    }

    /* Text animation */
    .handle-preloader .animation-preloader .txt-loading {
      text-align: center;
      user-select: none;
      
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
      font-family: Arial, sans-serif;
      font-weight: 700;
      letter-spacing: 15px;
      display: inline-block;
      position: relative;
      font-size: 40px;
      line-height: 40px;
      text-transform: uppercase;
      color: transparent;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
      animation: letters-loading 4s infinite;
      content: attr(data-text-preloader);
      left: 0;
      opacity: 0;
      top: 0;
      position: absolute;
      color: #ffffff;
    }

    /* Sequential delay for each letter */
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(1):before { animation-delay: 0s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before { animation-delay: 0.2s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before { animation-delay: 0.4s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before { animation-delay: 0.6s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before { animation-delay: 0.8s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before { animation-delay: 1.6s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before { animation-delay: 1.8s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before { animation-delay: 2s; }
    .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(12):before { animation-delay: 2.2s; }
    
    /* Spinner Animation */
    @keyframes spinner {
      to { transform: rotateZ(360deg); }
    }

    /* Text Flip Animation */
    @keyframes letters-loading {
      0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
      }
      25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
      }
    }

    /* Responsive */
    @media screen and (max-width: 767px) {
      .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
      }
    }
    @media screen and (max-width: 500px) {
      .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
      }
      .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px;
      }
    }

/* ---------- NAVBAR / HEADER ---------- */
header { width:100%; }
.navbar {
  background: linear-gradient(90deg, var(--brand-dark), rgba(6,11,32,0.95));
  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: 0.6rem 1rem;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }

    .navbar .nav-link:hover {
      color: red !important;
      background-color: rgba(255, 255, 255, 0.05);
    }

    .navbar .nav-link.active {
      color: red !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, #ff0000, #ff5e5e);
      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: #081022;
      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: red;
    }

    /* 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, #b71527, #b71527);
      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, #0b1531, #0b1531);
      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(135deg, #0b1531, #0b1531, #0b1531);
    position: relative;
    overflow: hidden;
  }
  .todu{
    color: #ff6600 !important;
  }

  /* Decorative pseudo-elements */
.footer-area::before {
  content: "🤝₹";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.08);

  z-index: 0;
  animation: floatRotate 15s infinite linear;
}
.footer-area::after {
  content: "🤝₹";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.08);

  z-index: 0;
  animation: floatRotate 15s infinite linear;
}

.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:hover {
    color: #fff;
    transform: translateX(5px);
  }

  /* 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: #b71527;
    color: #bbb;
  }

  
/* Floating Services */
.services-btn {
  position: fixed;
  right: 20px;
  top: 70%;
  z-index: 1000;
}

.service-circle {
  width: 55px;
  height: 55px;
  background: #b71527;
  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: #0b1531;
  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;
    }
  }


