body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
}
p.footer-copy a {
    margin: 0 5px;
    color: #7f8896;
}
.site-header {
  position: absolute;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.35s ease;
}

/* Sticky state */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  animation: slideDown 0.35s ease;
}

/* Smooth entry animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.main-nav {
  gap: 35px;
}

.main-nav a {
  color: #d1d5dc;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #1fb6ff;
  transition: 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
  color: #1fb6ff;
}

/* CTA Button */
.header-btn {
  transition: 0.3s;
  display: inline-block;
  transition: all 0.45s ease;
  height: 60px;
  border-radius: 0; /* pill shape */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  width: 324px;
  border: 0px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;

  background: url(./image/Subtract-header.png) no-repeat;
  background-size: cover;
}

.header-btn:hover {
  opacity: 0.6;
}

/* BURGER ICON */
.burger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  left: 0;
  transition: 0.4s;
}

.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 8px;
}
.burger span:nth-child(3) {
  top: 16px;
}

/* BURGER → CLOSE */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  padding-top: 50px;
  justify-content: center;
  transform: translateY(-100%);
  transition: 0.5s ease;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateY(69px);
}

.mobile-menu nav {
  text-align: center;
}

.mobile-menu a {
  display: block;
  color: #fff;
  font-size: 22px;
  margin: 20px 0;
  text-decoration: none;
}

/* CTA inside menu */
.mobile-menu .cta {
  margin-top: 40px;
  padding: 15px 30px;
  border-radius: 40px;
  border: 2px solid #1fb6ff;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(./image/banner_bg.jpg) top right no-repeat;
  color: #fff;
  padding: 80px 0;
  background-size: cover;
}

.hero-subtitle {
  font-size: 40px;
  color: #ffffff;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
.btn-quate {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  cursor: pointer;
  position: relative;
  font-weight: 700;
}
.btn-quate:hover {
  color: #0c9eda !important;
  letter-spacing: 1px;
}

.btn-quate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.btn-quate:hover::after {
  width: 100%;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0c9eda;
}

.hero-text {
  font-size: 16px;
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: start;
}

.hero-actions .btn-outline-primary {
  transition: 0.3s;
  display: inline-block;
  height: 60px;
  border-radius: 0; /* pill shape */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  width: 294px;
  border: 0px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s ease;
  background: url(./image/Subtract-banner.png) no-repeat;
  background-size: cover;
}

.hero-actions .btn-outline-primary:hover {
  opacity: 0.6;
}

.hero-actions .btn-link {
  font-weight: 600;
  text-decoration: none;
}

.hero-image img {
  max-width: 520px;
}

.section {
  padding: 80px 0;
}

.section h1 {
  font-weight: 500;
  font-size: 46px;
  color: #000000;
  text-transform: uppercase;
}
.stats-row {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 18px;
}
.section p {
  color: #333333;
  line-height: 1.7;
}

.stats {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}

.stats h2 {
  font-size: 120px;
  font-weight: 800;
  letter-spacing: 2px;

  color: transparent; /* no fill */
  -webkit-text-stroke: 2px #00b4e6; /* outline */
  text-stroke: 2px #00b4e6;

  line-height: 1;
}

.stats span {
  font-size: 21px;
  position: absolute;
  font-weight: 400;
  color: #000;
  line-height: 1.8em;
  background: #fff;
  bottom: 0;
  text-transform: uppercase;
}

.image-box img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .stats {
    margin-bottom: 20px;
  }
  .stats span {
    font-size: 16px;
  }
}

.heading {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 46px;
  color: #fff;
  text-transform: uppercase;
}

.subheading {
  color: #99a1af !important;
  margin: 0 auto;
  font-size: 18px;
  line-height: 28px;
}

.black-text {
  color: #000;
}
.sub-gray {
  color: #99a1af;
}

.solution-card {
  border-radius: 20px;
  padding: 120px 50px;
}

.solution-card h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}

