/* ================= NAVBAR BASE ================= */
.navbar {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* ================= LOGO ================= */
.logo-container {
  width: 180px !important;
  height: 70px !important;
}

.main-logo {
  height: 120px !important;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.main-logo:hover {
  transform: translateY(-50%) scale(1.05);
}

/* ================= NAV LINKS ================= */
.navbar-nav .nav-link {
  color: #1F3A6F !important;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* underline hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #2EC4B6, #3ED9A4);
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #2EC4B6 !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* active */
.navbar-nav .nav-link.active {
  color: #0D1F3C !important;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* ================= BUTTONS ================= */

/* Primary CTA */
.btn-primary-custom {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #28b0a5, #34c996);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46,196,182,0.35);
}

/* Secondary CTA */
.btn-outline-custom {
  border: 1px solid #2EC4B6;
  color: #1F3A6F;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #2EC4B6;
  color: #fff;
  box-shadow: 0 6px 18px rgba(46,196,182,0.25);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .navbar {
    padding: 10px 0;
  }

  .logo-container {
    width: 140px !important;
    height: 60px !important;
  }

  .main-logo {
    height: 90px !important;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    font-size: 16px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .d-lg-flex {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }

  .d-lg-flex .btn {
    width: 100%;
  }
}

/* ================= SCROLL EFFECT ================= */
.navbar.scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}



















/* ================= HERO BASE ================= */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
  overflow: hidden;
  padding: 100px 0;
}

/* ================= SMOKE + GLOW BACKGROUND ================= */
.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,196,182,0.15), transparent 70%);
  top: -100px;
  left: -100px;
  animation: floatBg 10s ease-in-out infinite;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31,58,111,0.1), transparent 70%);
  bottom: -100px;
  right: -100px;
  animation: floatBg 12s ease-in-out infinite reverse;
}

/* animation */
@keyframes floatBg {
  0% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
  100% { transform: translateY(0px); }
}

/* ================= TEXT ================= */
.main-title {
  font-size: 48px;
  font-weight: 700;
  color: #0D1F3C;
}

.highlight {
  background: linear-gradient(90deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* badge */
.lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1F3A6F;
}

.lead-badge .dot {
  width: 8px;
  height: 8px;
  background: #2EC4B6;
  border-radius: 50%;
}

/* ================= BUTTONS ================= */
.btn-hero-solid {
  padding: 12px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46,196,182,0.35);
}

.btn-hero-outline {
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid #1F3A6F;
  color: #1F3A6F;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: #1F3A6F;
  color: #fff;
}

/* ================= IMAGE FRAME EFFECT ================= */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* glass frame */
.hero-image-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 1;
}

/* glowing border */
.hero-image-container::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  z-index: 0;
  filter: blur(20px);
  opacity: 0.4;
}

/* image */
.hero-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  max-width: 100%;
  animation: floatImage 4s ease-in-out infinite;
}

/* floating animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* floating small circle */
.floating-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #2EC4B6, transparent);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  animation: floatBg 6s ease-in-out infinite;
  z-index: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .main-title {
    font-size: 32px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-image-container {
    margin-top: 40px;
  }
}


























/* ================= GLOBAL FIX ================= */
html, body {
  overflow-x: hidden;
}

/* Bootstrap row overflow fix */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ================= HERO FIX ================= */
.hero-section {
  overflow: hidden;
  position: relative;
}

/* background shapes limit */
.hero-section::before,
.hero-section::after {
  max-width: 100%;
  overflow: hidden;
}

/* floating element fix */
.floating-element {
  pointer-events: none;
}

/* ================= IMAGE FIX ================= */
.hero-image-container {
  max-width: 100%;
  overflow: hidden;
}

.hero-img {
  max-width: 100%;
  height: auto;
}

/* ================= EXTRA SAFETY ================= */
.container {
  overflow: hidden;
}
img {
  max-width: 100%;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}




















