/* ============================================
   FONT IMPORTS - DESIGN SYSTEM BRAND KIT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Creato+Display:wght@400;700&display=swap');

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: "Poppins", sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  color: #1D222B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   GLOBAL HEADING STYLES - BRAND KIT
   ============================================ */
h1,
h2 {
  font-family: "Creato Display", sans-serif;
  background: linear-gradient(90deg, #c10f1f, #012f47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: 1280px !important;
  padding-left: 24px;
  padding-right: 24px;
}

.navbar-brand img {
  height: 48px;
}
a{
    text-decoration: none;
}
a.navbar-brand.d-flex.align-items-center {
  padding-left: 5px;
  padding-top: 7px;
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  padding-left: 16px !important;
  padding-right: 16px !important;
}


h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: "Creato Display", sans-serif;
  background: linear-gradient(90deg, #c10f1f, #012f47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: linear-gradient(90deg, #c10f1f, #012f47) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.btn-primary {
    background: #c10f1f !important;
    line-height: normal;
    font-weight: 600;
    border: none;

}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
}

.navbar .nav-link:hover {
  background: #f5f5f5;
  border-radius: 8px;
}

.dropdown-menu {
  border-radius: 10px;
  padding: 10px;
}

/* Hero Imegs */
.hero-section {
  position: relative;
  background: url("../image/hero-bg-R2NGktCc.jpg") center/cover no-repeat;
  color: white;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}


.badge-dot {
  width: 8px;
  height: 8px;
  background: #0d6efd;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

/* section of repetation */
.marquee-wrapper {
  background: rgba(248, 249, 250, 0.6);
  /* bg-secondary/40 */
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 40px;
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: #c10f1f;
  /* Bootstrap primary */
  border-radius: 50%;
}

.marquee-text {
  font-size: 13px;
  text-transform: uppercase;
  color: #6c757d;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero {
  padding: 40px 0;
  background: #f8f9fb;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero span.blue {
  color: #2f6df6;
}

.hero span.purple {
  color: #6f42c1;
}

.hero span.red {
  color: #dc3545;
}

.hero p {
  color: #6c757d;
  max-width: 600px;
}

/* Image */
/* Card Design */
.custom-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* Left Borders */
.border-left-red {
  border-left: 4px solid #dc3545;
}

.border-left-blue {
  border-left: 4px solid #0d6efd;
}

/* Heading */
.card-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* List */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* Dot bullet */
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 6px;
}

.dot.red {
  background: #dc3545;
}

/* Arrow */
.arrow {
  color: #0d6efd;
  font-size: 14px;
  margin-top: 2px;
}

.hero-img img {
  width: 656px;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.custom-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.custom-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.custom-card p {
  color: #6c757d;
  font-size: 14px;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chapter-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(13, 110, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  color: #0d6efd;
}

/* Glass Card */
.glass-card {
  background: #f8f9fa;
  border-radius: 12px;
}

/* Bullet Style */
.bullet {
  position: relative;
  padding-left: 15px;
}

.bullet::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #dee2e6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}



.custom-list {
  list-style: none;
  /* default bullets hata diye */
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 15px;
  /* left space */
  margin-bottom: 8px;
  color: #6c757d;
  /* bootstrap muted color */
  font-size: 14px;
}

/* Left side dot */
.custom-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #dee2e6;
  /* light grey dot */
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.framework-section {
  background: #f8f9fb;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
}

.text-gradient {
  background: linear-gradient(90deg, #c10f1f, #012f47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-xs {
  font-size: 12px;
}

.text-xl {
  font-size: 14px;
}

.card-hover:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.custom-card {
  border-radius: 16px;
  border: 1px solid #dbeafe;
  background: #f8fbff;
  transition: 0.3s;
}

.custom-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reposition-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
}

.takeaway-box {
  background: rgba(13, 110, 253, 0.05);
  border-radius: 10px;
  padding: 10px;
}

/* Custom Bullet */
.custom-list {
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #6c757d;
}

.custom-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #0d6efd;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* Details border */
.details-box {
  border-top: 1px solid #eee;
}

.pattern-section {
  background: #fff;
}

.pattern-title {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #012f47;
  margin-bottom: 30px;
  font-weight: 600;
}

.pattern-card {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: 0.3s;
}

.pattern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pattern-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 18px;
}

.pattern-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.pattern-card p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.rounded-4 {
  border-radius: 1rem;
}

.bg-primary-subtle {
  background: rgba(13, 110, 253, 0.1);
}

/*** grant page css***/

.grant-hero-section {
  background-color: rgb(226, 226, 226);
  padding: 40px 0;
  position: relative;
}

/* Theme */
.theme-color {
  color: #ff5722;
}

.theme-bg {
  background: #ff5722;
  color: #fff;
}

/* Badge */
.badge-custom {
  border: 1px solid rgba(255, 87, 34, 0.3);
  background: rgba(206, 197, 197, 0.1);
}

.dot {
  width: 8px;
  height: 8px;
  background: #ff5722;
  border-radius: 50%;
}

/* Heading */
.hero-title {
  font-weight: 700;
  line-height: 1.1;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
}

/* Progress */
.progress {
  height: 6px;
  border-radius: 10px;
}

.progress-bar {
  border-radius: 10px;
}

/* Scroll */
.scroll-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-icon {
  font-size: 22px;
  color: #6c757d;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.scroll-icon {
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* section-2 */

.execution-section {
  padding: 4rem 2rem;
}

.execution-section .steps-wrapper {
  max-width: 850px;
  margin: auto;
}

.execution-section .step-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

/* stagger */
.execution-section .step-card:nth-child(1) {
  margin-left: 0;
  margin-right: 48px;
}

.execution-section .step-card:nth-child(2) {
  margin-left: 12px;
  margin-right: 36px;
}

.execution-section .step-card:nth-child(3) {
  margin-left: 24px;
  margin-right: 24px;
}

.execution-section .step-card:nth-child(4) {
  margin-left: 36px;
  margin-right: 12px;
}

.execution-section .step-card:nth-child(5) {
  margin-left: 48px;
  margin-right: 0;
}

.execution-section .step-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
  border-color: #dbeafe;
}

.execution-section .step-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.execution-section .step-left h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
}