.solution-card h5 {
  font-size: 28px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 18px;
  color: #e2e2e2;
  line-height: 1.6;
  color: #fff;
}

.blue-card {
  background: #10a4db;
}

.dark-card {
  background: radial-gradient(circle at top left, #0c2b4d, #000);
}

/* Responsive */
@media (max-width: 1024px) {
  .solution-card {
    border-radius: 10px;
    padding: 60px 40px;
  }
  .solution-card h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .solution-card h5 {
    font-size: 22px;
  }
  .solution-card p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .solution-card {
    padding: 25px;
  }

  .solution-card h3 {
    font-size: 22px;
  }
  .solution-card h5 {
    font-size: 20px;
  }
  .solution-card {
    border-radius: 10px;
    padding: 50px 20px;
  }
}

.capabilities-section {
  background: #fff;
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 22px 24px;
  background: #f4f3fc;
  border-radius: 10px;
  margin-bottom: 18px;
  background: rgba(244, 243, 252, 0.6);
}

.cap-number {
  font-size: 60px;
  font-weight: 600;
  color: #9a9a9a;
  line-height: 1;
  font-family: "Orbitron", sans-serif;
}

.cap-item h5 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  color: #000;
}

.cap-item p {
  font-size: 18px;
  color: #333;
  line-height: 26px;
  margin: 0;
}

.cap-image {
  max-width: 420px;
}

/* Responsive */

.core-section {
  background: #0b0e14;
}

.specialties-section {
  background: radial-gradient(circle at top, #1d1d1d, #0b0b0b);
}

.specialty-card {
  height: 100%;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.02);
}

.specialty-card h5 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #ffffff;
  max-width: 200px;
  margin-bottom: 18px;
  line-height: normal;
}

.specialty-card p,
.specialty-card li {
  font-size: 18px;
  color: #c1bec5;
  line-height: 1.7;
}

.specialty-card ul {
  padding-left: 18px;
  margin: 0;
}

.specialty-card ul li {
  margin-bottom: 10px;
}

/* CTA */
.cta-btn {
  display: inline-block;
  height: 60px;
  border-radius: 0; /* pill shape */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  width: 584px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  transition: all 0.45s ease;
  justify-content: center;
  margin: 0 auto;
  background: url(./image/Subtract.png) no-repeat;
}

/* Hover effect */
.cta-btn:hover {
  opacity: 0.6;
}

.cta-subtext {
  font-size: 16px;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .specialty-card {
    padding: 24px;
  }

  .specialties-title {
    text-align: center;
  }
}

.execution-section {
  background: #fff;
}

.execution-lead {
  font-size: 16px;
  color: #9a9a9a;
  margin-bottom: 6px;
}

.execution-sub {
  font-size: 15px;
  color: #7f7f7f;
}

.execution-points ul {
  list-style: none;
  padding-left: 0;
}

.execution-points li {
  font-size: 18px;
  color: rgba(37, 36, 36, 0.77);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.execution-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6f6f6f;
}
.execution-box {
  border: 1px solid rgba(0, 0, 0, 0.13);
  padding: 25px;
}
.execution-box p {
  max-width: 240px;
  font-size: 18px;
  line-height: 1.7em;
  color: #000;
  padding: 0;
  margin-bottom: 0;
}

.light-gray {
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.light-gray p {
  color: #c1bec5 !important;
}
/* Responsive */
@media (max-width: 768px) {
  .execution-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.engagement-section {
  background: url(./image/engagement-bg-updated.jpg) top right no-repeat;
  background-size: cover;
}

.engagement-card {
  height: 100%;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
}

.engagement-card > * {
  position: relative;
  z-index: 1;
}

.engagement-card > * {
  position: relative;
  z-index: 1;
}

/* Hover Effect */
.engagement-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25),
    inset 0 0 30px rgba(255, 255, 255, 0.15);
}

/* Activate glow */
.engagement-card:hover::before {
  opacity: 1;
}