/* ================= SECTION BASE ================= */
.problem-section {
  background: white;
  position: relative;
  overflow: hidden;
}

/* soft glow background */
.problem-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,196,182,0.12), transparent);
  top: -100px;
  left: -100px;
  animation: floatBg 10s ease-in-out infinite;
}

.problem-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(31,58,111,0.08), transparent);
  bottom: -100px;
  right: -100px;
  animation: floatBg 12s ease-in-out infinite reverse;
}

/* ================= TEXT ================= */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0D1F3C;
}

.section-subtitle {
  color: #555;
}

.highlight {
  background: linear-gradient(90deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-tag {
  display: inline-block;
  background: rgba(46,196,182,0.1);
  color: #2EC4B6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* ================= PROBLEM CARDS ================= */
.problem-list-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.problem-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= ICON ================= */
.icon-wrap {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

/* replace red glow with brand */
.red-glow {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  box-shadow: 0 5px 15px rgba(46,196,182,0.4);
}

/* ================= IMAGE FRAME ================= */
.problem-visual-frame {
  position: relative;
  display: inline-block;
}

/* glass frame */
.problem-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  z-index: 1;
}

/* glow border */
.problem-visual-frame::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  filter: blur(25px);
  opacity: 0.4;
  z-index: 0;
}

/* mask overlay design */
.mask-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(46,196,182,0.1), transparent);
  z-index: 2;
}

/* image */
.floating-img {
  position: relative;
  z-index: 3;
  border-radius: 20px;
  animation: floatImage 4s ease-in-out infinite;
}

/* ================= CTA BUTTON ================= */
.btn-fix-business {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-fix-business:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46,196,182,0.35);
}

/* pulse animation */
.pulse-effect {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,196,182,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(46,196,182,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,196,182,0); }
}

/* ================= ANIMATION ================= */
@keyframes floatBg {
  0% { transform: translateY(0px); }
  50% { transform: translateY(25px); }
  100% { transform: translateY(0px); }
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .section-title {
    font-size: 28px;
  }

  .problem-list-item {
    padding: 15px;
  }

  .problem-visual-frame {
    margin-top: 30px;
  }
}
/* ================= CTA BUTTON FIX ================= */
.btn-fix-business {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 30px;
  border-radius: 12px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;

  text-decoration: none;
  border: none;
  cursor: pointer;

  transition: all 0.3s ease;
}

/* hover */
.btn-fix-business:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(46,196,182,0.35);
}

/* icon alignment */
.btn-fix-business i {
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* fix weird shape issue */
.btn-fix-business:focus,
.btn-fix-business:active {
  outline: none;
  box-shadow: none;
}
























/* ================= SECTION ================= */
.services-section {
  background: whitesmoke;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* subtle background glow */
.services-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,196,182,0.08), transparent);
  top: -100px;
  left: -100px;
}

/* ================= TITLE ================= */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0D1F3C;
}

.section-title span {
  background: linear-gradient(90deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #555;
}

/* ================= CARD ================= */
.service-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* hover effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* gradient glow on hover */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  opacity: 0;
  transition: 0.3s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.05;
}

/* ================= ICON ================= */
.s-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: 0.3s;
}

/* icon animation */
.service-card:hover .s-icon {
  transform: rotate(8deg) scale(1.1);
}

/* ================= TEXT ================= */
.service-card h3 {
  font-size: 20px;
  color: #0D1F3C;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

/* ================= CTA BUTTONS ================= */

/* primary */
.btn-service-primary {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
}

.btn-service-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46,196,182,0.3);
}

/* secondary */
.btn-service-outline {
  border: 1px solid #1F3A6F;
  color: #1F3A6F;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-service-outline:hover {
  background: #1F3A6F;
  color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .section-title {
    font-size: 28px;
  }

  .service-card {
    padding: 25px 15px;
  }
}






























