body { background:#fff; color:black; scroll-behavior:smooth;margin:auto;padding:auto; }

    /* Custom Navbar */
.custom-navbar {
  background: #ffffff !important; /* Always white */
  padding: 12px 0;
  transition: all 0.3s ease-in-out;
}
.main_content{
  margin-top: 75px;
  background: #f4f4f4;
  border-radius: 5px;
  padding: 20px 10px;
}
.main_content h1{
  margin: auto;font-size: 25px;color: #7f7c7c;
  text-align: center;
}
/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, #f6256a, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar hover underline */
.nav-hover {
  position: relative;
  transition: 0.3s;
}
.nav-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0px;
  left: 0;
  background: linear-gradient(90deg, #f6256a, #6f42c1);
  transition: width 0.3s;
}
.nav-hover:hover::after {
  width: 100%;
}

/* Dropdown advanced */
.dropdown-menu {
  border-radius: 12px;
  padding: 8px 0;
}
.dropdown-animate {
  animation: fadeDown 0.25s ease forwards;
  transform-origin: top;
}
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Dropdown hover mode */
.dropdown-hover:hover > .dropdown-menu {
  display: block;
}

/* Stylish Buttons */
.btn-demo, .btn-register {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  transition: 0.3s ease;
  color: black;
}

.btn-demo {
  background: #dfe0e1;
  color: #7c7c7f;
}
.btn-demo:hover {
  background: #3b5bff;
  color: #fff;
  box-shadow: 0 0 10px rgba(59,91,255,0.4);
  background: linear-gradient(45deg, #f6256a, #6f42c1);
}

/* Register Button with Gradient */
.btn-register {
  background: linear-gradient(45deg, #f6256a, #6f42c1);
  color: #fff;
  border: none;
}
.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246,37,106,0.4);
}

/* Extra hover glow effect */
.btn-register::before,
.btn-demo::before {
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width: 120%;
  height: 100%;
  background: rgba(250, 250, 250, 0.2);
  transform: skewX(-20deg);
  transition: 0.4s;
}
.btn-register:hover::before,
.btn-demo:hover::before {
  left:100%;
}

/* ===== FEATURES CSS (replace previous feature CSS) ===== */

/* Floating Background Dots */
.floating-dot {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,0,150,0.12), rgba(255,0,150,0));
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
  filter: blur(6px);
  z-index: 1;
}
.dot1 { top: 6%; left: 4%; animation-delay: 0s; }
.dot2 { bottom: 12%; right: 6%; animation-delay: 2s; background: radial-gradient(circle, rgba(0,120,255,0.12), rgba(0,120,255,0)); }
.dot3 { top: 38%; right: 28%; animation-delay: 1s; background: radial-gradient(circle, rgba(0,200,100,0.10), rgba(0,200,100,0)); }
.dot4 { bottom: 28%; left: 18%; animation-delay: 3s; background: radial-gradient(circle, rgba(255,150,0,0.10), rgba(255,150,0,0)); }

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* Feature box base */
.feature-box {
  background: #ffffff;
  position: relative;
  z-index: 2;
  border: 1px solid #eef0f2;
  transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s, border-color .45s;
  -webkit-backdrop-filter: blur(4px);
  /* tiny entrance */
  opacity: 0;
  transform: translateY(6px);
  animation: appearUp .6s forwards;
}

/* entrance stagger controlled inline with style attr delay */
@keyframes appearUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hover effect */
.feature-box:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 18px 40px rgba(16,24,40,0.08);
  border-color: transparent;
}

/* Feature icon container */
.feature-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  font-size: 36px;
  transition: transform .45s, box-shadow .45s;
}

/* Icon hover micro animation */
.feature-box:hover .feature-icon {
  transform: rotate(6deg) scale(1.06);
}

