:root {
  --hero-bg: #1A737B;
  --primary-red: #C91F3A;
  --blue: #2A52C9;
  --text-light: #FFFFFF;
  --text-muted: #64748B;
  --tab-text: #475569;
  --body-text: #4B5563;
  --title-text: #1C1C1C;
  --grey-bg: #F9FAFB;
  --border-color: #E5E7EB;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px){
  body{
    font-size: 16px;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-text);
  letter-spacing: .005em;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--blue);
}
.font18{
  font-size: 18px !important;
}
.primary-color{
  color: var(--primary-red);
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    width: 100%;
  }
}

/* ================= TOP BAR ================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
}

.topbar-inner {
  display: flex;
  flex: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}

.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Logo */
.topbar-logo {
  height: 28px;
}

.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-logo {
  display: flex;
  gap: 8px;
  text-decoration: none;
  align-items: center;
}

.nav-logo img {
  width: 32px;
  cursor: pointer;
}

.nav-logo .logo-text {
  color: var(--title-text);
  font-size: 1.25rem;
  margin-bottom: 0;
  font-weight: 700;
}

header {
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

header .container {
  display: flex;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.nav-btn {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.nav-links {
  flex: 1;
}

.log-sign {
  display: flex;
  align-items: center;
  gap: 24px;
}



.nav-links>ul {
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
}

.nav-link>a {
  line-height: 3rem;
  color: var(--body-text);
  padding: 0 .8rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link>a>i {
  margin-left: .2rem;
}

.nav-link:hover>a {
  background: var(--grey-bg);
  border-radius: 24px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.dropdown ul {
  position: relative;
}

.dropdown-link>a {
  display: flex;
  background-color: #ffffff;
  color: var(--body-text);
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover>a {
  background-color: #ffffff;
  color: var(--blue);
}

.dropdown-link:not(:nth-last-child(2)) {
  /* border-bottom: 1px solid #eeeeee; */
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #ffffff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.dropdown-link:first-child:hover~.arrow {
  background-color: #ffffff;
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--body-text);
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: var(--body-text);
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 4rem;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: #ffffff;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transition: .65s;
    left: -100%;
  }

  #check:checked~.nav-btn {
    left: 0;
  }

  #check:checked~.nav-btn .nav-link,
  #check:checked~.nav-btn .log-sign {
   opacity: 1;
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links>ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
  }

  .nav-link>a {
    line-height: 1;
    padding: 1rem 1.5rem;
  }

  .nav-link:hover>a {
    background-color: #eeeeee;
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: #f8f8f8;
    display: none;
    box-shadow: none;
  }

  .nav-link:hover>.dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
  }

  .nav-link:hover>a>i,
  .dropdown-link:hover>a>i {
    transform: rotate(0deg);
  }

  .dropdown-link>a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link>a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link>a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--body-text);
    left: 10%;
    transform: rotate(45deg);
    transition: .5s;
  }

  .nav-link:hover .arrow {
    background-color: #eeeeee;
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover>a {
    background-color: red;
  }

  .dropdown-link:first-child:hover~.arrow {
    background-color: var(--body-text);
  }

  .nav-link>a>i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .5s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: .5s;
  }
}

/* Center title */
.topbar-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0F172A;
  font-size: 14px;
}

img.topbar-icon {
  max-height: 30px;
}

/* CTA */
.btn-topbar-cta {
  background: #C91F3A;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.25s ease;
}

.btn-topbar-cta:hover {
 background: #C91F3A;
  color: #ffffff;
  opacity: .8;
}

/* Responsive */
@media (max-width: 768px) {
  .topbar-center {
    display: none;
    /* same as many SaaS headers */
  }
}