/* ================= CONTAINER FIX ================= */
.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ================= GRID FIX ================= */
.widescreen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.content-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ================= IMAGE FIX ================= */
.media-container-16-9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* IMPORTANT FIX */
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.media-container-16-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= PLAY BUTTON ================= */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-overlay i {
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 12px;
}

/* ================= TEXT ================= */
.content-info {
  padding: 15px;
}

.content-info h3 {
  font-size: 18px;
  color: #0D1F3C;
  margin-bottom: 5px;
}

.content-info p {
  font-size: 14px;
  color: #555;
}

/* ================= CTA ================= */
.cta-force-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .widescreen-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= CTA GROUP ================= */
.cta-force-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ================= COMMON BUTTON ================= */
.cta-force-center a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* ================= PRIMARY (YouTube) ================= */
.btn-primary-custom {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  border: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46,196,182,0.35);
}

/* ================= OUTLINE ================= */
.btn-outline-custom {
  border: 1px solid #1F3A6F;
  color: #1F3A6F;
  background: transparent;
}

.btn-outline-custom:hover {
  background: #1F3A6F;
  color: #fff;
}

/* ================= WHATSAPP ================= */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}

/* ================= ICON ================= */
.cta-force-center i {
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .cta-force-center {
    flex-direction: column;
    width: 100%;
  }

  .cta-force-center a {
    width: 100%;
    justify-content: center;
  }
}
.education-section {
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}






























/* ================= SECTION ================= */
.blog-section {
  background: whitesmoke;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ================= GRID ================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ================= IMAGE ================= */
.blog-thumb {
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

/* date badge */
.blog-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ================= CONTENT ================= */
.blog-content {
  padding: 18px;
}

.blog-content h3 {
  font-size: 18px;
  color: #0D1F3C;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* ================= READ MORE ================= */
.read-more {
  color: #2EC4B6;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.read-more i {
  transition: 0.3s;
}

.read-more:hover {
  color: #1F3A6F;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* ================= CTA GROUP ================= */
.cta-force-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* primary */
.btn-primary-custom {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46,196,182,0.3);
}

/* outline */
.btn-outline-custom {
  border: 1px solid rgba(31,58,111,0.3);
  color: #1F3A6F;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background: #1F3A6F;
  color: #fff;
}

/* consultation */
.btn-consultation {
  background: rgba(46,196,182,0.15);
  color: #2EC4B6;
  border: 1px solid rgba(46,196,182,0.3);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-consultation:hover {
  background: #2EC4B6;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-thumb img {
    height: 200px;
  }
}
.section-header {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 34px;
}


























/* ================= SECTION ================= */
.value-prop-section {
  /* Dynamic gradient background */
  background: linear-gradient(-45deg, #ffffff, #f5f7fa, #e8f3f2, #ffffff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Extra glow for depth */
.value-prop-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,196,182,0.12), transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
}

/* ================= IMAGE WRAPPER ================= */
.value-image-wrapper {
  position: relative;
  z-index: 1;
}

.value-image-wrapper img {
  border-radius: 24px; /* Zyada modern rounded corners */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-image-wrapper:hover img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 60px -15px rgba(46,196,182,0.2);
}

/* Floating Badge - Modernized */
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px; /* Slight offset for style */
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(46,196,182,0.4);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ================= VALUE ITEM (THE CARDS) ================= */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.value-item:hover {
  background: #ffffff;
  transform: translateX(10px); /* Side slide effect instead of just up */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 196, 182, 0.3);
}

/* ================= ICON STYLE ================= */
.v-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(46, 196, 182, 0.25);
}

/* Icon glow on hover */
.value-item:hover .v-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 12px 25px rgba(46, 196, 182, 0.4);
}

/* ================= TEXT CONTENT ================= */
.v-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0D1F3C;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.v-text p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ================= CTA BUTTON ================= */
.value-prop-section .btn-primary-custom {
  margin-top: 20px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  border: none;
  color: white;
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(46,196,182,0.2);
}