/* Shine animation */
.engagement-card:hover::after {
  left: 120%;
}
.engagement-card h2 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #ffffff;
  line-height: normal;
}

.engagement-card h5 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #ffffff;
  line-height: normal;
}

.engagement-card p {
  font-size: 18px;
  color: #c1bec5;
  line-height: 1.7;
}
.indeustries-box img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

.faq-section {
  padding: 120px 0;
  background: #f4f3fc;
}

.faq-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #5c5b5e;
  background: transparent;
  border-radius: 0px;
}

.faq-accordion .accordion-button {
  background: transparent;
  padding: 24px 0;
  padding-right: 50px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.faq-accordion .accordion-button::after {
  content: "";
  background: none;
  font-size: 30px;
  width: 14px;
  height: 14px;
  background: url(./image/arrow.svg);
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  position: absolute;
  right: 10px;
  top: 35px;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 0 24px 0;
  color: #555;
  font-size: 14px;
}
.text-about {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}

.site-footer {
  background: #0a0a0f;
  /* padding: 70px 0 30px; */
  color: #b5bcc9;
  padding: 30px 0;
  width: 100%;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.6;
  color: #99a1af;
  font-size: 14px;
}

.footer-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 16px 0 0 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #99a1af;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: color 0.3s;
  line-height: 20px;
}

.footer-links a:hover {
  color: #00d4ff;
}

.footer-divider {
  border: 1px solid #1e2939;
  margin: 40px 0 25px;
}

.footer-copy {
  margin: 0;
  color: #7f8896;
  display: flex;
  align-items: center;
}
.footer-copy a img {
    margin-right:10px   ;
    }

.footer-policy a {
  margin: 0 10px;
  font-family: "Inter", sans-serif;
  color: #7f8896;
  text-decoration: none;
}

.footer-policy a:hover {
  color: #00d4ff;
}

.footer-social a {
  width: 36px;
  font-family: "Inter", sans-serif;
  height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #364153;
  justify-content: center;
  background: #1e2939;
  border-radius: 10px;
  color: #cfd6e4;
  margin-left: 8px;
  transition: all 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

.float-img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}
.cta-section {
  padding: 150px 0;
  /* background: #fff url(./image/form_bg1.png) center 50px no-repeat; */
}
.coinBox {
  position: relative;
}

.coinBox .coin {
  position: absolute;
  left: -120px;
  top: -80px;
}
.cta-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
}

.cta-form {
  background: #f5f6ff;
  padding: 40px 50px;
  border-radius: 20px;
  position: relative;
}
.congtact {
  position: absolute;
  right: -100px;
  top: -70px;
}
.cta-desc {
  font-size: 20px;
  color: #444154;
  line-height: 28px;
  margin-bottom: 25px;
}

.cta-form input,.cta-form select,
.cta-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d0d4e4;
  background-color: transparent;
  border-radius: 0;
  padding: 12px 0;
  font-size: 16px;
  outline: none;
  color: #000;
  resize: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #000;
}

.submit-btn {
  display: inline-block;
  height: 60px;
  transition: all 0.45s ease;
  border-radius: 0; /* pill shape */
  color: #0f0f0f;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  width: 427px;
  border: 0px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: url(./image/Subtract-b.png) no-repeat;
  background-size: cover;
}