/* ================= HERO ================= */
.hero {
  background: var(--hero-bg);
  padding: 90px 0;
  color: var(--text-light);
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero h1 span {
  color: #063A52;
}

.hero-desc {
  font-size: 16px;
  max-width: 520px;
  color: var(--text-muted);
}

.hero-buttons {
  margin: 30px 0;
  display: flex;
  gap: 16px;
}

.btn-primary-cta {
  background: var(--primary-red);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  background: var(--primary-red);
  color: #ffffff;
  opacity: .8;
}

.btn-secondary-cta {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #ffffff;
  color: #000000;
  opacity: .8;
}

.hero-stats {
  display: flex;
  margin-top: 30px;
}

.hero-stats h4 {
  margin: 0;
  font-weight: 700;
  color: #5AC2C1;
  font-size: 18px;
}

.hero-stats span {
  font-size: 14px;
  color: #FDF6EC;
}

.hero-stats div {
  padding: 0 20px;
  border-right: solid 1px #00545B;
}

.hero-stats div:first-child {
  padding-left: 0;
}

.hero-stats div:last-child {
  border: 0;
}

.hero-image-placeholder {
  /* height: 340px; */
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder img {
  max-width: 100%;
}

@media (max-with: 1024px) {
  .hero-stats div {
    padding: 0 10px;
  }

  .hero-stats {
    gap: 0px;
  }

}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero {
    padding: 40px 0;
  }

}

/* ================= PRODUCT PREVIEW ================= */

.product-preview {
  padding: 90px 0;
  background: #ffffff;
}

/* Image card */
.preview-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 16px;
}