.value-prop-section .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(46,196,182,0.4);
  filter: brightness(1.1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .experience-badge {
    left: 20px;
    bottom: 10px;
  }
  
  .value-item:hover {
    transform: translateY(-5px); /* Mobile par simple rakha hai */
  }
}





























/* ================= SECTION ================= */
.free-offer-section {
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* background glow */
.free-offer-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(46,196,182,0.08), transparent);
  top: -120px;
  right: -120px;
}

/* ================= MAIN CARD ================= */
.premium-offer-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* ================= LEFT CONTENT ================= */
.offer-badge {
  display: inline-block;
  background: rgba(46,196,182,0.12);
  color: #2EC4B6;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.offer-heading {
  font-size: 40px;
  font-weight: 700;
  color: #0D1F3C;
  line-height: 1.2;
  margin-bottom: 15px;
}

.offer-heading span {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ================= LIST ================= */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.65);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.list-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.list-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ================= INFO TEXT ================= */
.no-obligation {
  color: #1F3A6F;
  font-size: 14px;
  font-weight: 500;
}

/* ================= RIGHT ACTION BOX ================= */
.action-box {
  background: linear-gradient(135deg, #0D1F3C, #1F3A6F);
  position: relative;
  overflow: hidden;
}

/* glow */
.action-box::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(46,196,182,0.25), transparent);
  top: -50px;
  right: -50px;
}

/* ================= ICON ================= */
.audit-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  box-shadow: 0 12px 30px rgba(46,196,182,0.35);
}

/* ================= CTA BUTTONS ================= */
.cta-force-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.cta-force-group a {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* primary */
.btn-primary-custom {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46,196,182,0.35);
}

/* whatsapp */
.btn-whatsapp {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .offer-heading {
    font-size: 30px;
  }

  .premium-offer-card {
    border-radius: 18px;
  }

  .action-box {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}






















/* ================= SECTION ================= */
.social-proof-section {
  background: linear-gradient(135deg, #ffffff, #f5f7fa);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.social-proof-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,196,182,0.08), transparent);
  top: -120px;
  left: -120px;
}

/* ================= STATS ================= */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  padding: 30px 40px;
  border-radius: 18px;
  text-align: center;
  min-width: 220px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #555;
  font-size: 15px;
}

/* ================= MARQUEE ================= */
.logo-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 15px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 25px;
  animation: marqueeMove 18s linear infinite;
}

/* pause on hover */
.logo-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* client logos */
.client-logo {
  width: 180px;
  height: 90px;
  background: rgba(255,255,255,0.8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F3A6F;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s ease;
  flex-shrink: 0;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ================= TESTIMONIAL ================= */
.testimonial-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* stars */
.stars {
  font-size: 20px;
}

/* testimonial text */
.testimonial-card p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* client info */
.client-info strong {
  display: block;
  color: #0D1F3C;
  font-size: 17px;
}

.client-info span {
  color: #777;
  font-size: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .stats-row {
    gap: 18px;
  }

  .stat-item {
    min-width: 100%;
    padding: 25px;
  }

  .stat-number {
    font-size: 34px;
  }

  .client-logo {
    width: 150px;
    height: 80px;
  }

  .testimonial-card {
    padding: 24px;
  }
}


























/* ================= SECTION ================= */
.process-section {
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.process-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(46,196,182,0.08), transparent);
  top: -120px;
  right: -120px;
}

/* ================= PROCESS BOX ================= */
.process-box {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  height: 100%;
  position: relative;
}

/* hover */
.process-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* ================= IMAGE ================= */
.process-img-container {
  position: relative;
  overflow: hidden;
}

.process-box-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s ease;
}

.process-box:hover .process-box-img {
  transform: scale(1.08);
}

/* dark overlay */
.process-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}

/* ================= STEP BADGE ================= */
.step-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(46,196,182,0.35);
}

/* ================= CONTENT ================= */
.process-box-content {
  padding: 24px;
  position: relative;
}

