/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Font */
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* header section */

.header {
  position: absolute;
  width: 100%;
  top: 20px;
  left: 0;
  z-index: 100;
}

.logo {
  width: 230px;
}

.menu-box {
  background: #fff;
  padding: 6px 15px;
  border-radius: 8px;
}

.menu-box .nav-link {
  color: #111;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
}

.demo-btn {
  text-decoration: none;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, #39bfff, #8e42ff);
}

.book-free-demo-btn{
  height:50px !important;
} 

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

.banner {
  position: relative;
  height: 95vh;
  overflow: hidden;
  background-color: #06081b;
}

/* Purple Right Background */

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

/* Left Dots */

.dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 500px;
  height: 540px;
  background: url(images/dots.png) no-repeat left bottom;
  background-size: cover;
  z-index: 1;
  animation: crystalFloat 3s linear infinite alternate;
}

@keyframes crystalFloat {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(-12px, -4px) rotate(-1deg);
  }
}

/* Hero Image */

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 0 105px;
  display: block;
}
.hero-image::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 850px;
  height: 850px;
  z-index: -1;
}

/* Content */

.hero-content {
  position: relative;
  padding-top: 100px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 66px;
  color: #fff;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 30px;
}

.hero-content span {
  background: linear-gradient(90deg, #35c7ff, #9445ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  max-width: 560px;
  color: #e7e7e7;
  font-size: 22px;
  line-height: 38px;
  margin-bottom: 45px;
}

.banner-buttons {
  display: flex;
  gap: 20px;
}

.btn1 {
  background: linear-gradient(90deg, #39bfff, #8e42ff);
  color: #fff;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
}

.btn2 {
  color: #fff;
  text-decoration: none;
  padding: 18px 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-size: 20px;
}

.feature-section {
  padding: 25px 0;
  background: #f8f9fd;
}

.feature-item {
  position: relative;
}

.feature-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 55px;
  background: #8f8f8f;
}

.last-item::after {
  display: none;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.feature-content img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.text-content h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
}

.text-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
}

/* Tablet */
@media (max-width: 991px) {
  .feature-item::after {
    display: none;
  }

  .feature-item {
    margin-bottom: 30px;
  }

  .feature-content {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .feature-content {
    justify-content: center;
  }

  .text-content h5,
  .text-content p {
    font-size: 16px;
  }
}

/*==========================
Services Section
==========================*/

.services-section {
  background-image: url("images/service-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}

.section-title {
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 24px;
  color: #222;
  line-height: 1.5;
}

/*==================
Top Service Cards
===================*/

.service-card {
  width: 290px;
  height: 270px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Smooth Transition */
  transition: all 0.35s ease;
  /* Light shadow */
}

.service-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.service-card img {
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
  transition: transform 0.35s ease;
  width: 52px;
}

/* Image Zoom */
.service-card:hover img {
  transform: scale(1.08);
}

.purple-line {
  width: 100px;
  height: 3px;
  background: #8a3fd1;
  margin: 0 auto 18px;
  transition: width 0.35s ease;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #111;
  margin-bottom: 12px;
  transition: color 0.35s ease;
}

.service-card p {
  font-size: 14px;
  line-height: 22px;
  color: #555;
  margin: 0;
  transition: color 0.35s ease;
}

/*===================
Business Cards
===================*/
.business-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  transition: all 0.4s ease;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.business-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 25px;
  color: #fff;
}

.overlay h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/*==================
Responsive
===================*/

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 34px;
  }

  .section-title p {
    font-size: 18px;
  }

  .service-card h4 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 18px;
  }

  .business-card img {
    height: 420px;
  }

  .overlay h3 {
    font-size: 28px;
  }

  .overlay p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }

  .business-card img {
    height: 350px;
  }

  .overlay {
    padding: 20px;
  }

  .overlay h3 {
    font-size: 24px;
  }

  .overlay p {
    font-size: 16px;
  }
}
/*=========================
Challenge Section
==========================*/