/* Gradient classes for each icon - gives variety */
.icon-grad-1 { background: linear-gradient(135deg,#7c3aed,#ec4899); box-shadow: 0 8px 24px rgba(124,58,237,0.12); }
.icon-grad-2 { background: linear-gradient(135deg,#06b6d4,#3b82f6); box-shadow: 0 8px 24px rgba(6,182,212,0.10); }
.icon-grad-3 { background: linear-gradient(135deg,#f97316,#ef4444); box-shadow: 0 8px 24px rgba(249,115,22,0.10); }
.icon-grad-4 { background: linear-gradient(135deg,#14b8a6,#0ea5a0); box-shadow: 0 8px 24px rgba(20,184,166,0.10); }
.icon-grad-5 { background: linear-gradient(135deg,#f59e0b,#ef4444); box-shadow: 0 8px 24px rgba(245,158,11,0.10); }
.icon-grad-6 { background: linear-gradient(135deg,#60a5fa,#7c3aed); box-shadow: 0 8px 24px rgba(96,165,250,0.10); }

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .floating-dot { display:none; } /* hide dots on small screens for clarity */
  .feature-icon { width:72px; height:72px; font-size:30px; border-radius:14px; }
}

    /* HERO */
    .hero-section { position:relative; padding-top:140px; padding-bottom:120px; background:radial-gradient(circle at top,#8b5cf6,#0e0f1a 70%); overflow:hidden; }
    .blob { position:absolute; filter:blur(80px); opacity:.35; border-radius:50%; }
    .blob-1 { width:350px; height:350px; background:#6366f1; top:-80px; left:-120px; }
    .blob-2 { width:250px; height:250px; background:#ec4899; top:40px; right:-60px; }

    .particle { position:absolute; width:8px; height:8px; background:#fff; border-radius:50%; opacity:.5; animation:float 6s infinite ease-in-out; }
    @keyframes float { 0%{transform:translateY(0)} 50%{transform:translateY(-25px)} 100%{transform:translateY(0)} }

    .service-card { background:rgba(255,255,255,0.06); backdrop-filter:blur(12px); border-radius:20px; transition:.3s; color: white;}
    .service-card:hover { transform:translateY(-6px); box-shadow:0 0 15px rgba(255,255,255,0.15); }
    .icon-box { width:80px; height:80px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:38px; color:#fff; }
/* Section gradient + white theme */
.faq-section {
  background: linear-gradient(180deg, #f4f4f4, #c5c5c7);
  color: #525252;
}

/* Floating pastel dots */
.faq-dot {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatFaq 9s infinite ease-in-out;
}
.dot-a { top: 10%; left: 5%; background: #c4b5fd; animation-delay: 0s; }
.dot-b { top: 45%; right: 10%; background: #fda4af; animation-delay: 2s; }
.dot-c { bottom: 10%; left: 30%; background: #93c5fd; animation-delay: 4s; }

@keyframes floatFaq {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-22px); }
  100% { transform: translateY(0px); }
}

/* FAQ Card */
.faq-item {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eef0f4;
  overflow: hidden;
  transition: 0.35s;
  opacity: 0;
  transform: translateY(8px);
  animation: faqAppear .65s forwards;
}

/* stagger */
.faq-item:nth-child(1) { animation-delay: 0s; }
.faq-item:nth-child(2) { animation-delay: .08s; }
.faq-item:nth-child(3) { animation-delay: .16s; }
.faq-item:nth-child(4) { animation-delay: .24s; }
.faq-item:nth-child(5) { animation-delay: .32s; }

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

/* Hover glow */
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

/* Accordion button custom */
.faq-btn {
  background: #ffffff !important;
  font-weight: 600;
  padding: 18px 20px;
  border-radius: 16px;
  transition: 0.3s;
}

.faq-btn:not(.collapsed) {
  color: #4f46e5 !important;
  background: #f3f2ff !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Icon animation on open */
.faq-btn:not(.collapsed) i {
  transform: rotate(6deg) scale(1.1);
  transition: 0.3s;
}

/* Accordion body */
.accordion-body {
  background: #ffffff;
  border-top: 1px solid #f2f2f8;
  padding: 20px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  color: #4f4c4c;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .faq-dot { display: none; }
  .faq-item { border-radius: 14px; }
}

    /* Gradient Text */
.text-gradient {
  background: linear-gradient(45deg, #f6256a, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

 .footer-custom {
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
  }

  .footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
  }

  .footer-link:hover {
    color: #f6256a;
  }
.social-icon:hover{
  color: white;
}
  .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(45deg, #f6256a, #6f42c1);
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(246, 37, 106, 0.35);
  }

  .social-icon:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 18px rgba(111, 66, 193, 0.45);
  }


/* Gradient button */
.btn-gradient {
  background: linear-gradient(135deg, #f6256a, #6f42c1);
  color: #fff;
  border-radius: 0 8px 8px 0;
  transition: 0.3s;
}
.btn-gradient:hover {
  opacity: 0.85;
}

/* Floating animated dots */
.floating-dots,
.floating-dots2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(25px);
  animation: floatDots 8s infinite ease-in-out;
  z-index: 0;
}
.floating-dots {
  top: -40px;
  left: -40px;
}
.floating-dots2 {
  bottom: -40px;
  right: -40px;
  animation-delay: 3s;
}
@keyframes floatDots {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(25px); }
}

/* ---------------------------
   BACKGROUND FLOATING DOTS
---------------------------- */
.big-dot {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(246, 37, 106, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  animation: softFloat 8s infinite ease-in-out alternate;
  z-index: 0;
}

.dot-1 {
  top: 10%;
  left: 5%;
}

.dot-2 {
  bottom: 10%;
  right: 5%;
}

@keyframes softFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

/* KFScript Gradient */
.kfs-gradient {
  background: linear-gradient(45deg, #f6256a, #6f42c1);
}
.kfs-gradient-text {
  background: linear-gradient(45deg, #f6256a, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section spacing */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Floating gradient light */
.stats-bg-light::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: linear-gradient(45deg, #f6256a33, #6f42c133);
  border-radius: 50%;
  filter: blur(80px);
  top: -40px;
  left: -60px;
  animation: glowMove 7s infinite alternate ease-in-out;
}
@keyframes glowMove {
  0% { transform: translateY(0px); }
  100% { transform: translateY(30px); }
}

/* Card Box */
.stats-box {
  border-radius: 22px;
  border: 2px solid rgba(245, 37, 106, 0.15);
  transition: .35s ease-in-out;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.stats-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(245, 37, 106, 0.35);
}

/* Icon Container */
.stats-icon-wrap {
  width: 85px;
  height: 85px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(45deg, #f6256a, #6f42c1);
  font-size: 40px;
  animation: iconFloat 3s infinite ease-in-out;
}
@keyframes iconFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Numbers */
.number {
  font-size: 3.2rem;
  letter-spacing: -1px;
}
.paymentaccept{
margin: auto;text-align: center;
margin-top: 30px;
}
.paymentaccept img{
height: 70px;margin: 10px;
padding: 2px;
}