/* icon */
.box-icon-small {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: 0.3s ease;
}

.process-box:hover .box-icon-small {
  transform: rotate(8deg) scale(1.08);
}

/* title */
.process-box-content h3 {
  font-size: 22px;
  color: #0D1F3C;
  margin-bottom: 10px;
  font-weight: 700;
}

/* desc */
.process-box-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .process-box-img {
    height: 220px;
  }

  .process-box-content {
    padding: 20px;
  }

  .process-box-content h3 {
    font-size: 20px;
  }

  .step-badge {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}

























/* ================= SECTION ================= */
.final-cta-section {
  position: relative;
  padding-bottom: 90px;
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
}

/* ================= MAIN CARD ================= */
.cta-card-gradient {
  background: linear-gradient(135deg, #0D1F3C, #1F3A6F);
  border-radius: 28px;
  padding: 70px 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* glow effect */
.cta-card-gradient::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(46,196,182,0.35), transparent);
  top: -120px;
  right: -120px;
}

/* extra glow */
.cta-card-gradient::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(62,217,164,0.25), transparent);
  bottom: -80px;
  left: -80px;
}

/* ================= CONTENT ================= */
.cta-content {
  position: relative;
  z-index: 2;
}

/* title */
.final-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.final-title span {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* subtitle */
.final-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

/* ================= BUTTON GROUP ================= */
.cta-force-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* common */
.cta-force-center a {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* primary */
.btn-primary-custom {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  box-shadow: 0 12px 30px rgba(46,196,182,0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(46,196,182,0.45);
}

/* outline */
.btn-outline-custom {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: #fff;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #0D1F3C;
}

/* whatsapp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .cta-card-gradient {
    padding: 50px 25px;
    border-radius: 22px;
  }

  .final-title {
    font-size: 34px;
  }

  .final-subtitle {
    font-size: 15px;
  }

  .cta-force-center {
    flex-direction: column;
  }

  .cta-force-center a {
    width: 100%;
    justify-content: center;
  }
}




























/* ================= SECTION ================= */
.contact-instant-section {
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.contact-instant-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(46,196,182,0.08), transparent);
  top: -120px;
  left: -120px;
}

/* ================= CONTACT INFO ================= */
.contact-info-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

/* ================= CONTACT LIST ================= */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.65);
  transition: 0.3s ease;
}

.cd-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* icon */
.cd-item i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

/* text */
.cd-item span {
  display: block;
  font-size: 13px;
  color: #777;
}

.cd-item p {
  margin: 0;
  color: #0D1F3C;
  font-weight: 600;
  font-size: 16px;
}

/* ================= ACTION CARD ================= */
.action-buttons-card {
  background: linear-gradient(135deg, #0D1F3C, #1F3A6F);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

/* glow */
.action-buttons-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(46,196,182,0.25), transparent);
  top: -60px;
  right: -60px;
}

/* title */
.action-buttons-card h4 {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 700;
}

/* ================= BUTTON GRID ================= */
.instant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* common button */
.instant-grid a {
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 70px;
}

/* hover */
.instant-grid a:hover {
  transform: translateY(-4px);
}

/* ================= BUTTON COLORS ================= */
.btn-action-call {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
}

.btn-action-whatsapp {
  background: #25D366;
}

.btn-action-catalogue {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-action-telegram {
  background: #229ED9;
}

/* icons */
.instant-grid i {
  font-size: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .contact-info-box,
  .action-buttons-card {
    border-radius: 20px;
    padding: 28px;
  }

  .instant-grid {
    grid-template-columns: 1fr;
  }

  .action-buttons-card h4 {
    font-size: 24px;
  }

  .cd-item {
    padding: 14px;
  }
}




























/* ================= FOOTER ================= */
.footer-section {
  background: linear-gradient(135deg, #0D1F3C, #111827);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* glow effect */
.footer-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,196,182,0.15), transparent);
  top: -120px;
  right: -120px;
}

