/* =========================
   TOP RUNNING BAR
========================= */

#maindiv {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #f8fbff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
}

#div1,
#div2 {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

#div1 b,
#div2 b {
  font-size: 15px;
  font-weight: 600;
  color: #2c73d9;
  padding-right: 80px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  #div1 b,
  #div2 b {
    font-size: 13px;
  }
}

/* =========================================
                HERO SECTION
========================================= */

.hero-section {
  position: relative;

  overflow: hidden;

  min-height: 100vh;

  background: #050816;

  display: flex;
  align-items: center;

  padding: 180px 0 120px;
}

/* =========================================
            BACKGROUND WRAPPER
========================================= */

.wrapper {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background-image:
    linear-gradient(rgba(5, 8, 22, 0.82), rgba(5, 8, 22, 0.9)),
    url("assets/img/hero-bg.jpg");

  background-size: cover;
  background-position: center;

  z-index: 0;
}

/* OVERLAY */

.hero-overlay {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

  background-size: 90px 90px;
}

/* =========================================
            PARTICLE ANIMATION
========================================= */

.circle_container {
  position: absolute;

  top: 50%;
  left: 50%;

  height: 10px;

  transform-origin: left center;
}

.circle {
  position: absolute;

  border-radius: 100%;

  background: rgba(34, 211, 238, 0.35);

  left: 0;

  opacity: 0;

  animation-name: move;

  animation-duration: 20s;

  animation-iteration-count: infinite;

  box-shadow: 0 0 10px rgba(34, 211, 238, 0.45);
}

@keyframes move {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: translateX(70vmin);
    opacity: 0;
  }
}

/* =========================================
                HERO CONTENT
========================================= */

.hero-content {
  position: relative;

  z-index: 5;
}

.hero-subtitle {
  display: inline-block;

  color: #22d3ee;

  font-size: 20px;

  font-weight: 700;

  margin-bottom: 22px;

  letter-spacing: 1px;
}

.hero-title {
  color: #fff;

  font-size: 78px;

  line-height: 1.08;

  font-weight: 800;

  margin-bottom: 30px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.74);

  font-size: 20px;

  line-height: 1.9;

  margin-bottom: 40px;

  max-width: 650px;
}

/* BUTTONS */

.hero-btns {
  display: flex;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 42px;

  border-radius: 60px;

  background: linear-gradient(135deg, #22d3ee, #143b8d);

  color: #fff;

  font-size: 17px;

  font-weight: 700;

  transition: 0.4s;

  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
}

.hero-btn:hover {
  transform: translateY(-5px);

  color: #fff;
}

.hero-btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 42px;

  border-radius: 60px;

  border: 2px solid rgba(255, 255, 255, 0.18);

  color: #fff;

  font-size: 17px;

  font-weight: 700;

  transition: 0.4s;

  backdrop-filter: blur(12px);
}

.hero-btn-outline:hover {
  background: #fff;

  color: #111;
}

/* =========================================
                HERO IMAGE
========================================= */

.hero-image {
  position: relative;

  z-index: 5;

  text-align: center;

  animation: floatImage 5s ease-in-out infinite;
}

.hero-image img {
  width: 100%;

  max-width: 650px;
}

/* FLOAT */

@keyframes floatImage {
  50% {
    transform: translateY(-18px);
  }
}

/* =========================================
                RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 62px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;

    padding-top: 160px;
  }

  .hero-content {
    margin-bottom: 70px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-text {
    margin: auto;
    margin-bottom: 35px;
  }

  .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;

    line-height: 1.8;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 100%;
  }
}
.hero-content {
  margin-top: -150 px;
}
.hero-image img {
  width: 115%;

  max-width: 780px;
}
.hero-section {
  padding: 60px 0 100px;
}
.hero-content {
  margin-top: 0;
}
/* BUTTON ARROW REMOVE */

.btn-style-one::before,
.btn-style-one::after,
.hero-btn::before,
.hero-btn::after {
  display: none !important;
  content: none !important;
}
.hero-btn,
.hero-btn-outline {
  text-decoration: none !important;
}
.hero-text {
  font-size: 18px;

  line-height: 1.8;
}

/* Color Palette from Message 160 Logo */
:root {
  --primary-blue: #3498db;
  --deep-blue: #102e6a;
  --teal-glow: #2bd6b4;
  --card-shadow: rgba(52, 152, 219, 0.15);
}

.premium-services {
  padding: 100px 0;
  background: #fdfdfe;
  overflow: hidden;
}

/* Section Title Styling */
.badge-title {
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary-blue);
  padding: 6px 15px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

.main-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--deep-blue);
  margin-top: 15px;
}

.title-glow-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--teal-glow));
  margin: 20px auto;
  border-radius: 10px;
}

/* Glassmorphism Card Design */
.glass-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px var(--card-shadow);
}

/* Hover Background Glow */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(52, 152, 219, 0.05),
    transparent
  );
  border-radius: 30px;
  z-index: -1;
}

/* Icon Animation with Organic Shape */
.icon-wrapper {
  position: relative;
  width: 85px;
  height: 85px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  font-size: 38px;
  color: var(--primary-blue);
  z-index: 2;
  transition: 0.4s;
}

.blob-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.08);
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: blobShape 6s infinite ease-in-out;
  transition: 0.4s;
}