.execution-section .step-left p {
  font-size: 13px !important;
  margin: 0;
  color: #64748b;
}

.execution-section .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.execution-section .icon-svg {
  width: 20px;
  height: 20px;
  color: #012f47;
}

.execution-section .step-number {
  font-size: 14px;
  font-weight: 600;
  color: rgba(37, 99, 235, .4);
}

.execution-section .step-blue {
  background: linear-gradient(90deg, #bbceec, #eef4fb);
}

.execution-section .step-pink {
  background: linear-gradient(90deg, #fed7d7, #f7ecec);
}

.execution-section .step-mix {
  background: linear-gradient(90deg, #eef2ff, #fff1f2);
}

/* Hover Effect Box */
.hover-box {
  position: relative;
}

/* Gradient Overlay on Image */
.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  border-radius: 1rem;
}

/* Small Dot Icon */
.dot {
  width: 8px;
  height: 8px;
  background: #ff5722;
  border-radius: 50%;
  display: inline-block;
}

/* Optional Hover Glow */
.hover-box::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg,
      rgba(255, 87, 34, 0.2),
      transparent,
      rgba(13, 110, 253, 0.2));
  border-radius: 20px;
  opacity: 0;
  transition: 0.4s;
}

.hover-box:hover::before {
  opacity: 1;
}

/* section-4 */

/* Sidebar tabs */
.custom-tabs .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  padding: 12px 15px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #6c757d;
  transition: 0.3s;
}

.custom-tabs .nav-link:hover {
  background: #e9ecef;
  color: #000;
}

.custom-tabs .nav-link.active {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.25);
}

/* Program list */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: 0.3s;
}

.program-item:hover {
  background: #e9ecef;
  border-color: rgba(220, 53, 69, 0.3);
  transform: translateX(5px);
}

/* Badge style */
.custom-badge {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .program-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.img-cover {
  object-fit: cover;
}

/* section-5 */
.accordion-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

/* section */
.program-section {
  background: #f9fafb;
}

.section-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #dc3545;
  letter-spacing: 1px;
}

.section-title {
  font-weight: 700;
}

.section-desc {
  color: #6c757d;
}

/* Sidebar */
.custom-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-btn {
  padding: 14px 18px;
  border-radius: 12px;
  background: #f1f3f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}

.tab-btn:hover {
  background: #e9ecef;
}

.tab-btn.active {
  background: #dc3545;
  color: #fff;
}

/* Content */
.content-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  border: 1px solid #eee;
}