/* ================= LOGO ================= */
.footer-logo {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}

.footer-logo span {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* description */
.footer-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 450px;
}

/* ================= SOCIAL ================= */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* hover */
.social-link:hover {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(46,196,182,0.3);
}

/* ================= LINKS ================= */
.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 600;
}

/* list */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 14px;
}

/* links */
.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

/* hover */
.footer-links ul li a:hover {
  color: #2EC4B6;
  padding-left: 6px;
}

/* ================= CONTACT ================= */
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* icon */
.c-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2EC4B6;
  font-size: 18px;
  flex-shrink: 0;
}

/* text */
.contact-item span {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

/* ================= DIVIDER ================= */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0 25px;
}

/* ================= COPYRIGHT ================= */
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .footer-section {
    padding: 70px 0 25px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-links,
  .footer-contact {
    margin-top: 10px;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}
































/* ================= NAVBAR BUTTON GROUP ================= */
.navbar-action-group {
  gap: 14px;
}

/* ================= COMMON BUTTON ================= */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 22px;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ================= ICON ================= */
.nav-btn i {
  font-size: 16px;
}

/* ================= PRIMARY BUTTON ================= */
.nav-btn-primary {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  color: #fff;
  box-shadow: 0 10px 25px rgba(46,196,182,0.25);
}

.nav-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(46,196,182,0.4);
  color: #fff;
}

/* shine effect */
.nav-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.nav-btn-primary:hover::before {
  left: 130%;
}

/* ================= OUTLINE BUTTON ================= */
.nav-btn-outline {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(31,58,111,0.15);
  color: #1F3A6F;
  backdrop-filter: blur(8px);
}

.nav-btn-outline:hover {
  background: #1F3A6F;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13,31,60,0.15);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .navbar-action-group {
    width: 100%;
    flex-direction: column;
    margin-top: 18px;
  }

  .nav-btn {
    width: 100%;
  }
}
























































/* ================= SECTION ================= */
.innovation-hub {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #020617, #0D1F3C);
}

/* ================= GLOW ================= */
.hub-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.glow-one {
  width: 350px;
  height: 350px;
  background: rgba(46,196,182,0.15);
  top: -120px;
  left: -100px;
}

.glow-two {
  width: 320px;
  height: 320px;
  background: rgba(62,217,164,0.12);
  bottom: -100px;
  right: -80px;
}

/* ================= CONTENT ================= */
.innovation-hub .container {
  position: relative;
  z-index: 2;
}

/* badge */
.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 10px 18px;
  border-radius: 40px;

  color: #2EC4B6;
  font-size: 14px;
  font-weight: 600;

  margin-bottom: 24px;
}