.submit-btn:hover {
  opacity: 0.6;
}
.stats-row {
  height: 100%;
}
.stats-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 50px;
}
@media (max-width: 1400px) {
  .hero-title {
    font-size: 60px;
  }
  .cta-form {
    padding: 25px 40px;
  }
  .submit-btn {
    width: 320px;
    height: 45px;
    font-size: 14px;
  }
  .header-btn {
    width: 250px;
    height: 46px;
  }
  .coinBox .coin {
    left: 20px;
  }
  .congtact {
    right: 0;
  }
}
@media (max-width: 1300px) {
  .cta-form {
    padding: 20px 25px;
  }
  .submit-btn {
    width: 285px;
    height: 40px;
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .faq-title {
    font-size: 40px;
  }
  .cta-section,
  .faq-section,
  .section {
    padding: 60px 0;
  }
  .cta-mascot {
    width: 350px;
  }
  .hero-subtitle {
    font-size: 28px;
  }
  .hero-title {
    font-size: 48px;
  }
  .heading,
  .section h1 {
    font-size: 36px;
  }
  .subheading {
    font-size: 16px;
  }
  .section p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .header-btn {
    display: none !important;
  }
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  .hero-section .container {
    position: relative;
    z-index: 55;
  }
  .specialty-card p,
  .specialty-card li {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .engagement-card {
    padding: 20px;
  }
  .specialty-card h5 {
    max-width: 100%;
  }
  .engagement-card h2 {
    font-size: 30px;
  }
  .engagement-card h5 {
    font-size: 20px;
  }
  .engagement-card p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .ready-text br {
    display: none;
  }
  .coinBox .coin {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
  .congtact {
    top: -60px;
    width: 80px;
    height: 80px;
    right: 0;
  }
  .faq-accordion .accordion-button {
    font-size: 16px;
    padding: 16px 40px 16px 0;
  }
  .mobile-menu a {
    font-size: 20px;
  }
  .mobile-menu .cta {
    border-radius: 20px;
    font-size: 20px;
    padding: 10px 30px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 30px;
  }
  .cta-section,
  .faq-section,
  .section {
    padding: 40px 0;
  }
  .cta-mascot {
    width: 250px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-title {
    font-size: 36px;
  }
  .heading,
  .section h1 {
    font-size: 24px;
  }
  .cta-btn,
  .submit-btn {
    width: 400px;
    background: none;
    border: 1px solid #0c9eda;
    font-size: 14px;
    border-radius: 15px;
    height: auto;
    padding: 10px 25px;
  }
  .cta-form {
    padding: 20px 30px;
  }
  .cap-number {
    font-size: 28px;
  }

  .cap-item {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .cap-image {
    max-width: 100%;
  }
  .cap-item h5 {
    margin-bottom: 8px;
  }
  .coinBox .coin,
  .pulse {
    display: none;
  }
}
@media (max-width: 575px) {
  .execution-box {
    border: 0px;
    padding: 0 10px;
  }
  .execution-box p {
    max-width: 100%;
    padding: 15px;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.13);
  }
  .light-gray p {
    border: 1px solid rgba(255, 255, 255, 0.13);
  }
  .indeustries-box {
    border: 1px solid rgba(0, 0, 0, 0.13);
    padding: 15px;
    text-align: center;
  }
  .indeustries-box p {
    border: 0px;
    padding: 0;
    text-align: center;
    display: block;
  }
  .cta-btn,
  .submit-btn {
    width: 100%;
  }
  .cta-form {
    padding: 15px 20px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .engagement-card h2 {
    font-size: 26px;
  }
  .engagement-card h5 {
    font-size: 18px;
  }
  .serve-box {
    flex-direction: column;
  }
    .footer-copy{
      flex-direction: column;
  }
  .footer-copy a img {
    margin:0 0 10px 0;
    }
}

.rotate {
  animation: spin 6s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.solutions-wrapper {
  position: relative;
}

.solution-card {
  margin: 0;
  transform-origin: center top;
}
.solution-card {
  scroll-margin-top: 120px;
}
.counter:after {
  content: "+";
}

.main-card-box {
  transition: all 0.45s ease;
  -webkit-backdrop-filter: blur(50px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.main-card-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 79, 139, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* lift */
.main-card-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

/* show glow */
.main-card-box:hover::before {
  opacity: 1;
}

.thank-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thank-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.thanks-sec {
  background: #0b0e14;
  display: flex;
  width: 100%;
  align-items: center;
  height: 100vh;
  font-size: 16px;
  flex-direction: column;
  justify-content: space-between;
}

.thanks-sec .site-header {
  position: relative;
}
.back-to-home a {
  margin: 0 auto !important;
}