.content-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.program-item {
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.program-item .badge {
  background: #ffe5e5;
  color: #dc3545;
  border-radius: 20px;
  padding: 6px 12px;
}

/* Hide Tabs */
.tab-content-box {
  display: none;
}

.tab-content-box.active {
  display: block;
}

.program-section {
  background: #f9fafb;
}

.section-label {
  font-size: 12px !important;
  text-transform: uppercase;
  color: #012f47;
  font-weight: 500;
  font-family: "DM Sans", system-ui, sans-serif;
}

.section-title {
  font-weight: 700;
}

.section-desc {
  color: #6c757d;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 18px;
}

/* Sidebar */
.custom-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-btn {
  padding: 14px;
  border-radius: 12px;
  background: #f1f3f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.tab-btn.active {
  background: #dc3545;
  color: #fff;
}

/* Card */
.content-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  border: 1px solid #eee;
}

.content-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Program Item */
.program-item {
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-item span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow-icon {
  color: #dc3545;
}

.program-item .badge {
  background: #ffe5e5;
  color: #dc3545;
  border-radius: 20px;
}

/* Tabs */
.tab-content-box {
  display: none;
}

.tab-content-box.active {
  display: block;
}

/* section-6 */
/* Section background */
/* .custom-section {
  background: rgba(248, 249, 250, 0.6);
} */

/* Image */
/* .custom-img {
  height: 200px;
  object-fit: cover;
} */

/* Overlay gradient */
/* .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.4), transparent);
} */

/* Card styling */
/* .custom-card {
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
  position: relative;
} */

/* .custom-card:hover {
  border-color: rgba(220, 53, 69, 0.4);
} */

/* Big number/text */
/* .big-text {
  font-size: 32px;
  font-weight: 800;
  color: rgba(220, 53, 69, 0.2);
  transition: 0.3s;
} */

/* .custom-card:hover .big-text {
  color: rgba(220, 53, 69, 0.5);
} */

.section {
  padding: 40px 0;

}

.section-title {
  letter-spacing: 1px;
  font-size: 13px;
  color: #012f47;
  font-weight: 600;
  text-transform: uppercase;
}

/* shared glass */
.section .glass-card,
.network-section .glass-card {
  background: #fbfbfb;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  transition: .3s ease;
}

.section .glass-card:hover,
.network-section .glass-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

/* stage cards */
.stage-card {
  max-width: 290px;
  margin: auto;
  min-height: 140px;
}

.section .icon-wrap {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: rgba(37, 99, 235, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section .icon-wrap svg,
.section .icon-wrap i {
  width: 18px;
  height: 18px;
  color: #012f47;
  font-size: 18px;
}

.section .glass-card h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.section .glass-card small {
  font-size: 13px;
  color: #64748b;
}

/* investors */
.investor-grid {
  display: none !important;
}

.investor-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.investor-track {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 40px;
  width: max-content;
  animation: scrollInvestors 30s linear infinite;
}

.logo-item {
  min-width: 180px;
  /* 🔥 ensures horizontal spacing */
  text-align: center;
  padding: 10px 15px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logo-item img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.investor-marquee:hover .investor-track {
  animation-play-state: paused;
}

@keyframes scrollInvestors {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.network-section .section-heading {
  font-weight: 600;
  color: #0f172a;
}

.network-section .card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012f47;
  margin-bottom: 12px;
}

.network-section .pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.network-section .pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(241, 245, 249, .6);
  border: 1px solid #e2e8f0;
  color: #334155;
}

.network-section .pill:hover {
  background: #e2e8f0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(241, 245, 249, .6);
  border: 1px solid #e2e8f0;
  transition: .25s ease;
}

.partner-item:hover {
  background: #eef2ff;
}

.partner-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-item span {
  font-size: 14px;
  line-height: 1.3;
  color: #1e293b;
}

/* section-7 */
/* Card style */
/* .custom-card {
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
} */

/* .custom-card:hover {
  border-color: rgba(220, 53, 69, 0.3);
} */

/* Icon box */
/* .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s;
} */

/* Hover animation */
/* .custom-card:hover .icon-box {
  transform: scale(1.1);
} */
.why-section {
  padding: 45px 0;
  background: #f8fafc;
}

.why-heading {
  max-width: 950px;
  margin: auto auto 55px;
}

.why-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  color: #111827;
  max-width: 950px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
  max-width: 620px !important;
  margin: auto auto 56px;
  text-align: center;
}

.stat-box h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0;
}

.stat-box p {
  font-size: 12px !important;
  margin: 0;
  color: #64748b;
}

.cards-row {
  gap: 12px;
}

.why-card {
  background: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 18px;
  /* min-height: 150px;
  max-width: 230px; */
  max-width: 100% !important;
  width: 100% !important;
  margin: auto;
  text-align: center;
  transition: .25s ease;
}

.why-card:hover {
  border-color: #8aaaf0;
}

.why-card .icon-wrap {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: #eaf2ff;
  color: #012f47;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 11px !important;
  line-height: 1.7;
  margin: 0;
  color: #64748b;
}

.compare-box {
  max-width: 42rem;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .8);
  border: 1px solid #e2e8f0;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-head div {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 700;
}