/* title */
.hub-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.hub-title span {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* description */
.hub-desc {
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 10px;
}

/* ================= FEATURE CARD ================= */
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 22px;

  padding: 28px 24px;

  backdrop-filter: blur(12px);

  transition: all 0.35s ease;

  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* icon */
.feature-icon {
  width: 62px;
  height: 62px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  color: #fff;
  font-size: 26px;
}

/* text */
.feature-card h5 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

/* ================= IMAGE ================= */
.hub-image-wrapper {
  position: relative;
}

/* glow border */
.image-border-glow {
  position: absolute;
  inset: -12px;
  border-radius: 36px;

  background: linear-gradient(
    135deg,
    rgba(46,196,182,0.3),
    rgba(62,217,164,0.15)
  );

  filter: blur(20px);
}

/* image */
.hub-image {
  width: 100%;
  border-radius: 32px;

  position: relative;
  z-index: 2;

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.5s ease;
}

.hub-image:hover {
  transform: scale(1.02);
}

/* ================= FLOATING CARD ================= */
.floating-mini-card {
  position: absolute;

  bottom: 30px;
  left: -20px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  padding: 16px 18px;
  border-radius: 18px;

  color: #fff;

  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* icon */
.floating-mini-card i {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* text */
.floating-mini-card strong {
  display: block;
  font-size: 15px;
}

.floating-mini-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .innovation-hub {
    padding: 80px 0;
  }

  .hub-title {
    font-size: 38px;
  }

  .hub-desc {
    font-size: 15px;
  }

  .floating-mini-card {
    left: 10px;
    bottom: 10px;
  }

  .feature-card {
    padding: 22px;
  }
}















/* ================= SECTION ================= */
.ecosystem-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #020617, #0D1F3C);
}

/* ================= GLOW ================= */
.eco-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.eco-glow-one {
  width: 350px;
  height: 350px;
  background: rgba(46,196,182,0.12);
  top: -120px;
  right: -100px;
}

.eco-glow-two {
  width: 320px;
  height: 320px;
  background: rgba(62,217,164,0.1);
  bottom: -120px;
  left: -80px;
}

/* ================= HEADER ================= */
.ecosystem-header {
  max-width: 850px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* badge */
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 10px 18px;
  border-radius: 40px;

  color: #2EC4B6;
  font-size: 14px;
  font-weight: 600;

  margin-bottom: 22px;
}

/* title */
.eco-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.eco-title span {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* subtitle */
.eco-subtitle {
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 16px;
}

/* ================= CARD ================= */
.eco-card {
  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  overflow: hidden;

  backdrop-filter: blur(14px);

  transition: all 0.35s ease;

  height: 100%;
}

.eco-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ================= IMAGE ================= */
.eco-image-wrapper {
  position: relative;
  overflow: hidden;
}

.eco-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s ease;
}

.eco-card:hover .eco-image {
  transform: scale(1.08);
}

/* overlay */
.eco-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
}

/* ================= PHASE BADGE ================= */
.eco-phase-badge {
  position: absolute;
  top: 18px;
  right: 18px;

  z-index: 2;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  color: #fff;

  padding: 8px 14px;
  border-radius: 40px;

  font-size: 13px;
  font-weight: 600;
}

/* ================= CONTENT ================= */
.eco-content {
  padding: 28px;
}

/* icon */
.eco-icon {
  width: 60px;
  height: 60px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 24px;

  margin-bottom: 20px;
}

/* title */
.eco-content h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
}

/* paragraph */
.eco-content p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .ecosystem-section {
    padding: 80px 0;
  }

  .eco-title {
    font-size: 38px;
  }

  .eco-subtitle {
    font-size: 15px;
  }

  .eco-image {
    height: 220px;
  }

  .eco-content {
    padding: 22px;
  }

  .eco-content h4 {
    font-size: 22px;
  }
}























/* ================= SECTION ================= */
.innovation-blueprint {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(135deg, #020617, #0D1F3C);
}

/* ================= GLOW ================= */
.ib-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.ib-glow-one {
  width: 380px;
  height: 380px;
  background: rgba(46,196,182,0.14);
  top: -120px;
  left: -100px;
}

.ib-glow-two {
  width: 320px;
  height: 320px;
  background: rgba(62,217,164,0.12);
  bottom: -120px;
  right: -80px;
}

/* ================= BADGE ================= */
.ib-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(46,196,182,0.10);
  border: 1px solid rgba(46,196,182,0.18);

  padding: 12px 20px;
  border-radius: 40px;

  color: #2EC4B6;
  font-size: 14px;
  font-weight: 600;

  margin-bottom: 28px;
}

/* ================= TITLE ================= */
.ib-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;

  color: #fff;

  margin-bottom: 24px;
}

.ib-title span {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= DESCRIPTION ================= */
.ib-desc {
  color: rgba(255,255,255,0.72);

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 36px;

  max-width: 620px;
}

/* ================= FEATURE LIST ================= */
.ib-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* item */
.ib-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);

  padding: 22px;
  border-radius: 22px;

  backdrop-filter: blur(12px);

  transition: all 0.35s ease;
}