@keyframes blobShape {
  0%,
  100% {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.glass-card:hover .blob-bg {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.glass-card:hover .icon-wrapper i {
  color: #fff;
  transform: rotateY(180deg);
}

/* Card Typography */
.glass-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.glass-card p {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Modern Arrow Button */
.arrow-link {
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.arrow-link i {
  transition: transform 0.3s;
}

.glass-card:hover .arrow-link {
  color: var(--deep-blue);
}

.glass-card:hover .arrow-link i {
  transform: translateX(10px);
}

:root {
  --primary-blue: #3498db;
  --dark-navy: #102e6a;
  --accent-cyan: #2bd6b4;
}

.sms-gateway-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Title Animation */
.main-title {
  font-weight: 800;
  color: var(--dark-navy);
}

.animated-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  margin: 15px auto;
  border-radius: 2px;
  animation: expandWidth 3s infinite alternate;
}

@keyframes expandWidth {
  from {
    width: 40px;
  }
  to {
    width: 100px;
  }
}

/* 3D Card Container */
.gateway-wrapper {
  perspective: 1000px; /* Essential for 3D effect */
}

.gateway-card-3d {
  background: linear-gradient(145deg, #4da3ff, #2980b9);
  border-radius: 24px;
  padding: 45px 25px;
  text-align: center;
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Hover: Tilt and Lift */
.gateway-card-3d:hover {
  transform: rotateX(10deg) rotateY(-10deg) translateY(-10px);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
}

/* Floating Icon Effect */
.icon-holder {
  height: 100px;
  margin-bottom: 25px;
  transform: translateZ(50px); /* Pushes icon forward in 3D space */
  transition: transform 0.6s ease;
}

.icon-holder img {
  max-width: 90px;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
  animation: floatIcon 4s infinite ease-in-out;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

/* Card Heading */
.gateway-card-3d h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: translateZ(30px); /* Pushes text forward */
}

/* Background Glow Effect on Hover */
.card-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    var(--accent-cyan),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gateway-card-3d:hover .card-bg-glow {
  opacity: 0.4;
}

/* Optional: Shine effect passing through card */
.gateway-card-3d::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.7s;
}

.gateway-card-3d:hover::after {
  left: 100%;
  top: 100%;
}
.sms-gateway-section {
  padding: 100px 0;
  background-color: #f4f8fb; /* Very light blue-grey */
}

:root {
  --brand-main: #3498db;
  --brand-dark: #102e6a;
  --brand-accent: #2bd6b4;
  --soft-bg: #f8fbff;
}

.marketing-dynamic-section {
  padding: 120px 0;
  background: var(--soft-bg);
  overflow: hidden;
  position: relative;
}

/* Visual Container Logic */
.visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-device {
  position: relative;
  z-index: 5;
  animation: deviceFloat 5s infinite ease-in-out;
  max-width: 85%;
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* Background Animated Circle */
.accent-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(52, 152, 219, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
  from {
    transform: scale(0.8);
    opacity: 0.5;
  }
  to {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Floating Elements (Icons) */
.element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 6;
  color: var(--brand-main);
  font-size: 24px;
}

.el-1 {
  top: 10%;
  left: 10%;
  animation: floatSlow 6s infinite;
}
.el-2 {
  bottom: 15%;
  left: 5%;
  animation: floatSlow 8s infinite reverse;
}
.el-3 {
  top: 5%;
  right: 15%;
  animation: floatSlow 7s infinite;
}
.el-4 {
  bottom: 20%;
  right: 10%;
  animation: floatSlow 5s infinite reverse;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -15px);
  }
}

/* Content Box Styling */
.highlight-tag {
  color: var(--brand-main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.dynamic-heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.2;
}

.dynamic-heading span {
  color: var(--brand-main);
  position: relative;
  display: inline-block;
}

.dynamic-heading span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(43, 214, 180, 0.2);
  z-index: -1;
}

/* Modern Button */
.btn-hire-now {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4da3ff, #2980b9);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
  box-shadow: 0 10px 20px rgba(41, 128, 185, 0.3);
  margin-top: 30px;
}

.btn-hire-now:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(41, 128, 185, 0.5);
  color: #fff;
}

.btn-icon {
  margin-left: 15px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card ki height aur spacing adjust karne ke liye updated CSS */
.gateway-card-3d.extended-box {
  min-height: 370px; /* Box ko lamba karne ke liye */
  padding: 50px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.icon-holder {
  margin-bottom: 0px;
  min-height: 50px; /* Icons ko ek alignment mein rakhne ke liye */
}

.gateway-card-3d h3 {
  margin-bottom: 20px;
  font-size: 19px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Description Styling */
.short-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
  transform: translateZ(20px); /* 3D depth ke liye */
  font-weight: 400;
}

/* Card hover par shadow aur brightness increase karne ke liye */
.gateway-card-3d:hover {
  filter: brightness(1.1);
}

/* Responsive fix: Mobile par lamba box zyada bada na lage */
@media (max-width: 991px) {
  .gateway-card-3d.extended-box {
    min-height: auto;
    margin-bottom: 20px;
  }
}

/* Pricing Section Theme Colors */
.theme-micro {
  --card-bg: linear-gradient(135deg, #57e3b6, #12a47b);
}
.theme-small {
  --card-bg: linear-gradient(135deg, #74b9ff, #0984e3);
}
.theme-medium {
  --card-bg: linear-gradient(135deg, #e056fd, #be2edd);
}
.theme-prime {
  --card-bg: linear-gradient(135deg, #00cec9, #008080);
}
.theme-enterprise {
  --card-bg: linear-gradient(135deg, #ff7675, #d63031);
}
.theme-powerhouse {
  --card-bg: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.pricing-section {
  background-color: #f4f7f6;
  padding: 80px 0;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header {
  background: var(--card-bg);
  padding: 40px 20px;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.price-value {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
  letter-spacing: -1px;
}

.sms-count {
  font-weight: 600;
  font-size: 18px;
  opacity: 0.9;
}

.features {
  list-style: none;
  padding: 30px 20px;
  margin-bottom: 20px;
}

.features li {
  padding: 10px 0;
  font-size: 14px;
  color: #636e72;
  border-bottom: 1px dashed #dfe6e9;
}

.btn-pay {
  display: inline-block;
  padding: 12px 40px;
  background: var(--card-bg);
  color: #fff !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 30px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover Animations */
.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.btn-pay:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Premium CTA Design */
.premium-cta-section {
  background: #f4f7fa;
}

.cta-wrapper {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-new {
  display: inline-block;
  background: rgba(74, 144, 226, 0.1);
  color: #4a90e2;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.cta-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1a2b48;
  line-height: 1.2;
}

.cta-heading span {
  color: #4a90e2;
}

.cta-desc {
  color: #64748b;
  font-size: 17px;
}

.trial-info {
  background: #f8fafc;
  padding: 15px 20px;
  border-radius: 15px;
  border-left: 4px solid #4a90e2;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #4a90e2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Action Side Blue Background */
.action-side {
  background: linear-gradient(135deg, #4a90e2 0%, #1e3a8a 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-modern-signup {
  display: inline-block;
  background: #ffffff;
  color: #4a90e2;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-modern-signup:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #f0f7ff;
  color: #1e3a8a;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .cta-wrapper {
    margin: 0 15px;
  }
  .cta-heading {
    font-size: 28px;
  }
}

/* Styling for "Why Choose Us" */
.why-choose-section {
  background: #fff;
  position: relative;
}

.title-main {
  color: #1e3a8a;
  font-weight: 800;
  font-size: 32px;
}
.title-sub {
  color: #64748b;
  font-size: 16px;
  max-width: 600px;
  margin: 10px auto;
}

/* Loader line under title */
.title-loader {
  width: 60px;
  height: 4px;
  background: #4a90e2;
  margin: 15px auto;
  border-radius: 10px;
  position: relative;
}

/* Feature Box Core */
.feature-box {
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: rgb(89 89 183 / 27%) 0px 7px 29px 0px;
  height: 100%;
  border: 1px solid #f1f5f9;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 5px solid #6690e2;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0;
  color: #1e3a8a;
  line-height: 1.4;
  transition: 0.3s;
}

.feature-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Icon Styling */
.icon-wrap {
  width: 70px;
  height: 70px;
  border: 2px solid #4a90e2;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 30px;
  transition: 0.5s;
  background: #f8fafc;
}

.color-1 {
  color: #4a90e2;
}
.color-2 {
  color: #f59e0b;
}
.color-3 {
  color: #10b981;
}
.color-4 {
  color: #25d366;
}
.color-5 {
  color: #8b5cf6;
}
.color-6 {
  color: #ef4444;
}

/* Hover Effects */
.feature-box:hover {
  transform: translateY(-10px);
  border-color: #4a90e2;
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.1);
}

.feature-box:hover .icon-wrap {
  transform: rotateY(360deg) scale(1.1);
  background: #4a90e2;
  color: #fff;
}

.feature-box:hover h4 {
  color: #4a90e2;
}

/* Background Hover Shape Animation */
.hover-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(74, 144, 226, 0.05);
  border-radius: 50%;
  transition: 0.6s;
  z-index: -1;
}

.feature-box:hover .hover-shape {
  transform: scale(8);
}

/* Consistency Styles */
.title-gradient {
  background: linear-gradient(
    45deg,
    #102e6a,
    #3498db
  ); /* Same as Pricing Title */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.accent-line {
  width: 50px;
  height: 3px;
  background: #4a90e2;
  margin-top: 10px;
}

/* Service Card Design */
.service-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid #edf2f7;
  height: 100%;
}

.service-img-top {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Gradients from your screenshot */
.seo-gradient {
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
}
.smo-gradient {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.ivr-gradient {
  background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

.floating {
  max-width: 70%;
  animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CTA Color - Same as "Get a Quote" */
.btn-cta-premium {
  display: inline-block;
  padding: 10px 30px;
  background: #4a90e2; /* Matching Blue */
  color: white !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-cta-premium:hover {
  background: #357abd;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Title Gradient */
.title-gradient {
  background: linear-gradient(45deg, #102e6a, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.header-blue {
  color: #102e6a;
}

/* CTA Button - Matching your Hero/Services button */
.btn-cta-main {
  display: inline-block;
  padding: 12px 40px;
  background: #4a90e2;
  color: white !important;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-cta-main:hover {
  background: #102e6a;
  transform: translateY(-2px);
}

/* Form Styling */
.custom-input {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
}

.captcha-box {
  background: #000;
  color: #fff;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 8px;
  letter-spacing: 3px;
}

.bg-blue-soft {
  background: rgba(74, 144, 226, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* Quote Section Main Background */
.quote-section {
  /* Halka sa gradient jo white se light blue ki taraf jata hai */
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

/* Background ko aur attractive banane ke liye decorative shapes (Optional) */
.quote-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(74, 144, 226, 0.05); /* Very light blue */
  border-radius: 50%;
  z-index: 0;
}

/* Form Container ka background white hi rakha hai taaki wo standout kare */
.quote-form-container {
  background: #ffffff !important;
  border: 1px solid rgba(74, 144, 226, 0.1);
  box-shadow: 0 20px 40px rgba(16, 46, 106, 0.08) !important;
  position: relative;
  z-index: 1;
}

/* Consistency check for Title & CTA */
.title-gradient {
  background: linear-gradient(45deg, #102e6a, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.btn-cta-main {
  background: #4a90e2; /* Same Light Blue CTA */
  color: white !important;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Section Background */
.team-section {
  background-color: #f0f7ff; /* Halka bluish background */
}

/* Card Container */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Image Wrappers (Matching your screenshot colors) */
.image-wrapper {
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper img {
  height: 90%;
  width: auto;
  transition: transform 0.4s ease;
}

.team-card:hover .image-wrapper img {
  transform: scale(1.1);
}

/* Background Colors from Screenshot */
.bg-tan {
  background-color: #b5af96;
}
.bg-blue {
  background-color: #4a90e2;
}
.bg-sky {
  background-color: #6fbcf0;
}
.bg-green {
  background-color: #8db546;
}

/* Content Box */
.content-box {
  border-top: 1px solid #f1f1f1;
}

/* Title Gradient (Consistency) */
.title-gradient {
  background: linear-gradient(45deg, #102e6a, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Section Base */
.premium-testimonial-section {
  background: #f8faff;
  position: relative;
}

/* Infinite Logo Slider Animation */
.logos-wrapper {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logo-track {
  display: inline-block;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 45px;
  margin: 0 40px;
  opacity: 0.6;
  transition: 0.4s ease;
  filter: grayscale(100%);
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Testimonial Card Styling */
.main-testimonial-card {
  background: linear-gradient(135deg, #4a90e2 0%, #102e6a 100%);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.quote-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(5px);
}

.testimonial-blockquote p {
  font-size: 1.8rem !important;
  line-height: 1.6;
}

/* Dots Styling */
.dot-premium {
  height: 6px;
  width: 30px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  border-radius: 10px;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

.dot-premium.active {
  background: #fff;
  width: 50px;
}

.nexiva-footer {
  background: linear-gradient(
    135deg,
    #16a34a 0%,
    #14532d 100%
  ); /* Premium Green Gradient */
  font-family: "Poppins", sans-serif;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #fff;
  color: #16a34a;
  transform: translateY(-3px);
}

.contact-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  color: #bef264; /* Lime green icon color */
}

/*ABOUT US PAGE CSS*/
/* Section Size Adjustment */
.about-hero-refined {
  background: #102e6a; /* Deep Blue from your Screenshot */
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px; /* Thoda kam size rakha hai vertical space ke liye */
  min-height: 75vh;
  display: flex;
  align-items: center;
}

/* Background Animation */
.mesh-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mesh-blob {
  position: absolute;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.3;
  animation: moveMesh 15s infinite alternate ease-in-out;
}

.mesh-1 {
  width: 500px;
  height: 500px;
  background: #4a90e2;
  top: -10%;
  right: -5%;
}
.mesh-2 {
  width: 450px;
  height: 450px;
  background: #16a34a;
  bottom: -5%;
  left: -5%;
  animation-delay: -7s;
}

@keyframes moveMesh {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(80px, 40px) scale(1.1);
  }
}

/* Typography & Gradient */
.text-gradient {
  background: linear-gradient(90deg, #4a90e2, #bef264);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9; /* Text readability improve karne ke liye */
  font-weight: 300;
}

.innovation-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: #bef264;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Buttons (No Arrows, Home Page Blue) */
.btn-main-blue {
  background: #4a90e2; /* Aapka Home Page wala Blue */
  color: white !important;
  padding: 14px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  border: none;
}

.btn-main-blue:hover {
  background: #fff;
  color: #102e6a !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-glass {
  padding: 14px 45px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 15px;
  transition: 0.3s;
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.z-3 {
  z-index: 3;
}

.about-info-section {
  background: #f8fbff; /* Very light blue background to distinguish from white */
  color: #333;
}

.section-title {
  color: #102e6a !important; /* Your Deep Blue */
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Card Styling */
.info-card-premium {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
  border-color: #4a90e2;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #4a90e2; /* Light Blue */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.info-card-premium h3 {
  color: #102e6a;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.info-card-premium p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Matching the green accent if needed */
.info-card-premium:nth-child(even) .icon-box {
  background: #16a34a; /* Nexiva Green */
}

/* Card Base Styling */
.info-card-premium {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth movement */
}

/* Background Hover Effect - Halka sa blue tint piche se aayega */
.info-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.05) 0%,
    rgba(22, 163, 74, 0.05) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover State */
.info-card-premium:hover {
  transform: translateY(-12px); /* Card thoda upar uthega */
  border-color: #4a90e2; /* Border color change hoga */
  box-shadow: 0 20px 40px rgba(16, 46, 106, 0.12); /* Deep shadow */
}

.info-card-premium:hover::before {
  opacity: 1;
}

/* Icon Box Animation */
.icon-box {
  width: 65px;
  height: 65px;
  background: #4a90e2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.6rem;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

/* Icon rotate aur scale hoga hover par */
.info-card-premium:hover .icon-box {
  transform: rotateY(360deg) scale(1.1);
  background: #102e6a; /* Deep Blue on hover */
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

/* Text Animations */
.info-card-premium h3 {
  color: #102e6a;
  font-weight: 700;
  transition: color 0.3s ease;
}

.info-card-premium:hover h3 {
  color: #4a90e2; /* Heading color change */
}

.info-card-premium p {
  transition: color 0.3s ease;
}

.info-card-premium:hover p {
  color: #333; /* Text thoda dark aur clear ho jayega */
}

.counter-section-premium {
  background: #102e6a; /* Matches your Hero Deep Blue */
  padding: 80px 0;
}

.counter-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.counter-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #4a90e2; /* Accent Blue */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.counter-icon {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  transition: 0.3s;
}

.counter-card:hover .counter-icon {
  color: #bef264; /* Vibrant Green from your branding */
  transform: scale(1.2);
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}

.cta-wave-section {
  background: linear-gradient(
    135deg,
    #102e6a 0%,
    #4a90e2 100%
  ); /* Deep Blue from Nexiva branding */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Moving Waves Animation */
.wave-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Content Styling */
.stats-strip {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
  gap: 25px;
}

.stats-strip i {
  color: #bef264; /* Vibrant Green */
  margin-right: 5px;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.offer-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-block;
  border: 1px dashed #bef264;
}

/* Glowing Button Animation */
.btn-glow-animation {
  background: #bef264;
  color: #102e6a !important;
  padding: 18px 50px;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(190, 242, 100, 0.4);
}

.btn-glow-animation:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(190, 242, 100, 0.7);
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.8rem;
  }
  .stats-strip {
    flex-direction: column;
    gap: 10px;
  }
}

.client-slider-section {
  background: #fff;
  overflow: hidden;
  padding: 60px 0;
}

.logos-slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.logos-track {
  display: flex;
  width: calc(250px * 12); /* Based on number of slides */
  animation: scrollLogos 30s linear infinite;
}

.slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.slide img {
  max-width: 150px;
  max-height: 60px;
  filter: grayscale(100%); /* Premium Look: Pehle black & white */
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* Hover par color aayega aur logo zoom hoga */
.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 6));
  }
}

/* Masking effect: Sides se fade out hoga */
.logos-slider::before,
.logos-slider::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.logos-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.states-coverage-section {
  background: #f4f7fa;
  padding: 80px 0;
}

.states-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.state-pill {
  background: #fff;
  color: #102e6a; /* Deep Blue from Nexiva branding */
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
}

/* Hover Animation */
.state-pill:hover {
  background: #102e6a;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(16, 46, 106, 0.2);
  border-color: #4a90e2;
}

/* Alternate Color for subtle variety */
.state-pill:nth-child(even):hover {
  background: #16a34a; /* Nexiva Green on hover */
  border-color: #bef264;
}

/* --- Services Section Styling --- */
.services-premium-section {
  background-color: #f8faff; /* Light subtle background to make cards pop */
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

/* --- Individual Card Styling --- */
.service-card-modern {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 24px;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(16, 46, 106, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Hover: Blue Gradient Slide-up --- */
.service-card-modern::before {
  content: "";
  position: absolute;
  bottom: -100%; /* Shuru mein card ke niche hidden rahega */
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #102e6a 0%,
    #1e4ea1 100%
  ); /* Nexiva Deep Blue theme */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
  border-radius: 24px;
}

.service-card-modern:hover::before {
  bottom: 0; /* Hover par upar slide hokar poore card ko cover karega */
}

/* --- Hover: Text & Link Color Change --- */
.service-card-modern:hover h3,
.service-card-modern:hover p,
.service-card-modern:hover .learn-more-link {
  color: #ffffff !important;
}

.service-card-modern:hover {
  transform: translateY(-15px) rotateX(5deg); /* 3D Tilt effect */
  box-shadow: 0 30px 60px rgba(16, 46, 106, 0.2);
}

/* --- Icon Wrapper & Floating Animation --- */
.card-icon-wrapper {
  margin-bottom: 30px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.floating-icon {
  max-width: 90px;
  height: auto;
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.service-card-modern:hover .floating-icon {
  animation-play-state: paused; /* Hover par floating stop hokar scale up hogi */
  transform: scale(1.1);
}

/* --- Typography --- */
.service-card-modern h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #102e6a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.service-card-modern p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

/* --- Learn More Link --- */
.learn-more-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a90e2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.learn-more-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #bef264; /* Highlight color on hover */
  transition: width 0.3s ease;
}

.service-card-modern:hover .learn-more-link::after {
  width: 100%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .service-card-modern {
    padding: 35px 25px;
  }
  .service-card-modern h3 {
    font-size: 1.25rem;
  }
}

.pricing-table-section {
  background: #ffffff;
}

.title-line {
  width: 60px;
  height: 4px;
  background: #4a90e2;
  border-radius: 2px;
  margin-top: 10px;
}

.custom-pricing-table {
  border-collapse: separate;
  border-spacing: 0;
}

.custom-pricing-table thead th {
  background-color: #4a90e2 !important; /* Screenshot wala blue tone */
  color: white;
  padding: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
}

.custom-pricing-table tbody td {
  padding: 18px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
  color: #444;
}

.custom-pricing-table tbody tr:hover {
  background-color: #f8faff;
  transition: 0.3s ease;
}

/* Buttons Styling */
.btn-call {
  background-color: #28a745;
  color: white;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-buy {
  background-color: #4a90e2;
  color: white;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-call:hover,
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Premium Row Highlight */
.table-premium {
  background-color: #fffef0;
}

@media (max-width: 768px) {
  .custom-pricing-table {
    min-width: 600px; /* Mobile par scroll allow karne ke liye */
  }
}

/* --- Pricing Table Section Styling --- */
.pricing-table-section {
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.title-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #102e6a, #4a90e2);
  border-radius: 10px;
  margin-top: 15px;
}

/* --- Table Wrapper --- */
.table-responsive {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

/* --- Table Headers --- */
.custom-pricing-table thead th {
  background-color: #4a90e2 !important; /* Premium Blue from screenshot */
  color: #ffffff;
  padding: 22px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  text-align: center;
}

.custom-pricing-table thead th:first-child {
  text-align: left; /* Pack name left aligned rahega */
}

/* --- Table Body Rows --- */
.custom-pricing-table tbody td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-align: center;
}

.custom-pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

/* --- Row Hover Effect --- */
.custom-pricing-table tbody tr {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.custom-pricing-table tbody tr:hover {
  background-color: #f8fbff !important;
  transform: scale(1.005);
}

.custom-pricing-table tbody tr:hover td {
  color: #102e6a;
}

/* --- Specific Elements Styling --- */
.badge.bg-success {
  background-color: #e8f5e9 !important;
  color: #2e7d32 !important;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid #c8e6c9;
}

.text-primary.fw-bold {
  color: #102e6a !important;
  font-size: 1.05rem;
}

/* --- Action Buttons --- */
.btn-call {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.btn-buy {
  background: linear-gradient(135deg, #102e6a 0%, #4a90e2 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(16, 46, 106, 0.2);
}

.btn-call:hover,
.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Premium Highlight Row --- */
.table-premium {
  background-color: #fffaf0 !important; /* Gold tint for high value pack */
}

/* --- Responsive Table Fix --- */
@media (max-width: 991px) {
  .custom-pricing-table {
    min-width: 800px; /* Tablet/Mobile par horizontal scroll enable karne ke liye */
  }
}

/* --- Hero Section Styling --- */
.nexiva-product-hero {
  background: #0f172a; /* Deep Slate/Navy Background */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* --- Glassmorphism Form --- */
.glass-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.glass-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #4facfe !important;
  padding: 12px 20px;
  border-radius: 10px;
  width: 100%;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Features & Text --- */
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.text-gradient {
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.innovation-tag {
  background: rgba(79, 172, 254, 0.1);
  color: #4facfe;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-block;
  border: 1px solid rgba(79, 172, 254, 0.2);
}

/* --- Mesh Gradients (Floating Blobs) --- */
.mesh-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mesh-blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.4;
}
.mesh-1 {
  width: 400px;
  height: 400px;
  background: #1e3a8a;
  top: -100px;
  right: -100px;
}
.mesh-2 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  bottom: -50px;
  left: -50px;
}

/* --- Analytics Showcase --- */
.analytics-showcase {
  background: #ffffff;
  padding: 100px 0;
}

.text-slate {
  color: #1e293b; /* Premium Slate Grey */
}

/* --- Dashboard Image Container --- */
.dashboard-preview-container {
  position: relative;
  padding: 10px;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1),
    rgba(16, 46, 106, 0.05)
  );
  border-radius: 25px;
}

.dashboard-preview-container img {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}

.dashboard-preview-container:hover img {
  transform: scale(1.02);
}

.glass-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* --- Feature Items --- */
.info-point-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  font-size: 24px;
  color: #4a90e2; /* Blue from previous sections */
  margin-top: 2px;
}

.info-text h5 {
  color: #102e6a; /* Nexiva Deep Blue */
  font-size: 1.2rem;
}

.info-text p {
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .analytics-showcase {
    padding: 60px 0;
  }
  .dashboard-preview-container {
    margin-bottom: 40px;
  }
}

/* --- Effectiveness Section --- */
.email-effectiveness {
  overflow: hidden;
}

.eff-item {
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease;
}

.eff-item:hover {
  transform: translateX(10px);
}

.eff-icon {
  font-size: 20px;
  color: #4facfe; /* Cyan-blue icon color */
  flex-shrink: 0;
}

.eff-text h6 {
  margin-bottom: 5px;
  color: #102e6a !important; /* Nexiva Deep Blue */
}

/* --- Illustration & Animation --- */
.illustration-holder {
  position: relative;
  display: inline-block;
}

.bg-circle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: rgba(79, 172, 254, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.floating-img {
  position: relative;
  z-index: 2;
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* --- Mobile Fix --- */
@media (max-width: 991px) {
  .bg-circle-glow {
    width: 250px;
    height: 250px;
  }
}

/* --- Benefits Section Styling --- */
.email-benefits {
  background: #f8fbff;
  padding: 80px 0;
}

.text-blue-dark {
  color: #102e6a; /* Nexiva Signature Deep Blue */
}

/* --- Benefit Cards --- */
.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 46, 106, 0.1);
  border-color: rgba(74, 144, 226, 0.2);
}

/* --- Center Icon & Pulse Effect --- */
.center-icon-wrapper {
  position: relative;
  padding: 40px;
}

.floating-3d {
  animation: float3d 4s ease-in-out infinite;
  z-index: 2;
  position: relative;
  max-width: 200px;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulseGlow 3s ease-out infinite;
  z-index: 1;
}

@keyframes float3d {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* --- Mobile Fix --- */
@media (max-width: 991px) {
  .benefit-card {
    margin-bottom: 20px;
    text-align: center;
  }
  .center-icon-wrapper {
    display: none; /* Mobile par clean dikhne ke liye image hide kar sakte hain */
  }
}

/* --- Why Choose Nexiva Section --- */
.why-choose-nexiva {
  padding: 100px 0;
}

.nexiva-benefit-list {
  padding-right: 30px;
}

.nexiva-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f8faff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.nexiva-point:hover {
  border-left: 4px solid #4a90e2;
  transform: translateX(10px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.point-icon {
  color: #4a90e2; /* Nexiva Blue */
  font-size: 20px;
  flex-shrink: 0;
}

.point-text p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Floating Illustration --- */
.floating-animation {
  animation: nexivaFloat 4s ease-in-out infinite;
}

@keyframes nexivaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .nexiva-benefit-list {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

/* --- Cost-Effective Section --- */
.nexiva-cost-effective {
  padding: 100px 0;
}

.description-text p {
  line-height: 1.8;
  font-size: 1.05rem;
}

/* --- Styled Border Box (as per screenshot) --- */
.blue-border-box {
  border: 3px solid #2563eb; /* Bright Blue border */
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.blue-border-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

/* --- Nexiva Outline Button --- */
.btn-outline-nexiva {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-nexiva:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}

/* --- Text Gradient --- */
.text-gradient {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* --- Nexiva Signature CTA Button --- */
.btn-outline-nexiva {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px; /* Modern Rounded Pill Shape */
  border: 2px solid #2563eb; /* Signature Blue Border */
  color: #2563eb;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Hover Effect: Gradient Fill like Previous Sections */
.btn-outline-nexiva:hover {
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
}

/* Background Slide Effect */
.btn-outline-nexiva::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    #1e3a8a 0%,
    #2563eb 100%
  ); /* Nexiva Deep Blue to Blue */
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-outline-nexiva:hover::before {
  width: 100%;
}

/* For active/click state */
.btn-outline-nexiva:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(37, 99, 235, 0.2);
}

/* --- Final CTA Section --- */
.final-cta-section {
  padding: 80px 0;
  background: #fcfdfe;
}

.cta-gradient-card {
  background: #0f172a; /* Deep Navy Base */
  border-radius: 30px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

/* --- Animated Mesh Blobs --- */
.cta-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: #2563eb;
  top: -100px;
  left: -100px;
  animation: moveBlob 10s infinite alternate;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #00f2fe;
  bottom: -150px;
  right: -100px;
  animation: moveBlob 8s infinite alternate-reverse;
}

@keyframes moveBlob {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(50px, 100px);
  }
}

/* --- Typography & Colors --- */
.text-cyan {
  color: #00f2fe;
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

/* --- Buttons --- */
.btn-cta-primary {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(90deg, #2563eb 0%, #00f2fe 100%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  margin: 10px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
  color: white;
}

.btn-cta-glass {
  display: inline-block;
  padding: 16px 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn-cta-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .cta-gradient-card {
    padding: 50px 20px;
  }
  .display-5 {
    font-size: 1.8rem;
  }
}
/* --- Final CTA Section (Compact) --- */
.final-cta-section {
  padding: 60px 0; /* Padding thoda kam kiya */
  background: #fcfdfe;
}

.cta-gradient-card {
  background: #0f172a;
  border-radius: 20px; /* Thoda kam rounded */
  padding: 50px 30px; /* Padding reduced for compact look */
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

/* Heading size chota kiya */
.cta-gradient-card h2 {
  font-size: 1.85rem !important; /* Pehle display-5 tha, ab kaafi compact hai */
  line-height: 1.3;
}

/* Paragraph size chota kiya */
.cta-gradient-card p.lead {
  font-size: 0.95rem !important; /* Compact Lead text */
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Buttons ko thoda sleek kiya */
.btn-cta-primary {
  display: inline-block;
  padding: 12px 35px; /* Compact padding */
  font-size: 0.9rem;
  background: linear-gradient(90deg, #2563eb 0%, #00f2fe 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  margin: 8px;
}

.btn-cta-glass {
  display: inline-block;
  padding: 12px 35px; /* Compact padding */
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 8px;
}

/* Mobile font adjustments */
@media (max-width: 768px) {
  .cta-gradient-card h2 {
    font-size: 1.5rem !important;
  }
  .cta-gradient-card p.lead {
    font-size: 0.85rem !important;
  }
}

/* --- Contact Form Styles --- */
.nexiva-contact-section {
  background: linear-gradient(135deg, #f8faff 0%, #e0e7ff 100%);
  position: relative;
}

.contact-glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Custom Input Styling */
.custom-input {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease !important;
}

.custom-input:focus {
  background: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.1) !important;
}

/* Captcha Styling */
.captcha-box {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 10px;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  letter-spacing: 5px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.captcha-code {
  font-size: 1.2rem;
  font-style: italic;
}

/* Label Styling for Floating Labels */
.form-floating > label {
  color: #64748b;
  padding-left: 15px;
}

/* Reuse the Nexiva Button Style from before */
.btn-outline-nexiva {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-outline-nexiva:hover {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  transform: translateY(-2px);
}

/* --- Reseller Page Styling --- */
.bg-soft-blue {
  background-color: rgba(37, 99, 235, 0.1);
}

.text-blue-dark {
  color: #1e3a8a; /* Your Brand Color */
}

.feature-card-glass {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.feature-card-glass:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-color: #2563eb;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #f1f5f9;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 1.5rem;
}

.nexiva-check-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #475569;
}

.nexiva-check-list li i {
  color: #2563eb;
  font-weight: bold;
  margin-right: 15px;
}

.contact-highlight-box {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.text-cyan {
  color: #00f2fe;
}

/* Documentation Custom Styling */
.bg-soft-blue {
  background-color: rgba(37, 99, 235, 0.1);
}
.text-blue {
  color: #2563eb;
}
.text-cyan {
  color: #00f2fe;
}
.btn-cyan {
  background: #00f2fe;
  color: #0f172a;
  border: none;
}
.btn-cyan:hover {
  background: #2563eb;
  color: #fff;
}

.docs-card {
  border: 1px solid #edf2f7;
}

.step-list {
  padding-left: 20px;
  list-style-type: none;
}

.step-list li {
  position: relative;
  padding-bottom: 15px;
  padding-left: 15px;
  border-left: 2px solid #e2e8f0;
  font-size: 0.95rem;
}

.step-list li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #2563eb;
  border-radius: 50%;
}

.accordion-button:not(.collapsed) {
  background-color: #f8faff;
  color: #2563eb;
  box-shadow: none;
}

.reseller-card {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.text-gradient {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Optimization for Pricing Tables */
@media (max-width: 768px) {
  .custom-pricing-table thead th {
    font-size: 12px;
    padding: 10px 5px !important;
  }

  .custom-pricing-table tbody td {
    font-size: 11px;
    padding: 8px 5px !important;
    vertical-align: middle;
  }

  /* Buttons ko chota aur compact banane ke liye */
  .btn-sm.btn-buy,
  .btn-sm.btn-call {
    padding: 4px 8px;
    font-size: 10px;
    white-space: nowrap; /* Button text wrap na ho */
  }

  /* Container ki horizontal padding kam karein taki table ko jagah mile */
  .pricing-table-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Table responsive wrapper ko smooth scroll dene ke liye */
  .table-responsive {
    border: none;
    -webkit-overflow-scrolling: touch;
  }
}

/* --- Global Table Container Fix --- */
.pricing-table-section .container {
  max-width: 1140px; /* Nav bar ki line se match karne ke liye */
}

.custom-pricing-table {
  table-layout: fixed; /* Columns ko limit mein rakhne ke liye */
  width: 100% !important;
}

/* PC Column Widths (Nav ki line mein rakhne ke liye) */
.custom-pricing-table th:nth-child(1),
.custom-pricing-table td:nth-child(1) {
  width: 35%;
} /* PACK */

.custom-pricing-table th:nth-child(2),
.custom-pricing-table td:nth-child(2) {
  width: 25%;
} /* PRICE */

.custom-pricing-table th:nth-child(3),
.custom-pricing-table td:nth-child(3) {
  width: 20%;
} /* VALIDITY */

.custom-pricing-table th:nth-child(4),
.custom-pricing-table td:nth-child(4) {
  width: 20%;
} /* BUY BUTTON */

/* --- Responsive Fix for Mobile --- */
@media (max-width: 768px) {
  .custom-pricing-table {
    table-layout: auto; /* Mobile par flexible rehne dein */
  }

  .custom-pricing-table thead th {
    font-size: 11px;
    padding: 10px 5px !important;
  }

  .custom-pricing-table tbody td {
    font-size: 11px;
    padding: 12px 5px !important;
  }

  .btn-sm.btn-buy,
  .btn-sm.btn-call {
    padding: 5px 10px;
    font-size: 10px;
    display: block; /* Mobile par button full width rahega taki click asan ho */
    width: 100%;
  }

  /* Table horizontal scroll bar ko hide karne ke liye agar zaroorat na ho */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
  }
}

/* --- Global Typography Standards --- */

/* 1. Headings (H2 for Section Titles) */
h2,
.section-title {
  font-size: 2rem !important; /* PC par clean aur balanced size */
  font-weight: 700 !important;
  color: navy !important; /* Dark Navy Slate */
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* 2. Sub-headings (H4 for Cards & Documentation) */
h4 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #334155 !important; /* Medium Dark Slate */
  margin-bottom: 0.8rem;
}

/* 4. Text Gradient (For Nexiva Emphasis) */
.text-gradient {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* --- Mobile Responsive (Adjusting sizes for smaller screens) --- */
@media (max-width: 768px) {
  h2,
  .section-title {
    font-size: 1.5rem !important; /* Mobile par thoda chota */
  }

  h4 {
    font-size: 1.1rem !important;
  }

  p,
  .text-muted {
    font-size: 0.9rem !important; /* Mobile readability */
  }
}
/* --- Global Typography Standards matched to Brand Visuals --- */

h2,
.section-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #2b5a9e !important; /* Deep Professional Blue from Logo */
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center;
}

h4 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #1e293b !important; /* Dark Slate for Sub-headers */
  margin-bottom: 0.8rem;
}

/* Footer description style */
.footer-desc {
  font-size: 0.95rem !important; /* Global P size se match karta hua */
  color: #ffffff !important; /* Pure White */
  line-height: 1.7 !important;
  font-weight: 400;
  opacity: 0.9; /* Thoda soft look ke liye */
}

/* --- Hero Section Responsive Fixes --- */

@media (max-width: 991px) {
  .hero-section {
    padding-top: 80px; /* Header ke liye space */
    padding-bottom: 50px;
    text-align: center; /* Sab kuch center karne ke liye */
  }

  .hero-content {
    margin-bottom: 40px; /* Text aur Image ke beech gap */
  }

  .hero-title {
    font-size: 1.8rem !important; /* Mobile par heading choti */
    line-height: 1.2;
  }

  .hero-text {
    font-size: 0.9rem !important;
    padding: 0 10px;
  }

  .hero-btns {
    display: flex;
    flex-direction: column; /* Buttons ek ke niche ek */
    gap: 15px;
    align-items: center;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 80%; /* Buttons thode bade aur touch-friendly */
    text-align: center;
  }

  .hero-image img {
    max-width: 90%; /* Image screen se bahar na jaye */
    height: auto;
    margin: 0 auto;
  }
}

/* Chote Mobile Screens ke liye Extra Tuning */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem !important;
  }

  .min-vh-100 {
    min-height: auto !important; /* Mobile par force full height hatana behtar hai */
    padding-top: 50px;
  }
}

/* Section Subtitle: Small & Black */
.section-subtitle {
  font-size: 1rem !important; /* Font size thoda kam kiya */
  color: #1e293b !important; /* Deep Black-Slate (Premium look ke liye) */
  font-weight: 400;
  line-height: 1.6;
  margin-top: -10px; /* Heading ke thoda paas dikhane ke liye */
  margin-bottom: 30px;
  opacity: 0.85; /* Pure pitch black se thoda soft rakha hai professional dikhne ke liye */
}

/* Mobile par aur bhi clean dikhe */
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 0.85rem !important;
    padding: 0 15px;
  }
}

.section-subtitle {
  font-size: 1rem !important; /* Font size thoda kam kiya */
  color: #1e293b !important; /* Deep Black-Slate (Premium look ke liye) */
  font-weight: 400;
  line-height: 1.6;
  margin-top: -10px; /* Heading ke thoda paas dikhane ke liye */
  margin-bottom: 30px;
  opacity: 0.85; /* Pure pitch black se thoda soft rakha hai professional dikhne ke liye */
}

/* Mobile par bhi same size maintain rakhenge */
@media (max-width: 768px) {
  .sub-heading {
    font-size: 1rem !important;
    text-align: center;
  }
}

/* CTA Section Title: Pure White */
.cta-title {
  font-size: 2.2rem !important; /* CTA ke liye thoda bada aur impact-full size */
  font-weight: 700 !important;
  color: #ffffff !important; /* Pure White as requested */
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

/* Mobile Responsive for CTA */
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.6rem !important; /* Mobile par screen ke hisab se scale down */
    padding: 0 10px;
  }
}

/* --- Pricing Hero Mobile Alignment --- */

@media (max-width: 991px) {
  .about-hero-refined {
    padding: 80px 0 60px 0 !important; /* Top space for navbar */
    text-align: center;
  }

  /* H1 Title Scaling */
  .about-hero-refined h1.display-3 {
    font-size: 1.8rem !important; /* Mobile par heading choti aur balanced */
    line-height: 1.3 !important;
    padding: 0 10px;
  }

  /* Description Scaling */
  .hero-description {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    padding: 0 15px;
    margin-bottom: 30px !important;
    color: rgba(
      255,
      255,
      255,
      0.9
    ) !important; /* White color with slight opacity */
  }

  /* Innovation Tag */
  .innovation-tag {
    font-size: 0.75rem !important;
    padding: 6px 15px !important;
    display: inline-block;
    margin-bottom: 20px !important;
  }

  /* Buttons Alignment */
  .hero-btns-group {
    display: flex;
    flex-direction: column; /* Buttons ek ke niche ek stack honge */
    gap: 15px;
    align-items: center;
  }

  .btn-main-blue,
  .btn-outline-glass {
    width: 85% !important; /* Mobile par buttons ki width badha di takki click easy ho */
    padding: 12px 0 !important;
    margin: 0 !important;
  }

  /* Mesh Blobs (Background) Adjustment */
  .mesh-1,
  .mesh-2 {
    width: 250px !important;
    height: 250px !important;
    filter: blur(
      60px
    ) !important; /* Mobile par blur zyada takki content saaf dikhe */
  }
}

/* Extra Small Devices */
@media (max-width: 576px) {
  .about-hero-refined h1.display-3 {
    font-size: 1.6rem !important;
  }
}

/* =========================
   MOBILE RESPONSIVE TABLE
========================= */

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.custom-pricing-table {
  min-width: 650px;
}

/* TABLET */
@media (max-width: 991px) {
  .pricing-table-section h2 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  .custom-pricing-table th,
  .custom-pricing-table td {
    padding: 14px 12px;
    font-size: 14px;
    vertical-align: middle;
    white-space: nowrap;
  }

  .btn-buy,
  .btn-call {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .pricing-table-section {
    padding: 50px 0;
  }

  .pricing-table-section h2 {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }

  .pricing-table-section p {
    font-size: 0.9rem !important;
    padding: 0 10px;
  }

  .custom-pricing-table {
    min-width: 600px;
  }

  .custom-pricing-table th,
  .custom-pricing-table td {
    padding: 12px 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .btn-buy,
  .btn-call {
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .pricing-table-section h2 {
    font-size: 1.2rem !important;
  }

  .pricing-table-section p {
    font-size: 0.85rem !important;
  }

  .custom-pricing-table {
    min-width: 550px;
  }

  .custom-pricing-table th,
  .custom-pricing-table td {
    font-size: 12px;
    padding: 10px 8px;
  }

  .btn-buy,
  .btn-call {
    font-size: 11px;
    padding: 6px 10px;
  }
}
/* MOBILE TABLE FIX */

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.custom-pricing-table {
  width: 100%;
  min-width: 100%;
}

.custom-pricing-table th,
.custom-pricing-table td {
  white-space: normal;
  word-break: break-word;
}

/* MOBILE */
@media (max-width: 767px) {
  .custom-pricing-table th,
  .custom-pricing-table td {
    font-size: 12px;
    padding: 10px 6px;
  }

  .btn-buy,
  .btn-call {
    font-size: 11px;
    padding: 6px 8px;
  }

  .pricing-table-section h2 {
    font-size: 1.3rem !important;
  }

  .pricing-table-section p {
    font-size: 0.85rem !important;
  }
}

/* =========================
   HERO BUTTON RESPONSIVE
========================= */

.hero-btns-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 767px) {
  .hero-btns-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .hero-btns-group a {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .btn-main-blue,
  .btn-outline-glass {
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
    border-radius: 12px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .btn-main-blue,
  .btn-outline-glass {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* =========================
   SERVICES MOBILE ALIGNMENT
========================= */

.premium-services .row {
  row-gap: 24px;
}

.glass-card {
  height: 100%;
}

.service-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.arrow-link {
  margin-top: auto;
}

/* TABLET */
@media (max-width: 991px) {
  .premium-services .col-md-6 {
    display: flex;
  }

  .glass-card {
    width: 100%;
  }

  .main-title {
    font-size: 2rem;
    line-height: 1.3;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .premium-services {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px !important;
  }

  .main-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.9rem !important;
    padding: 0 10px;
    line-height: 1.7;
  }

  .premium-services .row {
    row-gap: 20px;
  }

  .premium-services .col-lg-4,
  .premium-services .col-md-6 {
    width: 100%;
  }

  .glass-card {
    width: 100%;
    border-radius: 20px;
  }

  .service-content {
    padding: 25px 20px;
    text-align: center;
    align-items: center;
  }

  .icon-wrapper {
    margin-bottom: 18px;
  }

  .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .arrow-link {
    justify-content: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .main-title {
    font-size: 1.3rem;
  }

  .service-content {
    padding: 22px 18px;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

  .service-content p {
    font-size: 0.85rem;
  }
}

/* =========================
   HERO BUTTONS RESPONSIVE
========================= */

.hero-btns-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 767px) {
  .hero-btns-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btns-group a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .btn-main-blue,
  .btn-outline-glass {
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
    border-radius: 12px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .btn-main-blue,
  .btn-outline-glass {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* =========================
   ABOUT SECTION RESPONSIVE
========================= */

.about-info-section {
  overflow: hidden;
}

/* GRID FIX */
.about-info-section .row.g-4 {
  row-gap: 24px;
}

/* CARD HEIGHT SAME */
.info-card-premium {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* TABLET */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .about-info-section h4 {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .lead-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-info-section {
    padding: 60px 0;
  }

  .about-info-section .row.g-4 {
    row-gap: 20px;
  }

  .about-info-section .col-md-6 {
    width: 100%;
  }

  .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3;
  }

  .about-info-section h4 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .lead-text {
    font-size: 0.92rem;
    line-height: 1.8;
    padding: 0 10px;
  }

  .info-card-premium {
    padding: 25px 20px;
    border-radius: 18px;
    text-align: center;
    align-items: center;
  }

  .icon-box {
    margin-bottom: 18px;
  }

  .info-card-premium h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .info-card-premium p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.35rem !important;
  }

  .about-info-section h4 {
    font-size: 0.95rem;
  }

  .lead-text {
    font-size: 0.85rem;
  }

  .info-card-premium {
    padding: 22px 18px;
  }

  .info-card-premium h3 {
    font-size: 1.05rem;
  }

  .info-card-premium p {
    font-size: 0.84rem;
  }
}

/* =========================
   FOOTER MOBILE RESPONSIVE
========================= */

.nexiva-footer {
  overflow: hidden;
}

/* FOOTER LINKS */
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.8;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* TABLET */
@media (max-width: 991px) {
  .nexiva-footer .row.g-4 {
    row-gap: 35px;
  }

  .footer-desc {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .nexiva-footer {
    padding: 60px 0 30px;
    text-align: center;
  }

  .nexiva-footer .row.g-4 {
    row-gap: 30px;
  }

  .nexiva-footer .col-lg-5,
  .nexiva-footer .col-lg-3,
  .nexiva-footer .col-lg-4 {
    width: 100%;
  }

  .nexiva-footer h3 {
    font-size: 1.7rem;
    margin-bottom: 18px !important;
  }

  .nexiva-footer h5 {
    font-size: 1.1rem;
    margin-bottom: 18px !important;
  }

  .footer-desc {
    font-size: 0.92rem;
    line-height: 1.9;
    padding: 0 10px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 0.92rem;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
    font-size: 0.9rem;
    gap: 8px;
  }

  .social-links {
    justify-content: center;
    margin-top: 20px;
  }

  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-logo {
    margin-top: 15px;
  }

  hr {
    margin: 35px 0 !important;
  }

  .small {
    font-size: 0.82rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .nexiva-footer h3 {
    font-size: 1.5rem;
  }

  .nexiva-footer h5 {
    font-size: 1rem;
  }

  .footer-desc,
  .footer-links a,
  .contact-item {
    font-size: 0.85rem;
  }

  .footer-logo span {
    font-size: 1.2rem !important;
  }
}

/* =========================
   NAVBAR GAP FIX
========================= */

.navbar-nav {
  display: flex;
  align-items: center;
}
.navbar-collapse {
  flex-grow: inherit;
}

/* DESKTOP GAP */
.navbar-nav .nav-item {
  margin-right: 0px;
}

/* LAST ITEM */
.navbar-nav .nav-item:last-child {
  margin-right: 0;
}

/* MOBILE */
@media (max-width: 991px) {
  .navbar-nav .nav-item {
    margin-right: 0;
    margin-bottom: 0px;
  }

  .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
}

/* --- Compact Sticky Sidebar --- */
.nexiva-sticky-sidebar {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Pehle se kam gap */
}

.sidebar-box {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  transition: all 0.4s ease;
  position: relative;
  right: -110px; /* Text chota hone ki wajah se value kam ki */
}

.sidebar-box:hover {
  right: 0;
}

.icon-holder {
  width: 40px; /* Size 50px se 40px kar diya */
  height: 40px; /* Size 50px se 40px kar diya */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* Icon thoda chota */
  color: white;
  /* box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1); */
  border-radius: 6px 0 0 6px;
  position: relative;
  z-index: 2;
}

.text-label {
  background: inherit;
  color: white;
  padding: 0 12px; /* Side padding kam ki */
  height: 40px; /* Height icon holder ke barabar */
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 13px; /* Font size thoda kam kiya */
  min-width: 110px;
  border-radius: 6px 0 0 6px;
}

/* Colors matching your brand */
.dlt-box {
  background-color: #2b5a9e;
}
.whatsapp-box {
  background-color: #25d366;
}

/* Mobile View Fix */
@media (max-width: 768px) {
  .nexiva-sticky-sidebar {
    bottom: 20px;
    right: 10px;
  }
  .icon-holder {
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 50% !important;
  }
}

/* Pricing Action Container: Equal Width Buttons */
.pricing-actions {
  display: flex;
  gap: 10px; /* Buttons ke beech ka gap */
  margin: 25px 0 10px 0;
  padding: 0 15px; /* Card ki side padding se match karein */
}

.btn-book-now,
.btn-whatsapp-small {
  flex: 1; /* Dono buttons ko barabar width dene ke liye */
  height: 45px; /* Same height lock kar di */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  color: white !important;
}

/* Book Now Button Style */
.btn-book-now {
  background: #2b5a9e; /* Nexiva Blue */
}

.btn-book-now:hover {
  background: #1e447a;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(43, 90, 158, 0.2);
}

/* WhatsApp Button Style */
.btn-whatsapp-small {
  background: #25d366; /* WhatsApp Green */
}

.btn-whatsapp-small:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(37, 211, 102, 0.2);
}

/* Mobile Alignment Fix */
@media (max-width: 576px) {
  .btn-book-now,
  .btn-whatsapp-small {
    font-size: 13px;
    height: 42px; /* Mobile par thoda compact */
  }
}

/* Modal Glassmorphism & Styling */
#dltModal .modal-content {
  background: #ffffff;
  border: none;
}

#dltModal .modal-header {
  background: linear-gradient(135deg, #2b5a9e, #1e447a) !important;
}

#dltModal .form-control {
  border: 1px solid #e2e8f0;
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#dltModal .form-control:focus {
  border-color: #2b5a9e;
  box-shadow: 0 0 0 3px rgba(43, 90, 158, 0.1);
}

#dltModal .btn-primary {
  background: #2b5a9e;
  border: none;
  transition: background 0.3s;
}

#dltModal .btn-primary:hover {
  background: #1e447a;
}

/* =========================================
                NAVBAR
========================================= */

.custom-navbar {
  position: relative;

  background: #ffffff;

  padding: 18px 0;

  border-top: 4px solid #7d0c15;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

  z-index: 999;
}

/* CONTAINER */

.custom-navbar .container {
  max-width: 1350px;
}

/* =========================================
                LOGO
========================================= */

.navbar-brand {
  position: relative;

  z-index: 5;
}

.navbar-brand img {
  width: 230px;

  transition: 0.4s;
}

.navbar-brand img:hover {
  transform: scale(1.03);
}

/* =========================================
                MENU
========================================= */

.navbar-nav {
  gap: 45px;
}

.navbar-nav .nav-link {
  position: relative;

  color: #14213d !important;

  font-size: 18px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  padding: 10px 0 !important;

  transition: 0.5s ease;
}

/* UNDERLINE */

.navbar-nav .nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0%;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(to right, #22d3ee, #143b8d);

  transition: 0.5s;
}

/* HOVER */

.navbar-nav .nav-link:hover {
  color: #22d3ee !important;

  transform: translateY(-3px);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ACTIVE */

.navbar-nav .nav-link.active {
  color: #143b8d !important;
}

/* =========================================
            LIQUID MORPH BUTTON
========================================= */

.liquid-morph-container {
  display: flex;

  align-items: center;

  justify-content: center;
}

.liquid-morph-element {
  width: 170px;

  height: 58px;

  background: #0a2342;

  display: flex;

  justify-content: center;

  align-items: center;

  position: relative;

  border-radius: 60px;

  overflow: hidden;

  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  box-shadow: 0 12px 30px rgba(20, 59, 141, 0.22);
}

/* BUTTON TEXT */

.liquid-morph-element span {
  color: #fff;

  font-size: 18px;

  font-weight: 700;

  position: relative;

  z-index: 2;
}

/* LIQUID EFFECT */

.liquid-morph-element::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: conic-gradient(#22d3ee 0deg, #143b8d 120deg, #22d3ee 240deg);

  transition: all 0.6s ease;

  opacity: 0;

  transform: scale(0);
}

/* HOVER EFFECT */

.liquid-morph-element:hover {
  border-radius: 14px;

  transform: rotate(5deg) scale(1.03);
}

.liquid-morph-element:hover::before {
  opacity: 0.55;

  transform: scale(2);
}

/* =========================================
            TOGGLER
========================================= */

.navbar-toggler {
  border: none !important;

  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 32px;

  color: #143b8d;
}

/* =========================================
            MOBILE MENU
========================================= */

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;

    margin-top: 25px;

    padding: 25px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav {
    gap: 0px;

    text-align: center;

    margin-bottom: 0px;
  }

  .liquid-morph-container {
    width: 100%;
  }

  .liquid-morph-element {
    width: 100%;
  }
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 767px) {
  .custom-navbar {
    padding: 14px 0;
  }

  .navbar-brand img {
    width: 170px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden !important;
}

/* =========================================
        MOBILE RESPONSIVE ALIGNMENT
========================================= */

@media (max-width: 991px) {
  .nexiva-product-hero {
    text-align: center;

    padding: 90px 0 70px;
  }

  .nexiva-product-hero .row {
    gap: 50px;
  }

  .hero-description {
    margin: auto;
  }

  .hero-btns-group {
    justify-content: center;
  }

  .hero-check-item {
    justify-content: center;
  }

  .glass-form-card {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .nexiva-product-hero {
    padding: 70px 0 60px;
  }

  .nexiva-product-hero h1 {
    font-size: 36px;

    line-height: 1.15;
  }

  .hero-description {
    font-size: 16px;

    line-height: 1.8;

    padding: 0 10px;
  }

  .hero-btns-group {
    flex-direction: column;

    width: 100%;
  }

  .btn-main-blue,
  .btn-outline-glass {
    width: 100%;
  }

  .glass-form-card {
    padding: 25px 20px;

    border-radius: 22px;
  }

  .hero-check-item {
    font-size: 14px;

    text-align: left;

    align-items: flex-start;
  }

  .glass-input {
    height: 54px;

    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .nexiva-product-hero h1 {
    font-size: 30px;
  }

  .innovation-tag {
    font-size: 12px;

    padding: 10px 16px;
  }

  .glass-form-card h4 {
    font-size: 22px;
  }
}

/* ------- Industry Solutions ------- */
.industry-card {
  border-radius: 15px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid #eef1fb;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.industry-card:hover {
  background: linear-gradient(135deg, #1c53e0 0%, #22d3ee 100%);
  border-color: transparent;
  /* transform: translateY(-6px); */
  box-shadow: 0 20px 60px -20px rgba(10, 20, 70, 0.35);
}

.industry-card .icon {
  font-size: 35px;
  color: #1c53e0;
  transition: color 0.3s;
}
.industry-card h4 {
  font-size: 15.5px;
  margin: 0;
  transition: color 0.3s;
}
.industry-card:hover h4,
.industry-card:hover .icon {
  color: #fff !important;
}
.industry-card:hover .go {
  color: rgba(255, 255, 255, 0.85);
}
.industry-card .go {
  font-size: 12.5px;
  color: #9aa3c2;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
/* ------ API Solutions ------ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.api-card {
  border-radius: 20px;
  padding: 26px 26px;
  position: relative;
  overflow: hidden;
  background: #050b22;
  color: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.api-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22d3ee;
  font-size: 22px;
  margin-bottom: 20px;
}
.api-card h4 {
  color: #fff !important;
  font-size: 18px;
  margin: 0 0 10px;
}
.api-card p {
  font-size: 13.5px;
  margin: 0 0 20px;
  flex: 1;
  color: #5b6480;
}
.api-card a {
  font-size: 13.5px;
  font-weight: 600;
  color: #22d3ee;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.api-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 211, 238, 0.25),
    transparent 70%
  );
  top: -70px;
  right: -70px;
  transition: transform 0.4s;
}
.api-card:hover::after {
  transform: scale(1.3);
}
@media screen and (max-width: 800px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}

/* ------- Business Automation -------- */
.flow-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.flow-wrap::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(#1c53e0, #22d3ee);
  opacity: 0.35;
}
.flow-step.in-view {
  opacity: 1;
  transform: translateX(0);
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.flow-step .flow-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1c53e0 0%, #22d3ee 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex: none;
  z-index: 2;
  box-shadow: 0 10px 24px -6px rgba(28, 83, 224, 0.5);
}
.flow-step .flow-body {
  background: #fff;
  border: 1px solid #eef1fb;
  border-radius: 14px;
  padding: 16px 22px;
  flex: 1;
}
.flow-step .flow-body h4 {
  font-size: 15.5px;
  margin: 0 0 3px;
}
.flow-step .flow-body p {
  font-size: 13px;
  margin: 0;
}

/* ------- Integration Section -------- */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.integration-chip {
  background: #fff;
  border: 1px solid #eef1fb;
  border-radius: 14px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  /* transition: all .25s ease; */
}
.integration-chip:hover {
  border-color: #22d3ee;
  /* transform: translateY(-4px); */
  box-shadow: 0 20px 60px -20px rgba(10, 20, 70, 0.35);
}
.integration-chip i {
  font-size: 24px;
  color: #1c53e0;
}
.integration-chip span {
  font-size: 12.5px;
  font-weight: 600;
  color: #5b6480;
}
@media screen and (max-width: 500px) {
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 321px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------ FAQ ------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.faq-item {
  border-bottom: 1px solid #f5f5f5;
  background-color: #fff;
  margin-bottom: 5px;
  padding: 12px;
  border-radius: 10px;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #0b1030;
}
.faq-q .plus {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgb(48 244 246) 0%,
    rgba(34, 211, 238, 0.12) 100%
  );
  color: #1c53e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background 0.3s;
  font-size: 25px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 4px 4px;
  margin: 0;
  font-size: 14.5px;
  color: #5b6480;
}
/* ------- CTA Section --------- */
.cta-band {
  background: linear-gradient(135deg, #1c53e0 0%, #22d3ee 100%);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.25),
    transparent 45%
  );
}
.cta-band h2 {
  color: #fff !important;
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 0 0 14px;
  position: relative;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-band .btn-nx-primary {
  background: #fff;
  color: #1c53e0;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.35);
}
.btn-nx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s,
    background 0.25s,
    color 0.25s;
  white-space: nowrap;
}
.cta-band .btn-nx-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.btn-nx-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cta-band .btn-nx-primary:hover {
  color: #16409c;
}
.cta-band .btn-nx-primary {
  background: #fff;
  color: #1c53e0;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.btn-nx-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(28, 83, 224, 0.75);
  color: #fff;
}
.btn-nx-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-2px);
}
/* -------- Trust Bar ------- */
.trust-new-slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    #102e6a 0%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}
.trust-new-slider::after {
  right: 0;
  background: linear-gradient(
    to left,
    #102e6a 0%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}
.trust-slide {
  width: 180px;
  height: 180px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 20px;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}
.trust-slide:hover {
  border: 1px solid #22d3ee;
}
.trust-slide i {
  color: #fff !important;
  font-size: 40px;
}