.compare-head div:first-child {
  background: #f7f7f8;
  color: #64748b;
}

.compare-head div:last-child {
  background: #eaf0fa;
  color: #5789f7;
}

.compare-row div {
  padding: 18px 22px;
  font-size: 14px;
  border-top: 1px solid #e2e8f0;
}

.compare-row div:first-child {
  color: #64748b;
}

.compare-row div:last-child {
  background: #f5f8fe;
  color: #111827;
}

.compare-row i {
  color: #012f47;
  margin-right: 10px;
}

/* section-8 */
/* Background */

/* Text Colors */
.text-vermillion {
  color: #ff5a3c;
}

.text-muted-custom {
  color: #bdbdbd;
}

/* Glass Card */
.glass-card {
  border: 1px solid rgba(255, 90, 60, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.glass-card:hover {
  border-color: rgba(255, 90, 60, 0.4);
}

/* Divider */
.divider-custom {
  border: none;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 90, 60, 0.3),
      transparent);
}

/* Icons size */
.bi {
  font-size: 14px;
}

/* section-9 */
/* Section Background */

/* Gradient overlay */
.bg-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 90, 60, 0.05), transparent);
}

/* Radial Glow */
.radial-glow {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.08), transparent 60%);
}

/* AI Badge */
.badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(255, 90, 60, 0.1);
  border: 1px solid rgba(255, 90, 60, 0.3);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff5a3c;
}

/* Vermillion */
.text-vermillion {
  color: #ff5a3c;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 90, 60, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.glass-card:hover {
  border-color: rgba(255, 90, 60, 0.4);
}

/* Textarea */
.custom-textarea {
  background: rgb(208, 207, 207);
  border: 1px solid rgba(145, 145, 145, 0.1);
  color: #fff;
  border-radius: 12px;
  padding: 12px;
  resize: vertical;
}

.custom-textarea::placeholder {
  color: #292929;
}