.challenge-section {
  background-color: #12060f;
  background-image: url("images/challenge-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
}

.challenge-section .section-heading h2 {
  color: #8d46d8;
  font-size: 44px;
  font-weight: 700;
}

.challenge-section .section-heading p {
  color: #fff;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 45px;
}

.challenge-card {
  width: 270px;
  height: 305px;
  margin: auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  text-align: center;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.challenge-card img {
  width: 52px;
  margin-bottom: 16px;
}

.challenge-card .purple-line {
  width: 76px;
  height: 2px;
  background: #8d46d8;
  margin: 0 auto 18px;
}

.challenge-card h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.challenge-card p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 24px;
}

/*=========================
Solution Section
==========================*/

.solution-section {
  background: #fff;
  padding: 80px 0;
}

.solution-section .section-heading {
  margin-bottom: 45px;
}

.solution-section h2 {
  font-size: 44px;
  font-weight: 700;
}

.solution-section p {
  font-size: 22px;
}

.solution-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 16px;
  height: 150px;
  transition: 0.3s;
}

.solution-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.solution-icon {
  width: 72px;
  height: 72px;
  background: #8d46d8;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.solution-icon img {
  width: 38px;
}

.solution-content {
  margin-left: 22px;
  padding-left: 22px;
  border-left: 1px solid #bdbdbd;
}

.solution-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.solution-content p {
  font-size: 15px;
  color: #555;
  line-height: 24px;
  margin: 0;
}

/*====================
Responsive
====================*/

@media (max-width: 991px) {
  .challenge-card {
    margin-bottom: 20px;
  }
  .solution-card {
    height: auto;
  }
}

@media (max-width: 767px) {
  .challenge-section,
  .solution-section {
    padding: 60px 0;
  }

  .challenge-section h2,
  .solution-section h2 {
    font-size: 32px;
  }

  .challenge-section p,
  .solution-section p {
    font-size: 17px;
  }

  .solution-card {
    flex-direction: column;
    text-align: center;
  }

  .solution-content {
    border: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
  }
}
/*==========================
How It Works
===========================*/

/*=========================
How It Works Section
==========================*/

.how-work-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  /* Gradient + PNG */
  background:
    url("images/Maskdot.png") center center / cover no-repeat,
    linear-gradient(90deg, #46b5f5 0%, #8b3fd5 100%);
}

/* Heading */

.how-work-section h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
}

/* Work Box */

.work-box {
  position: relative;
  text-align: center;
}

/* Arrow between steps */
.work-box::after {
  content: "";
  position: absolute;
  top: 48px; /* Center of the white circle */
  right: -58px; /* Space between cards */
  width: 60px;
  height: 18px;
  background: url("images/arrow-right.png") no-repeat center;
  background-size: contain;
}

/* Remove arrow after last item */
.work-box.last::after {
  display: none;
}

@media (max-width: 991px) {
  .work-box {
    margin-bottom: 40px;
  }
  .work-box::after {
    display: none;
  }
}
/* Circle */

.work-icon {
  width: 95px;
  height: 95px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 18px;
}

.work-icon img {
  width: 42px;
}

/* Title */

.work-box h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Description */

.work-box p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

/*==========================
Video Section
==========================*/

