@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --c-dark: #212529;
  --c-brand: #0d7c6d;
  --c-brand-light: #e28ecc;
  --c-brand-rgb: 78, 87, 212;
  --c-body: #8a8888;
  --font-base: "Roboto";
  --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.8);
  --transition: all 0.5s ease;
}
html {
  scroll-behavior: smooth;
}

body,
html {
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  color: var(--c-dark);
}
a {
  text-decoration: none;
  color: var(--c-brand);
  transition: var(--transition);
}
a:hover {
  color: var(--c-brand-light);
}

p {
  color: #333;
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 100px;
}

/* Navbar */
.navbar {
  padding: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-nav .nav-link {
  color: #e8e6e6;
  font-size: 1.2rem;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link:hover {
  color: var(--c-brand);
}
.navbar-brand img {
  max-height: 60px;
  object-fit: contain;
}

.btn-brand {
  background-color: var(--c-brand);
  color: #fff;
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-brand:hover {
  background-color: var(--c-brand-light);
  border-color: var(--c-brand-light);
  color: black;
}

.navbar-toggler-icon {
  background-color: white;
  border-radius: 2px;
}

#scrollToTopBtn {
  width: 48px;
  height: 48px;
  z-index: 99999; /* stay above everything */
}

/* Home */
/* =========================
   HERO SECTION
========================= */

#hero {
  background: rgba(var(--c-brand-rgb), 0.1);
  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
  padding-top: 3rem; /* ⬅ reduced from 10rem */
  padding-bottom: 3rem; /* ⬅ more breathing room */
  overflow: hidden;
}

/* Headings spacing */
#hero h1,
#hero h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-brand {
  color: var(--c-brand);
}

/* =========================
   HERO MICRO PROOF
========================= */

.hero-micro-proof {
  margin-top: 0.5rem; /* ⬅ tighter */
  font-size: 0.9rem;
  color: #475569;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}

.hero-micro-proof span {
  white-space: nowrap;
}

.hero-trust {
  margin-top: 0.5rem;
  font-size: 0.85rem; /* ⬅ slightly smaller */
  color: #64748b;
}

/* =========================
   HERO BUTTONS
========================= */

#hero .btn {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 12rem;
}

/* =========================
   HERO IMAGE (DESKTOP)
========================= */

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .navbar-nav .nav-link,
  .btn-brand {
    margin-bottom: 8px;
    text-align: center;
  }

  #hero .row {
    flex-direction: column-reverse;
  }

  .hero-trust {
    text-align: center;
  }

  .section-padding {
    padding-top: 100px !important;
    padding-bottom: 600px;
  }
}

/* Right column alignment (desktop) */
#hero .col-lg-6:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   HERO FADE-UP ANIMATION (SAFE)
========================= */

/* Hidden by default */
.hero-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/* Animate when visible */
.hero-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-fade-delay {
  transition-delay: 0.15s;
}

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

/* Desktop: make it BIG */
@media (min-width: 992px) {
  .hero-image {
    max-width: 900px; /* 🔥 BIGGER */
    transform: scale(1.15); /* 🔥 visually larger without breaking layout */
    transform-origin: left center;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .hero-image {
    max-width: 1000px; /* 🔥 very big */
    transform: scale(1.2);
  }
}

/* Mobile safety */
@media (max-width: 768px) {
  .hero-image {
    max-width: 100%;
    transform: none;
    margin: 0 auto;
  }
  .hero p {
    color: #1f2933;
  }
}

/* =========================
   MOBILE LAYOUT FIX
========================= */

@media (max-width: 992px) {
  /* Stack image first */
  #hero {
    margin-bottom: 2px;
    padding-top: 1.5rem; /* ⬅ tighter */
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  #hero .row {
    flex-direction: column-reverse;
  }

  .hero-micro-proof {
    justify-content: center;
  }
  .hero-trust {
    text-align: center;
  }
}

/* =========================
   ABOUT SECTION
========================= */
#about {
  min-height: 60vh;
  height: 60vh;
  padding-top: 4rem;
}

#about p {
  max-width: 520px;
  color: var(--c-body);
}

.about-points {
  list-style: none;
  padding-left: 0;
}

.about-points li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #334155;
}

.about-image {
  max-width: 90%;
  height: auto;
}

@media (max-width: 992px) {
  #about p {
    margin-left: auto;
    margin-right: auto;
  }
  #about {
    min-height: 100vh;
    height: 100vh;
    min-height: 100vh;
    padding-top: 2rem;
  }
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* =========================
   SERVICES / API SECTION
========================= */

.services {
  min-height: auto;
}

#services .btn {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 12rem;
}
#services p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--c-body);
}

.service-points {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.service-points li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #334155;
}

@media (max-width: 768px) {
  #services {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #services .section-title {
    margin-top: 0;
  }

  .service-points {
    margin-bottom: 1.5rem;
  }
}

/* Pricing */
.pricing {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.pricing::after {
  content: "";
  width: 40px;
  height: 40px;
  background: rgba(var(--c-brand-rgb), 0.2);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: var(--transition);
}
.pricing:hover::after {
  width: 100%;
  height: 100%;
  background: var(--c-brand);
  z-index: -1;
}
.pricing:hover h3,
.pricing:hover p {
  color: white;
}
.section-title .line {
  width: 100px;
  height: 4px;
  background-color: var(--c-brand);
  margin: 16px auto 24px auto;
}

/* for deplyment correction price layout  */

@media (min-width: 1024px) {
  /* Grid layout */
  .pricing-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: stretch;
  }
}

/* integration mobile vew for deployment correction  */

@media (max-width: 768px) {
  /* Icons grid below filters */
  .icons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 1rem;
  }
}

/* FAQ */

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.faq-container {
  max-width: 1000px;
  margin-left: 30px;
  margin-bottom: 30px;
  margin-right: 30px;
  margin: 0 auto;
  background-color: var(--c-brand-light-rgb);
  border-radius: 10px;
  margin-bottom: 50px;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 25px 30px -8px rgba(139, 33, 149, 0.1);
  border-radius: 15px;
}
.faq-item {
  border-bottom: 1px solid #0b0b0b;
  padding: 15px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 5px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}
.faq-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-question::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(-180deg);
}

/* Footer Styling */
.footer {
  margin: 0;
  padding: 40px 0;
  max-width: 100%;
  flex-shrink: 0;
  background: linear-gradient(#000, #212529);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer h5 {
  color: var(--c-brand);
}

.footer a {
  color: #f1f1f1;
  transition: color 0.3s ease;
}

.footer p,
.footer .contact-info {
  color: #cccccc;
}

/* =========================
   FOOTER IMPROVEMENTS
========================= */

.footer-row {
  align-items: flex-start;
}

/* Better spacing for lists */
.footer ul li {
  margin-bottom: 0.5rem;
}

/* Alternatives links hover effect */
.footer ul li a {
  font-size: 0.95rem;
}

.footer ul li a:hover {
  color: var(--c-brand);
  padding-left: 4px;
}

/* Shift contact section slightly left on large screens */
@media (min-width: 992px) {
  .footer-contact {
    padding-left: 10px;
  }
}

/* Make footer headings consistent */
.footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Improve mobile stacking spacing */
@media (max-width: 768px) {
  .footer .col-md-6 {
    margin-bottom: 1.5rem;
  }
}

/* whats up scrolling button */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 75px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 22px;
    bottom: 75px;
    width: 52px;
    height: 52px;
  }
}