.custom-textarea:focus {
  border-color: rgba(255, 90, 60, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 90, 60, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Button */
.btn-vermillion {
  background: #ff5a3c;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  border: none;
  transition: 0.3s;
}

.btn-vermillion:hover {
  background: #e64a2f;
}

/* Muted text */
.text-muted-custom {
  color: #b0b0b0;
}

/* section-13 */
.cta-section {
  padding: 56px 0;
  color: black;
}

/* Gradient background */
.cta-bg-gradient {
  background: linear-gradient(135deg, rgba(255, 87, 51, 0.15), transparent, rgba(0, 123, 255, 0.1));
  z-index: 0;
}

/* Grid overlay */
.cta-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 0;
}

/* Vermillion color */
.text-vermillion {
  color: #ff5733;
}

/* Custom button */
.btn-vermillion {
  background-color: #ff5733;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
}

.btn-vermillion:hover {
  background-color: #e64a2e;
  color: #fff;
}

/* Badge style */
.badge-custom {
  padding: 8px 16px;
  border-radius: 50px;
  background-color: rgba(255, 87, 51, 0.1);
  border: 1px solid rgba(255, 87, 51, 0.3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff5733;
}

/* Outline button tweak */
.btn-outline-light {
  border-radius: 12px;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


footer a:hover {
  color: #0d6efd;
}

footer {
  font-family: "DM Sans", sans-serif;
}

.cm-header-button {
  padding: 8px 22px !important;
  color: #fff !important;
  font-size: .875rem !important;
  line-height: 1.25rem !important;
  border-radius: 8px;
  border: transparent;
}


.cm-why-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.cm-why-inner .glass {
  border-radius: 1rem;
  border: 1px solid hsl(220, 13%, 88%);
  background-color: hsla(0, 0%, 98%, 0.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px;
}

.cm-why-inner .glass h3 {
  font-size: 16px;
  line-height: 24px;
}

.cm-why-inner {
  max-width: 1024px;
  margin: 0 auto;
}


.cm-why-inner .glass {
  text-align: left;
}

.cm-why-inner .glass p {
  font-size: 14px !important;
  color: rgb(92, 99, 112) !important;
  margin: 0;
}

footer.order-top.border-1.border-secondary.pt-4 {
  background: #f9fafb;
}

@media (min-width:768px) {
  .investor-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width:992px) {
  .why-title {
    font-size: 44px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width:768px) {

  .execution-section .step-card,
  .execution-section .step-card:nth-child(n) {
    margin-left: 0;
    margin-right: 0;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 34px;
  }

  .compare-head,
  .compare-row {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   SECTION 6 + 7 FORCE OVERRIDE
=============================== */

/* REMOVE BACKGROUND COLORS */
#why,
.why-section,
.section,
.network-section,
.bg-light {
  background: transparent !important;
  background-color: transparent !important;
}



/* spacing */
#why,
.why-section,
.section,
.network-section {
  width: 100%;
  padding: 4rem 2rem;
}

.dropdown-toggle::after {
  content: none !important;
}

ul.navbar-nav li a svg {
  font-size: 14px !important;
  width: 14px;
  height: 14px;
}

.navbar-nav li.nav-item a {
  font-size: 14px;
  color: rgb(106, 113, 129);
  line-height: 20px;
}

.hero-section h5.fw-bold,
.hero-section p {
  width: 90%;
}

.cm-copyright {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.cm-footer-top {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.problem-section h2 {
  font-size: 2.25rem !important;
  line-height: 2.5rem;
  margin-bottom: 15px;
}

.approach-section h2 {
  font-size: 2.25rem !important;
  line-height: 2.5rem;
}

.cm-approach-inner {
  max-width: 650px;
}

.cm-approach-inner1 {
  max-width: 700px;
}

.cm-approach-inner p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.process-card li svg {
  width: .875rem;
  height: .875rem;
}

.cm-content-center {
  max-width: 48rem;
  margin: 0 auto;
  margin-top: 4rem;
}

.cm-content-center .glass-card.p-5.border-start.border-4.border-primary.mx-auto {
  border-right: 1px solid #dde0e5 !important;
  border-top: 1px solid #dde0e5 !important;
  border-bottom: 1px solid #dde0e5 !important;
  background: #fbfbfb;
}

section.section {
  padding-top: 0;
  padding-bottom: 2rem;
}

section.network-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.services-section-wrapper,
.cm-quality {
  padding: 4rem 2rem;
}

.cm-quality {
  background-color: #eeeff233;
}

@media(max-width:767px) {
  a.navbar-brand.d-flex.align-items-center {
    padding-left: 0;
    padding-top: 4px;
  }

  .navbar-brand img {
    height: 40px;
  }
}
/* OVERLAY */
.cm-popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 20px;
}

/* ACTIVE */
.cm-popup-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* BOX */
.cm-popup-box{
    width: 100%;
    max-width: 650px;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    animation: popupAnim .3s ease;
}

@keyframes popupAnim{
    from{
        transform: translateY(20px);
        opacity:0;
    }
    to{
        transform: translateY(0);
        opacity:1;
    }
}

/* CLOSE */
.cm-popup-close{
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 34px;
    cursor: pointer;
    color: #111;
    line-height: 1;
}

/* TOP */
.cm-popup-top h2{
    font-size: 42px;
    margin: 10px 0 30px;
    font-weight: 700;
    color: #111;
}

.cm-popup-top h2 span{
    color: #ff5a00;
}

.cm-popup-badge{
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

/* FORM */
.cm-form-group{
    margin-bottom: 20px;
}

.cm-form-group label{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.cm-form-group input,
.cm-form-group select{
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 0 18px;
    font-size: 16px;
    background: #fff;
    outline: none;
}

.cm-form-group input:focus,
.cm-form-group select:focus{
    border-color: #ff5a00;
}

/* BUTTON */
.cm-submit-btn{
    border: none;
    background: #c10f1f !important;
    color: #fff;
    height: 58px;
    padding: 0 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}
a.btn-outline {
    color: #000;
}
.cm-success-box{
   display:none;
}
.cm-submit-btn:hover{
    background: #111;
}

/* SUCCESS */
.cm-success-box{
    display: none;
    text-align: center;
    padding-top: 20px;
}

.cm-success-box h3{
    font-size: 30px;
    margin-bottom: 10px;
}

.cm-success-box p{
    margin-bottom: 25px;
}

/* WHATSAPP */
.cm-whatsapp-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    height: 56px;
    padding: 0 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.cm-whatsapp-btn:hover{
    background: #111;
}
a.cm-whatsapp-btn {
    color: #fff !important;
}
.custom-btn {
    border: none !important;
}
/* MOBILE */
@media(max-width:767px){

    .cm-popup-box{
        padding: 25px;
    }

    .cm-popup-top h2{
        font-size: 30px;
    }

}