.video-section {
  background-color: #12060f;
  background-image: url("images/challenge-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.video-box {
  max-width: 800px;
  position: relative;
}

.video-box img {
  width: 100%;
  border-radius: 5px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
}

.play-btn i {
  color: #fff;
  font-size: 34px;
}
/*==========================
Pricing Section
===========================*/

.pricing-section {
  background-image: url("images/simple-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

.pricing-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
}

.pricing-subtitle {
  color: #555;
  font-size: 18px;
  margin-top: 10px;
}

.price-card {
  background: #fff;
  border: 1.5px solid #8d8d8d;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.price-card h4 {
  font-size: 27spx;
  font-weight: 500;
  color: #222;
}

.price-card h2 {
  font-size: 40px;
  color: #5b46e8;
  font-weight: 700;
  margin: 20px 0 30px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card ul li {
  font-size: 20px;
  color: #444;
  margin-bottom: 12px;
}

/*==========================
CTA Section
===========================*/
.cta-section {
  position: relative;
  background: linear-gradient(90deg, #53a8e8, #8242d8);
  height: 220px; /* Fixed height like the design */
  overflow: hidden;
}

/* Center the content */
.cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
}

.cta-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.cta-content .btn {
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 12px 40px;
  font-size: 22px;
  font-weight: 600;
}

/* Left Robot */
.robot-left {
  position: absolute;
  left: 50px;
  bottom: 0; /* Attached to bottom */
  height: 180px;
  z-index: 1;
}

/* Right Robot */
.robot-right {
  position: absolute;
  right: 50px;
  bottom: 0; /* Attached to bottom */
  height: 180px;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-section {
    height: 180px;
  }

  .robot-left,
  .robot-right {
    height: 130px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-content .btn {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .robot-left,
  .robot-right {
    display: none;
  }

  .cta-section {
    height: auto;
    padding: 50px 20px;
  }

  .cta-content {
    position: static;
    transform: none;
  }
}
.footer-section {
  background: #14152c;
  background-image: url(images/footer-bg.png);
  background-size: cover;
  background-position: center;
  padding: 35px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  padding: 0 20px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 18px;
}

.footer-desc {
  color: #d9d9d9;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.footer-col h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  color: #d9d9d9;
  font-size: 16px;
  margin-bottom: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #4fb3ff;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

/* =========================
   UI + Responsiveness Fixes
   Added after initial build
========================= */

:root {
  --dark: #06081b;
  --dark-2: #12060f;
  --purple: #8d46d8;
  --blue: #39bfff;
  --gradient: linear-gradient(90deg, #39bfff, #8e42ff);
  --text: #111;
  --muted: #555;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1180px;
}

.header .container {
  gap: 18px;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 0;
}

.logo {
  width: clamp(160px, 17vw, 230px);
}

.menu-box {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.menu-box .nav-link:hover,
.menu-box .nav-link.active {
  color: var(--purple);
}

.demo-btn,
.btn1,
.btn2,
.cta-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.demo-btn:hover,
.btn1:hover,
.cta-content .btn:hover {
  /* color: #fff; */
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(141, 70, 216, 0.35);
}

.btn2:hover {
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.banner {
  /* min-height: 760px; */
  /* height: 100svh; */
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(141, 70, 216, 0.45),
      transparent 38%
    ),
    #06081b;
}

.hero-content h1 {
  font-size: clamp(42px, 5.2vw, 66px);
  margin-bottom: 12px;
}

.hero-content p {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
  margin-top: 22px;
}

.dots {
  opacity: 0.75;
  pointer-events: none;
}

.feature-section .row,
.services-section .row,
.challenge-section .row,
.solution-section .row,
.pricing-section .row {
  align-items: stretch;
}

.feature-content,
.service-card,
.challenge-card,
.solution-card,
.price-card,
.business-card {
  height: 100%;
}

.feature-content {
  min-height: 82px;
}

.service-card,
.challenge-card {
  width: 100%;
  max-width: 290px;
  margin-inline: auto;
}

.service-card {
  min-height: 270px;
  height: 100%;
}

.business-card img {
  height: clamp(360px, 42vw, 560px);
}

.overlay p {
  font-size: clamp(16px, 1.7vw, 22px);
}

.section-title p br,
.section-heading p br,
.pricing-subtitle br,
.video-section p br {
  display: none;
}

.section-title p,
.section-heading p,
.pricing-subtitle,
.video-section p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.challenge-card {
  min-height: 305px;
  height: 100%;
}

.solution-card {
  min-height: 150px;
}

.how-work-section {
  background:
    url("images/maskdot.png") center center / cover no-repeat,
    linear-gradient(90deg, #46b5f5 0%, #8b3fd5 100%);
}

.work-box::after {
  background-image: url("images/Arrow-right.png");
}

.video-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* .play-btn::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
} */

.price-card h4 {
  font-size: 27px;
}

.price-card ul li {
  position: relative;
  padding-left: 24px;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

.footer-logo {
  width: clamp(145px, 14vw, 170px);
}

@media (max-width: 1199px) {
  .header {
    top: 18px;
  }

  .menu-box .nav-link {
    padding-inline: 12px;
  }

  .demo-btn {
    padding: 12px 18px;
  }

  .hero-image {
    width: 58%;
  }
}

@media (max-width: 991px) {
  .header {
    position: fixed;
    top: 0;
    background: rgba(6, 8, 27, 0.96);
    padding: 12px 0;
    backdrop-filter: blur(10px);
  }

  .navbar-collapse {
    position: absolute;
    top: calc(100% + 12px);
    left: 12px;
    right: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  }

  .menu-box {
    display: block;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .menu-box .nav-link {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .menu-box .nav-link:hover,
  .menu-box .nav-link.active {
    background: #f4edff;
  }

  .header .demo-btn {
    margin-left: auto;
  }

  .banner {
    height: auto;
    min-height: auto;
    padding: 145px 0 70px;
  }

  .banner .container,
  .banner .row {
    height: auto !important;
  }

  .hero-content {
    padding-top: 0;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
  }

  .banner-buttons {
    justify-content: center;
  }

  .hero-image {
    position: relative;
    width: min(620px, 92%);
    height: auto;
    margin: 42px auto 0;
    justify-content: center;
  }

  .hero-image img {
    height: auto;
    max-height: 470px;
    object-position: center bottom;
  }

  .dots {
    width: 340px;
    height: 360px;
    opacity: 0.35;
  }

  .feature-content {
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }

  .service-card,
  .challenge-card {
    max-width: 100%;
  }

  .work-box::after {
    display: none;
  }

  .footer-col {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .header .container {
    gap: 10px;
  }

  .logo {
    width: 150px;
  }

  .header .demo-btn {
    display: none;
  }

  .banner {
    padding: 125px 0 55px;
  }

  .hero-content h1 {
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .hero-content p {
    line-height: 1.55;
    margin-top: 18px;
  }

  .banner-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn1,
  .btn2 {
    width: 100%;
    padding: 15px 22px;
    font-size: 17px;
  }

  .hero-image {
    margin-top: 30px;
  }

  .feature-section {
    padding: 18px 0 8px;
  }

  .feature-item {
    margin-bottom: 14px;
  }

  .services-section,
  .challenge-section,
  .solution-section,
  .how-work-section,
  .pricing-section {
    padding: 55px 0;
  }

  .section-title,
  .solution-section .section-heading {
    margin-bottom: 32px;
  }

  .section-title h2,
  .challenge-section .section-heading h2,
  .solution-section h2,
  .how-work-section h2,
  .pricing-title,
  .video-section h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .section-title p,
  .challenge-section .section-heading p,
  .solution-section p,
  .pricing-subtitle,
  .video-section p {
    font-size: 16px;
    line-height: 1.55;
  }

  .service-card,
  .challenge-card {
    min-height: 245px;
    padding: 22px 18px;
  }

  .service-card h4,
  .challenge-card h4,
  .solution-content h4 {
    font-size: 18px;
  }

  .service-card p,
  .challenge-card p,
  .solution-content p {
    font-size: 15px;
    line-height: 1.55;
  }

  .business-card img {
    height: 330px;
  }

  .overlay h3 {
    font-size: 24px;
  }

  .solution-card {
    padding: 22px;
  }

  .work-icon {
    width: 82px;
    height: 82px;
  }

  .work-box h4 {
    font-size: 22px;
  }

  .work-box p {
    font-size: 16px;
    line-height: 1.55;
  }

  .play-btn {
    width: 58px;
    height: 58px;
  }

  .price-card {
    padding: 26px 22px;
    border-radius: 16px;
  }

  .price-card h2 {
    font-size: 32px;
  }

  .price-card ul li {
    font-size: 16px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content .btn {
    width: 100%;
    max-width: 260px;
    font-size: 17px;
  }

  .footer-section {
    padding: 42px 0 18px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .business-card img {
    height: 300px;
  }

  .feature-content {
    justify-content: flex-start;
  }
}

/* =========================
   Desktop Figma-match polish
   Professional content layout
========================= */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .header {
    top: 22px;
  }

  .navbar > .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .menu-box {
    margin: 0 auto;
    padding: 7px 14px;
    border-radius: 10px;
  }

  .demo-btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
  }

  .banner {
    /* min-height: 820px; */
    /* height: 100vh; */
  }

  .hero-content {
    padding-top: 92px;
    max-width: 610px;
  }

  .hero-content h1 {
    letter-spacing: -1.8px;
  }

  .hero-content p {
    max-width: 580px;
  }

  .hero-image {
    width: 57%;
  }

  .feature-section {
    padding: 28px 0;
  }

  .services-section,
  .challenge-section,
  .solution-section,
  .how-work-section,
  .pricing-section {
    padding: 86px 0;
  }

  .section-title h2,
  .challenge-section .section-heading h2,
  .solution-section h2,
  .how-work-section h2,
  .pricing-title {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: -0.6px;
  }

  .section-title p,
  .challenge-section .section-heading p,
  .solution-section > .container > .section-heading p,
  .pricing-subtitle,
  .video-section p {
    font-size: 21px;
    line-height: 1.55;
  }

  .service-card {
    min-height: 285px;
    padding: 28px 24px;
    border-radius: 10px;
  }

  .service-card h4,
  .challenge-card h4,
  .solution-content h4 {
    font-size: 20px;
  }

  .service-card p,
  .challenge-card p,
  .solution-content p {
    font-size: 15px;
  }

  .business-row {
    margin-top: 6px;
  }

  .business-card {
    border-radius: 14px;
  }

  .business-card img {
    height: 560px;
  }

  .overlay {
    padding: 30px;
  }

  .overlay h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.4px;
  }

  .overlay p {
    font-size: 20px;
    line-height: 1.55;
  }

  .challenge-card {
    min-height: 318px;
    padding: 28px 22px;
    border-radius: 12px;
  }

  .solution-card {
    min-height: 158px;
    padding: 18px;
  }

  .work-box p {
    max-width: 245px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-section {
    padding-top: 86px !important;
    padding-bottom: 86px !important;
  }

  .pricing-section.py-5 {
    padding-top: 86px !important;
    padding-bottom: 86px !important;
  }

  .price-card {
    padding: 38px 40px;
    border-radius: 22px;
  }

  .footer-section {
    padding: 46px 0 38px;
  }
}

/* Better keyboard/accessibility states */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(57, 191, 255, 0.75);
  outline-offset: 3px;
}

/* ================= Sticky Social CTA + Book Modal ================= */
.sticky-social-cta {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.social-cta-link {
  width: 54px;
  min-height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 15, 43, 0.74);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    width 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.social-cta-link i {
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}

.social-cta-link span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition:
    max-width 0.28s ease,
    opacity 0.22s ease;
}

.social-cta-link:hover,
.social-cta-link:focus-visible {
  width: 150px;
  justify-content: flex-start;
  padding: 0 18px;
  color: #fff;
  transform: translateX(-4px) scale(1.02);
  box-shadow:
    0 22px 54px rgba(57, 191, 255, 0.22),
    0 16px 34px rgba(142, 66, 255, 0.2);
}

.social-cta-link:hover span,
.social-cta-link:focus-visible span {
  max-width: 90px;
  opacity: 1;
}

.social-whatsapp {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.95),
    rgba(16, 128, 70, 0.95)
  );
}
.social-linkedin {
  background: linear-gradient(
    135deg,
    rgba(10, 102, 194, 0.96),
    rgba(43, 83, 255, 0.92)
  );
}
.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}
.social-mail {
  background: linear-gradient(135deg, #39bfff, #8e42ff);
}

.book-demo-modal .modal-dialog {
  max-width: 760px;
}

.book-demo-modal .modal-content {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(57, 191, 255, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(142, 66, 255, 0.24),
      transparent 38%
    ),
    rgba(7, 10, 31, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  color: #fff;
}

.book-demo-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.modal-header-content {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin-bottom: 26px;
}

.modal-eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #bdefff;
  background: rgba(57, 191, 255, 0.12);
  border: 1px solid rgba(57, 191, 255, 0.3);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-header-content h2 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -1px;
}

.modal-header-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.book-demo-form {
  position: relative;
  z-index: 1;
}
.book-demo-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.book-demo-form .form-control {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.book-demo-form textarea.form-control {
  min-height: 126px;
  resize: vertical;
}
.book-demo-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.book-demo-form .form-control:focus {
  border-color: rgba(57, 191, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(57, 191, 255, 0.12);
}

.modal-submit-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(90deg, #39bfff, #8e42ff);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(57, 191, 255, 0.22);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(142, 66, 255, 0.26);
}
.modal-note {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}
.book-demo-form.is-submitted .modal-submit-btn {
  background: linear-gradient(90deg, #16c784, #39bfff);
}

@media (max-width: 991px) {
  .sticky-social-cta {
    top: auto;
    right: 50%;
    bottom: 16px;
    transform: translateX(50%);
    flex-direction: row;
    gap: 10px;
    padding: 8px;
    border-radius: 24px;
    background: rgba(6, 8, 27, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .social-cta-link,
  .social-cta-link:hover,
  .social-cta-link:focus-visible {
    width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 16px;
    transform: none;
  }

  .social-cta-link i {
    font-size: 20px;
  }
  .social-cta-link span {
    display: none;
  }

  .book-demo-modal .modal-dialog {
    max-width: calc(100% - 28px);
    margin: 14px auto;
  }

  .book-demo-modal .modal-content {
    padding: 28px 20px 22px;
    border-radius: 24px;
  }

  .modal-header-content h2 {
    font-size: 28px;
  }
  .modal-header-content p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  body {
    padding-bottom: 76px;
  }
  .sticky-social-cta {
    width: calc(100% - 24px);
    justify-content: space-between;
    bottom: 10px;
  }
  .social-cta-link,
  .social-cta-link:hover,
  .social-cta-link:focus-visible {
    width: 48px;
  }
  .modal-close-btn {
    top: 12px;
    right: 12px;
  }
  .modal-header-content h2 {
    font-size: 24px;
    padding-right: 30px;
  }
  .modal-eyebrow {
    font-size: 11px;
    padding: 7px 11px;
  }
  .book-demo-form .form-control {
    min-height: 50px;
    border-radius: 14px;
  }
}

/* =========================
   Equal Social CTA Spacing + Smooth Anchor Offsets + Footer Links
========================= */
html {
  scroll-padding-top: 110px;
}

.footer-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus-visible {
  color: #4fb3ff;
}

.sticky-social-cta {
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(6, 8, 27, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.social-cta-link,
.social-cta-link:hover,
.social-cta-link:focus-visible {
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border-radius: 17px;
  justify-content: center;
  position: relative;
}

.social-cta-link:hover,
.social-cta-link:focus-visible {
  transform: translateX(-4px) scale(1.05);
}

.social-cta-link i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-cta-link span {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  max-width: none;
  opacity: 0;
  pointer-events: none;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 8, 27, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.social-cta-link span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(6, 8, 27, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.social-cta-link:hover span,
.social-cta-link:focus-visible span {
  max-width: none;
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 92px;
  }

  .sticky-social-cta {
    gap: 8px;
    padding: 8px;
  }

  .social-cta-link,
  .social-cta-link:hover,
  .social-cta-link:focus-visible {
    width: 48px;
    height: 48px;
    min-height: 48px;
    border-radius: 16px;
  }
}

@media (max-width: 575px) {
  .sticky-social-cta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 8px;
  }

  .social-cta-link,
  .social-cta-link:hover,
  .social-cta-link:focus-visible {
    width: 100%;
    max-width: 52px;
    margin: 0 auto;
  }
}