.preview-card img {
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

/* Content */
.preview-content {
  max-width: 520px;
  margin-left: auto;
}

.preview-text {
  color: var(--body-text);
  margin-bottom: 18px;
}


/* CTAs */
.preview-ctas {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* Secondary CTA (dark outline) */
.btn-outline-dark-cta {
  background: #ffffff;
  color: var(--body-text);
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-outline-dark-cta:hover {
  opacity: .8;
  background: #ffffff;
  color: var(--body-text);
  border: 1.5px solid #CBD5E1;
}

/* Responsive */
@media (max-width: 991px) {
  .preview-content {
    margin-left: 0;
    margin-top: 40px;
  }
}

/* ================= TABS ================= */
.complete-platform {
  padding: 90px 0;
}

.section-head {
  padding-bottom: 32px;
}

.section-head h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 6px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 6px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 20px;
}

@media (max-width: 768px){
  .section-head h2{
    font-size: 32px;
  }
  .section-head p{
    font-size: 18px;
  }
}

/* LEFT TABS */
/* STICKY LEFT TABS */
.platform-tabs-sticky {
  position: sticky;
  top: 120px;
  /* adjust based on header height */
}

.platform-tabs {
  gap: 12px;
}

.tab-link {
  background: transparent;
  border: none;
  text-align: left;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--body-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-link.active {
  background: linear-gradient(to right, #C92846, #A71E36);
  color: #ffffff;
}

/* RIGHT CONTENT */
.platform-content {
  background: var(--grey-bg);
  padding: 32px;
  border-radius: 16px;
}

.platform-content h3 {
  font-weight: 600;
  margin-bottom: 24px;
}

/* FEATURE CARD */
.feature-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}

.feature-card h5 {
  font-size: 18px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  background: var(--grey-bg);
  color: #C91F3A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}

/* Mobile accordion hidden on desktop */
.platform-accordion {
  display: none;
}

.accordion-item {
  border: none;
  border-bottom: solid 1px #E5E7EB;
}

.accordion-button {
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  color: var(--title-text);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(to right, #C92846, #A71E36);
  color: #ffffff;
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed)::after {
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

.accordion-button:focus {
  border: 0;
  box-shadow: none;
}


/* Mobile */
@media (max-width: 991px) {
  .platform-wrapper {
    display: none;
  }

  .platform-accordion {
    display: block;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .platform-tabs {
    flex-direction: row;
    overflow-x: auto;
  }

  .platform-tabs-sticky {
    position: relative;
    top: 0;
  }
}



/* ================= HOW TO START ================= */

.grey-bg {
  background: #F8FAFC;

}

.how-steps {
  padding: 90px 0;
}

/* STEP LIST */
.steps-list {
  /* max-width: 900px;
  margin: 60px auto 0; */
  position: relative;
}

/* Vertical line */
.steps-list::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #D1D5DB;
}

/* STEP ROW */
.step-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 28px;
  position: relative;
}

/* INDICATOR */
.step-indicator {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  background: #D1D5DB;
  color: #374151;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle.success {
  background: #22C55E;
  color: #ffffff;
  font-size: 18px;
}

/* CARD */
.step-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 28px;
}


/* BOTTOM BAR */
.steps-highlight-bar {
  margin: 60px auto 0;
  background: #1A737B;
  color: #ffffff;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  padding: 24px;
  border-radius: 14px;
  font-weight: 400;
  font-size: 26px;
}

.steps-highlight-bar i {
  color: #22C55E;
  font-size: 24px;
}

.step-mobile-badge {
  display: none;
  /* hidden on desktop */
}

/* MOBILE */
@media (max-width: 768px) {
  .steps-list::before {
    display: none;
  }

  .step-row {
    grid-template-columns: 1fr;
  }

  .step-indicator {
    display: none;
  }

  .steps-highlight-bar {
    flex-direction: column;
    gap: 12px;
  }

  .step-mobile-badge {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: #D1D5DB;
    color: #374151;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .step-mobile-badge.success {
    background: #22C55E;
    color: #ffffff;
  }
}

/* ================= PREDICTABLE ROI ================= */

.predictable-roi {
  padding: 90px 0;
}

.roi-header h2 {
  font-weight: 700;
  margin-bottom: 6px;
}

.roi-header p {
  color: #64748B;
}

/* Scroll container */
.roi-scroll-container {
  position: relative;
}

/* Horizontal scroll */
.roi-cards-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
  /* space for arrows */
}

.roi-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* Cards row */
.roi-cards {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* Card */
.roi-card {
  width: 260px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  flex-shrink: 0;
}

/* Icon */
.roi-icon {
  width: 80px;
  height: 80px;
  font-size: 32px;
  background: #E5E7EB;
  color: #C91F3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.roi-card h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.roi-card p {
  font-size: 16px;
}

/* Arrows */
/* Arrows row */
.roi-arrows-row {
  display: flex;
  justify-content: flex-end;
  /* right aligned like modern UI */
  gap: 12px;
  margin-bottom: 16px;
}

/* Arrow buttons */
.roi-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  font-size: 22px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roi-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .roi-arrows-row {
    display: none;
  }

  .roi-cards-wrapper {
    padding: 10px 0;
  }
}

/* ================= MADE FOR INDIA ================= */

.made-for-india {
  padding: 90px 0;
}

/* Left content */
.india-content {
  max-width: 520px;
}

/* Badge */
.india-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* background: #ECFDF5; */
  background: linear-gradient(114.42deg, #FFF0DE 20.24%, #FFFFFF 52.03%, #E2FFEB 83.81%);
  color: var(--primary-red);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge-icon {
  font-size: 14px;
}


.india-desc {
  color: #64748B;
  margin-bottom: 32px;
}

/* Bullet list */
.india-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.india-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

/* Check icon */
.check-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--hero-bg);
}

/* Text */
.india-list strong {
  display: block;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 2px;
}

.india-list p {
  margin: 0;
  color: #64748B;
  font-size: 14.5px;
}

/* Map */
.india-map img {
  max-width: 420px;
}

/* Responsive */
@media (max-width: 991px) {
  .india-content {
    margin-bottom: 40px;
  }

  .india-map img {
    max-width: 300px;
  }
}

/* ================= FINAL CTA ================= */

.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #B1122D 0%, #8F0E24 100%);
  color: #ffffff;
}

/* Headline */
.final-cta h2 {
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Subtext */
.cta-subtext {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  opacity: 0.9;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-buttons .btn-primary-cta {
  background: #ffffff;
  color: #B1122D;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.cta-buttons .btn-primary-cta:hover {
  background: #ffffff;
  color: #B1122D;
  opacity: .8;
}

.cta-buttons .btn-outline-cta {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 14px 26px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.cta-buttons .btn-outline-cta:hover {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  opacity: .8;
}

/* Metrics */
.cta-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .cta-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}

/* ================= ADVERTISING FORMATS ================= */

.ad-formats {
  padding-top: 8px;
}

.formats-title {
  font-weight: 600;
  margin-bottom: 24px;
}

/* Card */
.format-card {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  background: #ffffff;
  margin-bottom: 18px;
}

/* Icon */
.format-icon {
  width: 48px;
  height: 48px;
  background: #F1F5F9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C91F3A;
  font-size: 20px;
  flex-shrink: 0;
}

/* Content */
.format-content h5 {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 18px;
}

/* Header with badge */
.format-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-popular {
  background: #DCFCE7;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Description */
.format-desc {
  margin-bottom: 16px;
}

/* Points */
.format-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.format-points li {
  font-size: 14px;
  position: relative;
  padding-left: 18px;
}

.format-points li::before {
  content: "\f633";
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 600;
  font-family: bootstrap-icons !important;
}

/* Responsive */
@media (max-width: 768px) {
  .format-card {
    flex-direction: column;
    gap: 14px;
  }
}

/* ================= BUILT FOR TEAMS ================= */

.built-for-teams {
  padding-top: 8px;
}

.teams-title {
  font-weight: 600;
  margin-bottom: 28px;
}

/* Grid */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

/* Card */
.team-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 26px 24px;
}

/* Icon */
.team-icon {
  width: 48px;
  height: 48px;
  background: #F1F5F9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C91F3A;
  font-size: 20px;
  margin-bottom: 14px;
}

/* Text */
.team-card h5 {
  font-size: 18px;
}

.team-card p {
  margin-bottom: 14px;
}

/* Points */
.team-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
}

.team-points li::before {
  content: "\f633";
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 600;
  font-family: bootstrap-icons !important;
}

/* Bottom bar */
.teams-benefits {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 16px;
}

.teams-benefits i {
  color: #22C55E;
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .teams-grid {
    grid-template-columns: 1fr;
  }

  .teams-benefits {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {

  .product-preview,
  .complete-platform,
  .platform-accordion,
  .how-steps,
  .predictable-roi,
  .made-for-india,
  .final-cta {
    padding: 60px 0;
  }
}

@media (max-width: 1024px) {
  section {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

@media (max-width: 768px) {
  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ================= ABOUT PAGE ================= */
.section-pad {
  padding: 90px 0;
}
@media (max-width: 768px) {
  .section-pad {
  padding: 60px 0;
}
}
@media (max-width: 480px) {
  .section-pad {
  padding: 32px 0;
}
}

.hero-section {
  background: linear-gradient(135deg, #FFF5F0, #F0F4FF, #FFF9E6);
}

.hero-content {
  max-width: 64rem;
  position: relative;
  z-index: 10;
}

.over-title{
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 110%;
  margin-bottom: 32px;
}
@media (max-width: 1024px){
  .hero-content h1{
    font-size: 56px
  }
}
@media (max-width: 540px){
  .hero-content h1{
    font-size: 40px
  }
}


/*-------------------- HERO SECTOIN ANIMATION -------------------*/

.cf:before,
.cf:after {
  content: '';
  display: table
}

.cf:after {
  clear: both
}

.cd-title {
  position: relative;
  height: 160px;
  line-height: 230px;
  text-align: center
}

.cd-title h1 {
  font-size: 2.4rem;
  font-weight: 700
}

@media only screen and (min-width: 768px) {
  .cd-title {
    line-height: 250px
  }
}

@media only screen and (min-width: 1170px) {
  .cd-title {
    height: 200px;
    line-height: 300px
  }

  .cd-title h1 {
    font-size: 3rem
  }
}

.cd-headline {
  font-size: 2rem;
  line-height: 1;
  margin: 0
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 3rem;
    font-weight: 300
  }
}

@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 4rem
  }
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left
}

.cd-words-wrapper b {
  /* display: inline-block; */
  left: 0;
  position: absolute;
  top: 0;
  white-space: nowrap;
  font-weight: 500;
}

.cd-words-wrapper b.is-visible {
  position: relative
}

.no-js .cd-words-wrapper b {
  opacity: 0
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1
}

.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top
}

.cd-headline.clip .cd-words-wrapper::after {
  background-color: #C92847;
  content: "";
  height: 90%;
  position: absolute;
  right: 0;
  top: 4px;
  width: 4px
}

.cd-headline.clip b {
  opacity: 0
}

.cd-headline.clip b.is-visible {
  opacity: 1
}
.cd-words-wrapper b {
  background: linear-gradient(90deg, #E0602D, #C92847, #DA808E);
  background-size: 200% 200%;
  animation: gradientMove 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.imgDiv img{
  border-radius: 24px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: #f1f3f5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.step p {
  color: var(--text-muted);
  margin-bottom: 0;
}


.product-slider{
  position: relative;
}
.product-card {
  /* flex: 0 0 420px; */
  overflow: hidden;
  scroll-snap-align: start;
  transition: all .3s ease;
  margin: 0 16px;
  background: #ffffff;
  width: 100%;
}
@media (max-width: 767px){
  .product-card {
    margin: 0;
  }
}

.product-card h3{
  font-weight: 500;
}

.product-card img {
  /* height: 300px; */
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 24px;
  aspect-ratio: 3 / 2;
}

.product-card p{
  font-size: 18px;
  color: var(--body-text);
}
.product-card a{
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow-icon{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: solid 1px var(--border-color);
  border-radius: 50%;
}
.product-card a{
  color: var(--title-text);
  font-size: 18px;
  font-weight: 600;
}
.product-card a:hover{
  opacity: .8;
}
.product-card:hover .arrow-icon{
  background: var(--grey-bg);
}
.carousel-nav-icon{
  background: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
div.carousel-nav-icon > svg {
    height: 20px;
    width: 20px;
}
.nav-arrows{
display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 30%;
    /* right: 0; */
    z-index: 99;
    width: 100%;
    opacity: 0;
    transition: .3s;
}
.product-slider:hover .nav-arrows{
  opacity: 1;
}
@media (max-width: 991px){
  .nav-arrows{
    opacity: 1;
  }
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
    .nav-arrows{
      top: -10%;
      justify-content: flex-end;
    }
    .carousel-nav-icon{
      width: 40px;
      height: 40px;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }

    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
    transform: translateX(0);
}

.grediant1{
  background: linear-gradient(135deg, #F2F3F6, #E4E8F6, #F1E5E6, #E7DDE8, #DEE2F2)
}

.blobs {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  overflow: hidden;
}

/* Base blob */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

/* Individual blobs */
.blob-left {
  width: 18rem;   /* w-72 */
  height: 18rem;  
  top: 5rem;      /* top-20 */
  left: 2.5rem;   /* left-10 */
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blob-center {
  width: 24rem;   /* w-96 */
  height: 24rem;  
  bottom: 5rem;   /* bottom-20 */
  right: 2.5rem;  /* right-10 */
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blob-right {
  width: 20rem;   /* w-80 */
  height: 20rem;  
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blobs .orange{
  background: #fdba74; /* orange-300 */
}
.blobs .blue{
  background: #93c5fd; /* blue-300 */
}
.blobs .yellow{
  background: #fde68a; /* yellow-200 */
}
.blobs .purple{
  background: #D3CAFD; /* yellow-200 */
}

.empowering{
  position: relative;
  padding: 128px 0;
}
@media (max-width: 768px){
  .empowering{
    padding: 90px 0;
  }
}
.empowering .section-head h1{
  font-size: 60px;
  margin-bottom: 24px;
}
.finalcta-black{
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: #ffffff;
  padding: 128px 0;
}
.finalcta-black h1{
  color: #ffffff;
  font-size: 60px;
  margin-bottom: 32px;
}
.finalcta-black p{
  color: #D1D5DB;
  font-size: 20px;
  padding-bottom: 48px;
}

.finalcta-white{
  padding: 128px 0;
}
.finalcta-white h1{
  font-size: 60px;
  margin-bottom: 32px;
}
.finalcta-white p{
  font-size: 20px;
  padding-bottom: 48px;
}
@media (max-width: 768px){
 .finalcta-black{
    padding: 90px 0;
  }
}

.footer{
  padding: 60px 0 24px;
  background: #f8f8f8;
  border-top: solid 1px var(--border-color);
}
@media (max-width: 768px){
  .footer{
    padding: 60px 16px 24px;
  }
}
.footer h2{
  font-weight: 700;
  font-size: 24px;
}
.footer a{
  font-size: 14px;
  color: #4B5563;
  padding-bottom: 6px;
}
.footer a:hover{
  text-decoration: underline;
}
.copyright{
  padding-top: 16px;
  margin-top: 24px;
  border-top: solid 1px var(--border-color);
  color: #7e8691;
  font-size: 13px;
}

@media (max-width: 768px){
 .footer ul{
  padding-bottom: 16px;
 }
}

/*----------------- CONTECT PAGE ----------------*/
.video-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
}

.video-card video {
  object-fit: cover;
  object-position: center;
  display: block;
  max-height: 768px;
}
@media (max-width: 768px){
  .video-card video{
    max-height: 500px;
  }
}
@media (max-width: 480px){
  .video-card video{
    max-height: 300px;
  }
}

.video-control {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .3s;
}

.video-control:hover {
  background: rgba(0,0,0,.75);
}


@media (max-width: 768px){
  .mission-accordion{
    margin-top: 24px;
  }
}
.mission-accordion .accordion-item{
  border: none;
  margin-bottom: 24px;
}

.mission-accordion .accordion-button {
  background: #f7f9fb;
  color: var(--title-text);
  border-radius: 20px;
  padding: 26px 28px;
  font-size: 22px;
  font-weight: 500;
  box-shadow: none;
  gap: 8px;
}
@media (max-width: 768px){
  .mission-accordion .accordion-button {
    font-size: 18px;
    padding: 16px;
    border-radius: 12px;
  }
}

.mission-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--title-text);
  border-top: solid 1px var(--border-color);  
}
.mission-accordion .accordion-button.collapsed .acc-icon{
  transition: transform .3s ease-in-out;
}
.mission-accordion .accordion-button.collapsed .acc-icon:hover{
  transform: rotate(90deg);
}
.accordion-collapse.show{
  border-bottom: solid 1px var(--border-color);
}

.mission-accordion .accordion-button::after {
  display: none;
}

.mission-accordion .accordion-body {
  font-size: 17px;
  color: var(--body-text);
  padding: 0 28px 22px;
}

@media (max-width: 768px){
  .mission-accordion .accordion-body {
    padding: 0 16px 22px;
  }
}

.acc-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #334155;
  flex: 0 0 32px;
}

ul.list-point{
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
ul.list-point li{
  flex:0 0 49%;
  margin-bottom: 8px;
  display: flex;
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
}
@media (max-width: 520px){
  ul.list-point li{
    flex: 100%; 
  }
}
ul.list-point li i{
  flex: 0 0 24px;
  font-size: 20px;
}