.ib-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* ================= ICON ================= */
.ib-feature-icon {
  width: 58px;
  height: 58px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;

  flex-shrink: 0;

  box-shadow: 0 14px 30px rgba(46,196,182,0.22);
}

/* ================= TEXT ================= */
.ib-feature-item h5 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 20px;
}

.ib-feature-item p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

/* ================= IMAGE ================= */
.ib-image-wrapper {
  position: relative;
}

/* image glow */
.ib-image-glow {
  position: absolute;
  inset: -14px;

  border-radius: 36px;

  background: linear-gradient(
    135deg,
    rgba(46,196,182,0.25),
    rgba(62,217,164,0.15)
  );

  filter: blur(22px);
}

/* image */
.ib-image {
  width: 100%;
  border-radius: 32px;

  position: relative;
  z-index: 2;

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.5s ease;
}

.ib-image:hover {
  transform: scale(1.02);
}

/* ================= FLOATING CARD ================= */
.ib-floating-card {
  position: absolute;

  bottom: 30px;
  left: -20px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);

  padding: 16px 18px;
  border-radius: 20px;

  color: #fff;

  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

/* icon */
.ib-floating-icon {
  width: 50px;
  height: 50px;

  border-radius: 16px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* text */
.ib-floating-card strong {
  display: block;
  font-size: 15px;
}

.ib-floating-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .innovation-blueprint {
    padding: 80px 0;
  }

  .ib-title {
    font-size: 38px;
  }

  .ib-desc {
    font-size: 15px;
  }

  .ib-feature-item {
    padding: 18px;
  }

  .ib-floating-card {
    left: 10px;
    bottom: 10px;
  }
}







































/* ================= SECTION ================= */
.performance-grid-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #020617, #0D1F3C);
}

/* ================= GLOW ================= */
.pg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.pg-glow-one {
  width: 350px;
  height: 350px;
  background: rgba(46,196,182,0.12);
  top: -120px;
  left: -100px;
}

.pg-glow-two {
  width: 300px;
  height: 300px;
  background: rgba(225,6,0,0.1);
  bottom: -120px;
  right: -80px;
}

/* ================= HEADER ================= */
.pg-header {
  max-width: 820px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* badge */
.pg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 10px 18px;
  border-radius: 40px;

  color: #2EC4B6;
  font-size: 14px;
  font-weight: 600;

  margin-bottom: 24px;
}

/* title */
.pg-title {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.pg-title span {
  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* subtitle */
.pg-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.9;
}

/* ================= CARD ================= */
.pg-card {
  position: relative;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 30px;

  padding: 38px 32px;

  backdrop-filter: blur(14px);

  overflow: hidden;

  transition: all 0.35s ease;

  height: 100%;
}

/* hover */
.pg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

/* active card */
.pg-card-active {
  background: linear-gradient(
    135deg,
    rgba(46,196,182,0.12),
    rgba(255,255,255,0.06)
  );

  border-color: rgba(46,196,182,0.2);
}

/* ================= ICON ================= */
.pg-icon {
  width: 74px;
  height: 74px;

  border-radius: 22px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 30px;

  margin-bottom: 26px;

  box-shadow: 0 18px 40px rgba(46,196,182,0.25);
}

/* ================= CONTENT ================= */
.pg-card-content h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}

.pg-card-content p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

/* ================= HOVER LINE ================= */
.pg-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 0%;
  height: 4px;

  background: linear-gradient(135deg, #2EC4B6, #3ED9A4);

  transition: 0.4s ease;
}

.pg-card:hover .pg-hover-line {
  width: 100%;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .performance-grid-section {
    padding: 80px 0;
  }

  .pg-title {
    font-size: 38px;
  }

  .pg-subtitle {
    font-size: 15px;
  }

  .pg-card {
    padding: 30px 24px;
  }

  .pg-card-content h4 {
    font-size: 22px;
  }
}