section {
  padding: clamp(70px, 8vw, 110px) 0;
}

.container {
  max-width: 1200px;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */

.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 12px 0;
}

.navbar .nav-link {
  font-weight: 500;
  color: #000;
  position: relative;
  transition: 0.3s;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #6a5cff;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6a5cff;
}

/* Fix navbar toggler visibility */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ================= SCROLL REVEAL ================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= NAVBAR FIX ================= */

/* Base navbar */
#mainNavbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background: #ffffff; /* always solid */
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  z-index: 999;
}

/* Nav links */
#mainNavbar .nav-link {
  color: #000000; /* always visible */
  font-weight: 500;
  transition: 0.3s;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: #6a5cff;
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(0); /* dark icon for white background */
}

/* Optional: smaller padding when scrolling */
#mainNavbar.scrolled {
  padding: 14px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Mobile */
@media (max-width: 991px) {
  #mainNavbar {
    background: #ffffff !important; /* solid on mobile too */
  }

  #mainNavbar .nav-link {
    color: #000000;
    padding: 10px 0;
  }

  .navbar-toggler-icon {
    filter: invert(0);
  }
}


/* Hero section  */

/* HERO BACKGROUND */
.hero-section {
  min-height: 100vh;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://stage.tiktokviral.shop/wp-content/uploads/2026/02/hero.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* GLASS CARD */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* TEXT STYLING */
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  text-transform: capitalize;
}

.hero-text {
  font-size: 2rem;
  opacity: 0.9;
  text-transform: capitalize;
}

.hero-btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}
.glass-card {
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}



/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-text {
  font-size: 1rem;
  }
}

/* why-section */
.about-image-wrapper {
  width: 100%;
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* optional */
}

.video-wrapper {
  width: 100%;
  height: 400px; /* adjust height */
  overflow: hidden;
  border-radius: 20px;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.about-section, .why-section {
  background: #ffffff;
}

/* Images */
.about-image-wrapper {
  position: relative;
  display: inline-block;
}

.about-img {
  border-radius: 20px;
  object-fit: cover;
}

.main-img {
  width: 100%;
}


.floating-img {
  width: 55%;
  position: absolute;
  bottom: -40px;
  right: -20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Decorative shape */
.decor-circle {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border: 6px solid #6a5cff;
  border-radius: 50%;
  z-index: -1;
}

/* Text */


.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 15px 0;
  text-transform: capitalize;
}

.section-title span {
  color: #6a5cff;
}

.section-text {
  color: #000;
  max-width: 520px;
}

/* Service Boxes */
/* .service-box {
  border: 1.5px solid #6a5cff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}

.service-box i {
  font-size: 1.8rem;
  color: #6a5cff;
}

.service-box:hover {
  background: #6a5cff;
  color: #fff;
}

.service-box:hover i {
  color: #fff;
} */

/* Responsive */
@media (max-width: 991px) {
  .floating-img {
    position: static;
    width: 70%;
    margin-top: 20px;
  }

  .decor-circle {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}

.services-section {
  background: #f4fcff;
}

/* Card */
.service-card {
  height: 100%;
  padding: 30px 25px;
  border-radius: 18px;
  background: linear-gradient(180deg, #bfc2ff, #e6faff);
  transition: all 0.35s ease;
  border: 1px solid #6a5cff;
}

.service-card h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: #000;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Icon */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 1.6rem;
  color: #6a5cff;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(106,92,255,0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    padding: 25px 20px;
  }
}

.slick-list {
  overflow: hidden !important;
} 
.review-slider .px-2 .card .card-body {
    color:black;
    background: linear-gradient(180deg, #bfc2ff, #e6faff);
}

/* success section */
.stats-section {
  background-color: #f4fcff;
}

.stat-card {
  background: linear-gradient(180deg, #bfc2ff, #e6faff);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid #6a5cff;
}

.stat-card-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.center-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: #2b2b2b;
}

.text-purple {
  color: #6f42c1;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(106,92,255,0.25);
}

/* price section */

.price-package{
  background: linear-gradient(180deg, #bfc2ff, #e6faff); border-radius: 25px;
  transition: all 0.35s ease;
}

.starter-price-package{
  border-radius: 25px;
  transition: all 0.35s ease;
}

.price-package:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(106,92,255,0.25);
}
.starter-price-package:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(106,92,255,0.25);
}

/* Contact section */
.d-grid button{
  background-color: #6a5cff;
  color: #fff;
}

/* footer  */

.footer {
  background: linear-gradient(180deg, #bfc2ff, #e6faff); border-radius: 25px;
}

.footer-link {
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #6f42c1;
    padding-left: 5px;
}

.footer-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    color: #6f42c1 !important;
    transform: translateY(-3px);
}

.accordion-button {
  background-color: #bfc2ff; /* Default background color (pink example) */
  color: #000; /* Default text color */
}

.accordion-button:not(.collapsed) {
  background-color: #6f42c1; /* Background color when the accordion is open/active (hot pink example) */
  color: #fff; /* Text color when active */
}

.accordion-button:focus {
  box-shadow: none; /* Removes the default blue focus border/shadow */
}

/* Animation */

.reveal {
  opacity: 0;
  transform: scale(0.95) translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* My partner section */

.logo-box {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-height: 250px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.logo-box img.no-filter {
  filter: none;
  opacity: 1;
}


/* AREAS WE SERVE Section */
section h6 {
  font-size: 0.95rem;
  color: #212529;
}

section ul li {
  padding: 4px 0;
  color: #495057;
}

section ul li:hover {
  color: #0d6efd;
  cursor: pointer;
}

/* ===============================
   Essentials Hover Effect
=================================*/

.essential-item {
    transition: all 0.3s ease;
    cursor: default;
}

.essential-icon {
    font-size: 1.6rem;
    font-weight: 700;
    color: #28a745; /* Bootstrap success green */
    transition: all 0.3s ease;
}

.essential-text {
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover Effect */
.essential-item:hover .essential-icon {
    transform: scale(1.25);
    color: #0d6efd; /* Bootstrap primary blue */
}

.essential-item:hover .essential-text {
    transform: translateX(6px);
}

.essential-item {
    padding: 12px 15px;
    border-radius: 8px;
}

.essential-item:hover {
    background: rgba(13, 110, 253, 0.05);
}

    .feature-box {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 100%;
  transition: 0.3s ease;
  background: #fff;
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.risk-section {
  background: #f8f9fa;
}

.risk-section ul {
  list-style: none;
  padding-left: 0;
}

.risk-section li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.risk-section li::before {
  content: "•";
  color: #ff4d4d;
  position: absolute;
  left: 0;
}

.cta-section {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
}
