body {
  background: linear-gradient(180deg, #0a1435 0%, #000000 800px) no-repeat #000;
  margin: 0;
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.phone-link {
  color: #ccd4d3;
  /* initial text color */
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.phone-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.phone-link:hover {
  color: #fff;
  /* hover पर text का रंग हल्का change */
}

.phone-link:hover::after {
  width: 100%;
  /* hover पर नीचे line animate होकर दिखे */
}

.normal-text {
  color: #857d7d;
  font-size: 1rem;
}

.new_logo {
  width: 300px;
}

@media (max-width: 992px) {
  .new_logo {
    width: 150px;
  }
}

.new .dropdown .nav-link {
  color: #fff !important;
  text-decoration: none;
  padding: 0px 14px !important;

}

.new a {
  padding: 0px 14px !important;

}

.new .nav-link:hover {
  box-shadow: none;

}

.custom-header {
  background-color: rgba(13, 27, 34, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
}

.powered-by {
  font-size: 10px;
  line-height: 1.1;
  color: #ccc;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.btn-talk {
  border-radius: 50px;
  padding: 8px 24px !important;
  border: 1px solid #4d74ff;
  color: white;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-talk:hover {
  background-color: #4d74ff;
  color: white;
}

.hamburger {
  font-size: 24px;
  color: white;
  display: none;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .btn-talk {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .custom-header {
    justify-content: space-between;
  }
}

.hero-section {
  background-color: #0d1b22;
  color: white;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.highlight {
  color: #4d74ff;
  background-color: rgba(77, 116, 255, 0.1);
  padding: 3px 10px;
  border-radius: 10px;
}

.hero-text {
  color: #ccc;
  margin-top: 20px;
  font-size: 1rem;
  max-width: 500px;
}

.hero-buttons .btn {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  margin-right: 10px;
}

.btn-primary {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 25px;
  font-weight: 500;
  margin-right: 10px;

}

.btn-outline-light {
  border: 1px solid #ccc;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto 20px;
  }

  .hero-buttons {
    text-align: center;
  }
}

.toolbox-section {
  padding: 60px 20px;
}

.toolbox-header {
  text-align: center;
  margin-bottom: 40px;
}

.toolbox-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.animated-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(45deg, #73b9d0, #128C7E);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.4);
}

.animated-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.6);
}

.animated-btn:active {
  transform: scale(0.96);
}

.toolbox-header .btn {
  background-color: #161b22;
  border: 1px solid #3f3f3f;
  color: #fff;
  margin-top: 15px;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.toolbox-header .btn:hover {
  background-color: #58a6ff;
  color: #000;
}

.toolbox-card {
  background-color: #161b22;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 0 0 transparent;
}

.toolbox-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.2);
}

.toolbox-card img {
  max-width: 100%;
  margin-bottom: 15px;
}

.toolbox-card h5 {
  font-weight: 600;
  color: #ffffff;
}

.toolbox-card p {
  color: #9ca3af;
  font-size: 0.9rem;

}

.explore-link {
  text-decoration: none;
  color: #58a6ff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.explore-link:hover {
  color: #1f6feb;
}

.advantage-box {
  /* background-color: rgba(252, 237, 203, 0.2); */
  /* #FCEDCB33 is ~20% opacity */
  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.advantage-box2 {
  /* background-color: rgba(220, 226, 229, 0.2); */
  /* 0.2 = 20% */
  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.advantage-box3 {
  /* background-color: rgba(220, 226, 229, 0.2); */
  /* 0.2 = 20% */
  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.advantage-box4 {
  /* background-color: rgba(205, 230, 219, 0.2); */

  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}


.advantage-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.advantage-icon {
  font-size: 32px;
  color: #dce6f4;
  margin-bottom: 15px;
}

.advantage-icon img {
  width: 52px;

}

.advantage-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.advantage-text {
  color: #b3bac1;
  font-size: 15px;
}

@media (max-width: 767.98px) {
  .advantage-box {
    margin-bottom: 20px;
  }
}

.tab-btns {
  background: #111;
  border-radius: 10px;
  padding: 5px 20px;
  display: flex;
  gap: 20px;
}

.tab-link {
  color: #ccc;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.tab-link.active {
  color: white;
  border-bottom: 2px solid #3b82f6;
}

.main-card {
  margin-top: 40px;

  text-align: center;
  transition: opacity 0.5s ease-in-out;
  /* min-height: 300px; */
}

.main-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;

}

.circle_img {
  width: 65%;

}

.text-info {
  color: #AFB3BC !important;
}

.stylish {
  /* font-family: Akshar; */
  font-weight: 300;
  font-size: 15px;
  color: #656E76;
}

.custom-email-form {
  background: #111;
  /* dark bg */
  border: 1px solid #444;
  border-radius: 50px;
  display: flex;
  padding: 5px;
  max-width: 400px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.custom-email-form input {
  background: transparent;
  border: none;
  color: #ccc;
  padding: 10px 20px;
  flex: 1;
  border-radius: 50px 0 0 50px;
  outline: none;
}

.custom-email-form input::placeholder {
  color: #666;
}

.custom-email-form button {
  background: linear-gradient(135deg, #7ec0d8, #4b91b2);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  transition: 0.3s ease;
}

.custom-email-form button:hover {
  opacity: 0.9;
}

.communication-img {
  width: 100%;
}

@media (min-width: 768px) {
  .communication-img {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .background-section {

    padding: 30px 30px !important;
  }
}

.background-section {
  background-color: #001225;
  padding: 0px 110px;
}

/* Make the toggler icon white */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}

.mega-right a {
  color: #555555 !important;
  padding: 0px 0px !important;
}

.btn_get {
  background: linear-gradient(90deg, rgba(0, 191, 255, 0.933333) 0%, rgba(0, 136, 255, 0.933333) 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn_get:hover {
  opacity: 0.9;
}

/* ================= NEW HOME PAGE STYLES (Refined) ================= */

/* General Utils */
:root {
  --primary-glow: radial-gradient(circle, rgba(56, 97, 176, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-grey: #a0a0a0;
}

.text-gradient {
  background: linear-gradient(90deg, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-blue-gradient {
  background: linear-gradient(90deg, #4d74ff, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.rounded-xl {
  border-radius: 20px;
}

.rounded-2xl {
  border-radius: 30px;
}

.object-cover {
  object-fit: cover;
}

/* Hero Section (Figma Design Refined) */
.new-hero-section {
  position: relative;
  background: transparent;
  /* Glow comes from body background */
  padding: 20px 0 0;
  overflow: hidden;
  height: auto;
  min-height: 800px;
  display: flex;
  align-items: flex-start;
}

/* Background Grid */
.hero-bg-grid {
  position: absolute;
  width: 60%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('images/hero-bg-grid.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  /* Removed CSS masks to let the image define the fade if present, or keep it crisp as per image */
}


.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

.typewriter-cursor {
  font-weight: 200;
  color: #3b82f6;
  animation: blink 0.8s infinite;
  margin-left: 5px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #b0b5c1;
  /* lighter grey for better contrast on dark */
  max-width: 1000px;
  margin: 0 auto 20px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* CTA Button - Pill Shape with Arrow */
.btn-get-started-pill {
  background: #fff;
  color: #0b0f19;
  border-radius: 50px;
  padding: 10px 10px 10px 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-get-started-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  color: #000;
}

.btn-get-started-pill .icon-circle {
  width: 35px;
  height: 35px;
  background: #3b82f6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Stats Badge */
.hero-stats-wrapper {
  z-index: 5;
}

.avatars-stack img {
  border: 2px solid #000;
}

/* Orbit System */
.orbit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.orbit-system {
  position: relative;
  width: 600px;
  height: 300px;
  /* Semi-circle height effectively */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Align to bottom of arc */
}

.orbit-ring {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  top: 20px;
  /* Push down to create arc effect */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.1) inset;
}

.central-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating Icons Positioning */
.floating-icon {
  position: absolute;
  z-index: 5;
}

.hero-image-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Specific Positions simulating the arc */
.icon-email {
  top: 100px;
  left: -250px;
  /* Far left on Desktop/Tablet */
}

.icon-sms {
  top: 150px;
  left: -50px;
  /* Symmetrical on Orbit */
}

.icon-whatsapp {
  top: 150px;
  right: -50px;
  /* Symmetrical on Orbit */
  animation-delay: 1s;
}

.icon-call {
  top: 100px;
  right: -250px;
  /* Far right on Desktop/Tablet */
  animation-delay: 2s;
}

/* Mobile Adjustments for Hero */
@media (max-width: 991px) {
  .new-hero-section {
    height: auto !important;
    min-height: auto !important;
    padding: 0 0 40px !important;
    overflow: visible !important;
    margin-top: -50px !important;
    /* Pull up significantly to close gap with navbar */
  }

  /* Remove vertical centering on mobile */
  .new-hero-section .container {
    position: static !important;
    top: 0 !important;
    transform: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Override row spacing */
  .new-hero-section .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Override column spacing */
  .new-hero-section .col-lg-12 {
    padding-top: 0 !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
  }

  /* Override Bootstrap pt-5 class that adds padding-top */
  .hero-title.pt-5 {
    padding-top: 0 !important;
  }

  /* Ensure mobile navbar doesn't add bottom margin */
  .navbar.d-block.d-md-none {
    margin-bottom: 0 !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    padding: 0 20px !important;
    max-width: 100% !important;
    margin-bottom: 30px !important;
  }

  .btn-get-started-pill {
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
  }

  .orbit-system {
    width: 100% !important;
    max-width: 450px !important;
    height: 220px !important;
    margin: 20px auto !important;
    transform: scale(0.7) !important;
  }

  .orbit-ring {
    width: 400px !important;
    height: 400px !important;
  }

  .floating-icon {
    transform: scale(0.7) !important;
  }

  .icon-email {
    top: 35px !important;
    left: 25px !important;
  }

  .icon-whatsapp {
    top: 35px !important;
    right: 25px !important;
  }

  .icon-sms {
    top: 95px !important;
    left: 0px !important;
  }

  .icon-call {
    top: 95px !important;
    right: 0px !important;
  }

  /* Vertical Centered Layout on Mobile */

  /* Half orbit system with logo at top */
  .orbit-system {
    width: 100% !important;
    max-width: 100% !important;
    height: 350px !important;
    transform: none !important;
    margin: 20px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    position: relative !important;
    overflow: visible !important;
    /* Allow icons to move outside */
  }

  /* Half orbit ring - only show bottom half */
  .orbit-ring {
    display: block !important;
    width: 650px !important;
    height: 650px !important;
    position: absolute !important;
    bottom: -325px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Floating icons - bigger size */
  .floating-icon {
    display: block !important;
    position: absolute !important;
    transform: scale(1) !important;
    z-index: 10 !important;
  }

  .hero-image-icon {
    width: 80px !important;
    height: 80px !important;
  }

  /* Position icons along the sides of the arc for tablet */
  .icon-email {
    top: 50px !important;
    left: -50px !important;
    /* Move further out for tablet */
  }

  .icon-sms {
    top: 200px !important;
    left: -20px !important;
  }

  .icon-whatsapp {
    top: 200px !important;
    right: -20px !important;
  }

  .icon-call {
    top: 50px !important;
    right: -50px !important;
    /* Move further out for tablet */
  }

  /* Logo at the top of orbit */
  .central-logo {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 220px !important;
    height: 220px !important;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    z-index: 15 !important;
  }

  .central-logo img {
    width: 160px !important;
    height: auto !important;
  }

  /* Ensure parent row stacks vertically with no gap */
  .new-hero-section .row.align-items-center {
    display: flex !important;
    flex-direction: column !important;
    margin-top: 0 !important;
  }

  /* Override inline min-height from HTML */
  .orbit-container {
    min-height: auto !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 !important;
  }

  /* 1. Button - Top of the container */
  .hero-cta-wrapper {
    position: relative !important;
    margin: 0 auto 20px auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    order: 1 !important;
  }

  .btn-get-started-pill {
    padding: 10px 10px 10px 20px !important;
    font-size: 0.85rem !important;
  }

  /* 2. Stats Badge - Below Button */
  .hero-stats-wrapper {
    display: flex !important;
    position: relative !important;
    margin: 0 auto 20px auto !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    order: 2 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  .hero-stats-wrapper .d-flex {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: auto !important;
  }

  /* 3. Orbit system - Bottom */
  .orbit-system {
    order: 3 !important;
    margin-top: 10px !important;
    height: 300px !important;
  }
}

/* Extra Mobile Refinements (Phones) */
@media (max-width: 767px) {
  .new-hero-section {
    padding: 80px 0 40px !important;
  }

  .hero-title {
    font-size: 1.75rem !important;
    margin-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 1.25 !important;
  }

  .hero-title br {
    display: none;
    /* Remove line break on mobile for better flow */
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
    padding: 0 15px !important;
    line-height: 1.5 !important;
  }

  .btn-get-started-pill {
    padding: 8px 8px 8px 18px !important;
    font-size: 0.85rem !important;
  }

  .btn-get-started-pill .icon-circle {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.85rem !important;
  }

  .orbit-system {
    max-width: 100% !important;
    height: 350px !important;
    transform: none !important;
    margin: 15px auto !important;
  }

  .orbit-ring {
    width: 650px !important;
    height: 650px !important;
    bottom: -325px !important;
  }

  .hero-image-icon {
    width: 70px !important;
    height: 70px !important;
  }

  .icon-email {
    top: 160px !important;
    left: 5px !important;
    /* Back on arc for mobile */
  }

  .icon-whatsapp {
    top: 220px !important;
    right: 0px !important;
  }

  .icon-sms {
    top: 220px !important;
    left: 0px !important;
  }

  .icon-call {
    top: 160px !important;
    right: 5px !important;
    /* Back on arc for mobile */
  }

  /* Stats Badge Smaller */
  .hero-stats-wrapper h3 {
    font-size: 1.6rem !important;
  }

  .hero-stats-wrapper small {
    font-size: 0.65rem !important;
  }

  .avatars-stack img {
    width: 32px !important;
    height: 32px !important;
  }

  .orbit-container {
    min-height: auto !important;
    margin-top: 10px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* 2. Stats Badge - Below Button on phones */
  .hero-stats-wrapper {
    display: flex !important;
    order: 2 !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-stats-wrapper .d-flex {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: auto !important;
  }

  /* 3. Orbit - Bottom on phones */
  .orbit-system {
    order: 3 !important;
    margin-top: 10px !important;
  }

  /* Central logo larger on phones too */
  .central-logo {
    width: 180px !important;
    height: 180px !important;
  }

  .central-logo img {
    width: 130px !important;
  }

  /* Ensure background grid doesn't interfere */
  .hero-bg-grid {
    opacity: 0.3 !important;
    width: 90% !important;
  }
}

/* Stats Showcase Section (Figma Design) */
.stats-showcase-section {
  padding: 20px 0 0;
  margin-top: -60px;
  /* Slight overlap or pull up if desired, or keep as separate block */
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
}

.stats-showcase-wrapper {
  background: #111111;
  /* Dark grey container */
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-feature-card {
  background: #000000;
  /* Deep black card */
  position: relative;
  min-height: 320px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: #93c5fd;
  /* Dimmed Light Blue */
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .stats-showcase-wrapper {
    border-radius: 20px;
  }

  .stats-feature-card {
    padding: 40px !important;
    text-align: center;
  }

  .stats-feature-card h2 {
    font-size: 3rem;
  }

  .stats-number {
    font-size: 2.5rem;
  }
}

/* Enterprise SMS Section (Restored Dark Theme) */
.enterprise-sms-section {
  padding: 80px 0;
  position: relative;
  /* Background remains body dark or transparent */
}

/* Core Service Cards */
.core-service-card {
  background: #0f1623;
  /* Dark blue-grey card background */
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Very subtle border */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(59, 130, 246, 0.2);
}

.core-service-card h3 {
  font-size: 2rem;
  letter-spacing: -0.5px;
  color: #ffffff;
  /* Default white */
}

.core-service-card p {
  color: rgba(255, 255, 255, 0.8);
  /* Default light white */
}

.core-service-card strong {
  color: #ffffff;
}

/* Yellowish Light Theme Variant for Core Service Card */
.core-service-card.theme-yellowish {
  background: linear-gradient(135deg, rgba(255, 253, 240, 0.6) 0%, rgba(255, 251, 235, 0.4) 50%, transparent 100%);
  /* Transparent cream */
  border-color: rgba(0, 0, 0, 0.03);
}

.core-service-card.theme-yellowish h3 {
  color: #1c1917;
  /* Very dark brown/black */
}

.core-service-card.theme-yellowish p {
  color: #44403c;
  /* Stone/brown grey */
}

.core-service-card.theme-yellowish strong {
  color: #0c0a09;
  /* Near black */
}

.core-service-card.theme-yellowish .img-wrapper {
  background: transparent !important;
}

/* Blue Theme - Left to Right Fade & Vanish to Black */
.core-service-card.theme-blue {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0.1) 60%, #000 100%);
  border: none !important;
  border-radius: 50px;
}

.core-service-card.theme-blue:hover {
  border-color: transparent !important;
}

.core-service-card.theme-blue .img-wrapper {
  background: transparent !important;
}

/* Silver/Gray Theme - Right to Left Fade & Vanish to Black */
.core-service-card.theme-yellow {
  background: linear-gradient(270deg, rgba(134, 134, 134, 0.4) 0%, rgba(134, 134, 134, 0.1) 60%, #000 100%);
  border: none !important;
  border-radius: 50px;
}

.core-service-card.theme-yellow:hover {
  border-color: transparent !important;
}

.core-service-card.theme-yellow .img-wrapper {
  background: transparent !important;
}

/* Green Theme - Right to Left Fade & Vanish to Black */
.core-service-card.theme-green {
  background: linear-gradient(270deg, rgba(34, 197, 94, 0.4) 0%, rgba(34, 197, 94, 0.1) 60%, #000 100%);
  border: none !important;
  border-radius: 50px;
}

.core-service-card.theme-green:hover {
  border-color: transparent !important;
}

.core-service-card.theme-green .img-wrapper {
  background: transparent !important;
}

/* Light Blue Theme Variant for RCS Business Card - Vanish to Black */
.core-service-card.theme-light-blue {
  background: linear-gradient(90deg, rgba(186, 230, 253, 0.4) 0%, rgba(186, 230, 253, 0.1) 60%, #000 100%);
  border: none !important;
  border-radius: 50px;
}

.core-service-card.theme-light-blue:hover {
  border-color: transparent !important;
}

.core-service-card.theme-light-blue h3 {
  color: #ffffff;
  /* White */
}

.core-service-card.theme-light-blue p {
  color: rgba(255, 255, 255, 0.8);
  /* Light grey/white */
}

.core-service-card.theme-light-blue strong {
  color: #ffffff;
  /* White */
}

.core-service-card.theme-light-blue .img-wrapper {
  background: transparent !important;
}

/* Image wrapper specific adjustment */
.core-service-card .img-wrapper {
  background: rgba(0, 0, 0, 0.2);
  /* Dark subtle background, no blue */
}

@media (max-width: 991px) {
  .core-service-card {
    text-align: center;
  }

  .core-service-card .rounded-end-4,
  .core-service-card .rounded-start-4 {
    border-radius: 0 0 24px 24px !important;
  }

  .core-service-card .img-wrapper {
    min-height: 300px !important;
    padding: 40px 0;
  }

  /* Reset order for alternate card on mobile so image is always bottom or top consistent */
  .core-service-card .row {
    flex-direction: column;
  }

  .core-service-card .col-lg-6.p-0.overflow-hidden {
    order: 2;
    /* Image always at bottom */
  }

  .core-service-card .col-lg-6.p-5 {
    order: 1;
    /* Text always at top */
  }
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 20px;
  color: #fff;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
}

/* Stats Section */
.stats-container {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  margin-top: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  background: linear-gradient(180deg, #fff, #bbb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  color: var(--text-grey);
  margin-top: 5px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: #080808;
}

.section-heading-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.service-card-new {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card-new:hover::after {
  opacity: 1;
}

.service-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 116, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card-new h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.sc-img-container {
  margin-top: 25px;
  padding: 30px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Interactive Section */
.interactive-section {
  padding: 100px 0;
  background: #050505;
}

.interactive-card {
  background: #111;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #222;
  height: 100%;
  transition: transform 0.3s ease;
}

.interactive-card:hover {
  border-color: #333;
}

.ic-content {
  padding: 40px;
}

.ic-content h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Partners */
.partners-section {
  padding: 80px 0;
  background: #080808;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.partners-grid:hover {
  opacity: 1;
}

.partners-grid img {
  height: 35px;
  filter: grayscale(100%) brightness(200%);
  transition: all 0.3s;
}

.partners-grid img:hover {
  filter: none;
  transform: scale(1.1);
}

/* One Platform */
.one-platform-section {
  padding: 100px 0;
  background: #000;
}

.platform-box {
  background: linear-gradient(145deg, #111 0%, #000 100%);
  border: 1px solid #1e293b;
  border-radius: 40px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.platform-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  transition: all 0.3s ease;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(77, 116, 255, 0.3);
}

/* Global Reach */
.global-section {
  padding: 120px 0;
  background: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.global-step {
  padding: 30px;
  border-radius: 20px;
  transition: background 0.3s;
}

.global-step:hover {
  background: rgba(255, 255, 255, 0.03);
}

.global-step h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .stats-container {
    margin-top: 30px;
    padding: 20px;
  }

  .stat-item {
    margin-bottom: 20px;
  }

  .platform-box {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .new-hero-section {
    padding-top: 100px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .section-heading-new {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .partners-grid {
    gap: 30px;
  }

  .partners-grid img {
    height: 25px;
  }
}

/* Interactive Messages Section Grid Layout */
.interactive-messages-section {
  padding: 80px 0;
  overflow: hidden;
}

.interactive-grid-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  /* Customized column ratios */
  grid-template-rows: 400px 300px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-card {
  background: #0f1623;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

.grid-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.3);
}

.grid-card.dark-bg {
  background: #111827;
}

/* Specific Grid Placements removed to allow auto-flow */

.text-cyan {
  color: #06b6d4;
  /* Cyan color */
}

.text-light-blue {
  color: #93c5fd !important;
  /* light blue */
}

.text-white-pure {
  color: #ffffff !important;
}

.section-heading-new {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .interactive-grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .grid-card {
    min-height: 300px;
    /* Default height for mobile items */
  }

  /* Reset specific columns for mobile stacked layout */
  .interactive-grid-container>div {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

.grid-col-span-2 {
  grid-column: span 2;
}

.interactive-messages-section {
  background-color: #000;
  padding: 100px 0;
}

.stats-showcase-section {
  background-color: #000;
  padding: 100px 0;
}

.enterprise-sms-section {
  background-color: #000;
  padding: 100px 0;
}

/* Responsive Breakpoints */

/* Tablet Layout (max-width: 991px) */
@media (max-width: 991px) {
  .interactive-grid-container {
    grid-template-columns: 1fr 1fr;
    /* 2 Columns for Tablet */
    grid-template-rows: auto;
  }

  .grid-card {
    min-height: 280px;
  }

  /* Merged card spans full width on tablet */
  .grid-col-span-2 {
    grid-column: span 2 !important;
  }
}

/* Mobile Layout (max-width: 767px) */
@media (max-width: 767px) {
  .interactive-grid-container {
    grid-template-columns: 1fr;
    /* 1 Column for Mobile */
    gap: 20px;
  }

  .grid-col-span-2 {
    grid-column: span 1 !important;
  }

  /* Ensure merged card internal items stack correctly */
  .grid-card h3 {
    font-size: 1.5rem !important;
  }

  .d-flex.align-items-end {
    height: 150px !important;
    /* Adjust chart height for mobile */
  }
}

/* Partnering Section Styles */
/* Partnering Section Styles */
.partners-section {
  background-color: #000000;
  /* Pure Black */
}

.dot-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* Premium dots - increased visibility */
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
  background-size: 35px 35px;
  /* Radial fade towards ALL edges */
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 90%);
}

.partner-logo {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
  filter: brightness(1.2);
  /* Slight pop against dark bg */
}

/* Global Communication Section */
.global-comm-section {
  background-color: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.global-diagram-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  /* Space for the radial layout */
  margin: 40px auto 0;
}


/* Global Communication Redesign V3 (Organic Staggered Layout) */
.global-v3-container {
  position: relative;
  width: 100%;
  height: 650px;
  max-width: 1050px;
  margin: 60px auto 0;
}

/* Compact Hub at Bottom */
.hub-v3-bottom {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  /* Scaled down */
  z-index: 10;
}

.hub-v3-img {
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

.hub-v3-glow {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 75%);
  filter: blur(40px);
  z-index: -1;
}

/* Organic SVG Connectors */
.connector-v3-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.path-v3 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

/* Scroll-triggered Animation */
.aos-animate .path-v3 {
  animation: draw-v3 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes draw-v3 {
  to {
    stroke-dashoffset: 0;
  }
}

/* Sequential Delays for Parallel Lines */
.path-v3-1 {
  animation-delay: 0.2s;
}

.path-v3-2 {
  animation-delay: 0.4s;
}

.path-v3-3 {
  animation-delay: 0.6s;
}

.path-v3-4 {
  animation-delay: 0.8s;
}

/* Staggered Glassmorphism Cards (Dim Colors V6) */
.feature-card-v3 {
  position: absolute;
  width: 250px;
  padding: 18px 22px;
  background: radial-gradient(circle at top left, rgba(30, 58, 138, 0.2), rgba(0, 0, 0, 0.98));
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card-v3:hover {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), rgba(0, 0, 0, 1));
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.2);
}

.feature-card-v3 h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* Precise Staggered Positions */
.v3-card-tl {
  top: 160px;
  left: 150px;
}

/* High Left */
.v3-card-tr {
  top: 60px;
  right: 100px;
}

/* Highest Right */
.v3-card-bl {
  top: 320px;
  left: 0;
}

/* Lowest Left */
.v3-card-br {
  top: 250px;
  right: 50px;
}

/* Mid-Low Right */

/* Mobile V3 */
@media (max-width: 991px) {
  .global-v3-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .connector-v3-svg,
  .hub-v3-glow {
    display: none;
  }

  .hub-v3-bottom {
    position: relative;
    top: auto !important;
    left: auto !important;
    transform: none;
    width: 85%;
    order: -1;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card-v3 {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 90%;
    max-width: 380px;
    margin: 0 auto;
    text-align: left;
  }
}

/* Footer Social Media Icons V3 */
.social-img-v3 {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.social-img-v3:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

/* Essential Use Cases Section */
.use-cases-section {
  padding: 80px 0;
  background-color: #000;
}

.use-cases-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.use-cases-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.use-case-header-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.use-case-header-row span {
  padding: 20px 30px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.use-case-header-row span:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.use-case-row:last-child {
  border-bottom: none;
}

.industry-col {
  padding: 25px 30px;
  color: #fff;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.description-col {
  padding: 25px 30px;
  color: #b0b5c1;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .use-case-header-row,
  .use-case-row {
    grid-template-columns: 1fr;
  }

  .use-case-header-row span:first-child,
  .industry-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .use-case-header-row {
    display: none;
  }
}