button p {
  font-size: 22px;
}

p {
  font-size: 18px;
}

h1 {
  font-size: 69px;
  line-height: 121%;
  font-weight: 700;
}

h2 {
  font-size: 50px;
  line-height: 48px;
  font-weight: 700;
}

section {
  min-height: 100vh;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 90px;
  z-index: 20;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 69px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 30px;
  }
  p {
    font-size: 18px;
  }
  button p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 59px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 28px;
  }
  p {
    font-size: 16px;
  }
  button p {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
  button p {
    font-size: 16px;
  }
}
.about {
  min-height: fit-content !important;
  text-align: center;
  padding: 70px 20px;
}

.about h2 {
  margin-bottom: 40px;
  color: #0a2949;
}

.about-text {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap;
  margin: 0 auto 50px;
}
.about-text p {
  color: #0a2949;
  line-height: 1.6;
  width: 354px;
  letter-spacing: 0;
  position: relative;
  padding-bottom: 45px;
  display: inline-block;
  margin-inline: 20px;
  text-align: justify;
}
.about-text span {
  font-weight: 600;
}
.about-text span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 18px;
  height: 18px;
  background-color: #c02026;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-text span:hover::after {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 15px #c02026;
}

@media (max-width: 1024px) {
  .about-text {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about-text p {
    text-align: center;
    text-justify: justify;
    max-width: 604px;
    width: auto;
  }
  .about-text p::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
.audience {
  background-color: #f8f9fa;
  padding: 60px 20px;
  min-width: 100%;
  font-family: sans-serif;
  min-height: 0;
}

.audience-wrapper {
  display: flex;
  flex-direction: column;
}

.audience-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.audience-header h2 {
  font-weight: 700;
  color: #0a2949;
  margin-bottom: 15px;
}
.audience-header p {
  color: #444;
}

.audience-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  margin: 90px 0;
  align-items: center;
}

.audience-graphics {
  position: relative;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.audience-card {
  position: absolute;
  width: 75%;
  max-width: 350px;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: scale(0.95);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease, z-index 0.4s ease;
}
.audience-card.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 10;
}

.card-1 {
  left: 55%;
  top: 21%;
  opacity: 1;
  z-index: 20;
}

.card-2 {
  left: 50%;
  opacity: 0.5;
}

.card-3 {
  left: 30%;
  top: 29%;
  opacity: 0.5;
}

.card-4 {
  top: 10%;
  left: 59%;
  opacity: 0.5;
}

.audience-icons {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  margin-inline: 40px;
}

.icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}
.icon-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fdf2f2;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 0;
}
.icon-wrap.active::before {
  opacity: 1;
  transform: scale(1);
}
.icon-wrap img {
  width: 40px;
  height: 40px;
  z-index: 1;
  transition: transform 0.3s ease;
}
.icon-wrap.active img {
  transform: scale(1.1);
}

.audience-insights {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.insight-item.active {
  opacity: 1;
}
.insight-item h3 {
  color: #c02026;
  margin: 0;
  white-space: nowrap;
  min-width: 189px;
}
.insight-item p {
  color: #444;
  margin: 0;
  line-height: 1.6;
}

.audience-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.audience-footer p {
  margin-top: 40px;
  color: #555;
}

@media (max-width: 1440px) {
  .audience-content {
    gap: 20px;
  }
  .audience-card {
    position: absolute;
    width: 100%;
    max-width: 380px;
    transform: scale(1);
  }
  .audience-card.active {
    opacity: 1;
    transform: scale(1.05) translate(-50%, -50%);
  }
  .card-1 {
    left: 20%;
  }
  .card-2 {
    left: 19%;
  }
  .card-3 {
    left: 15%;
  }
  .card-4 {
    left: 18%;
  }
}
@media (max-width: 1024px) {
  .audience-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 75px;
  }
  .audience-content .audience-graphics {
    grid-column: span 3/span 3;
  }
  .audience-content .audience-icons {
    grid-column: span 2/span 2;
    grid-row-start: 2;
  }
  .audience-content .audience-insights {
    grid-row-start: 2;
  }
  .audience-graphics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-height: auto;
    justify-items: center;
    padding: 0 10%;
  }
  .audience-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    opacity: 0.7;
    transform: scale(1);
  }
  .audience-card.active {
    opacity: 1;
    transform: scale(1.05) translate(-50%, -50%);
  }
  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .audience-icons {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }
  .insight-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
  }
  .insight-item.active {
    background: #fdf2f2;
  }
}
@media (max-width: 480px) {
  .audience-content {
    display: flex;
    flex-direction: column;
  }
  .audience-graphics {
    display: flex;
    position: relative;
    width: 380px;
    height: 380px;
  }
  .audience-icons {
    display: none;
  }
  .audience-card {
    position: absolute;
    left: 50%;
    transform: scale(1) translate(-50%, -50%) !important;
  }
  .card-1 {
    top: 52%;
    z-index: 100;
  }
  .card-2 {
    top: 54%;
    z-index: 90;
  }
  .card-3 {
    top: 56%;
    z-index: 80;
  }
  .card-4 {
    top: 58%;
    z-index: 70;
  }
}
.expandable-cards {
  position: relative;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.expandable-cards h2 {
  text-align: center;
  color: #0d2c4a;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
  padding: 0 20px;
}

.cards-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  flex-wrap: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cards-container::-webkit-scrollbar {
  display: none;
}

.cards-image {
  position: relative;
  min-width: 100vw;
  height: 690px;
  overflow: hidden;
  margin-inline: auto;
}
.cards-image img {
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  object-fit: contain;
  animation: rotate360 600s linear infinite;
  transform-origin: center center;
}

.card {
  width: 118px;
  min-width: 118px;
  min-height: 260px;
  background: #fff;
  border-radius: 50px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), min-width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  flex: 0 0 auto;
  margin: 0 10px;
  padding: 60px;
}
.card.expanded {
  width: 400px;
  min-width: 400px;
}
.card.expanded .card-number {
  opacity: 0;
  transform: scale(0.5);
}
.card.expanded .card-content {
  opacity: 1;
  transform: translateY(0);
}
.card-number {
  font-weight: bold;
  color: #539cd0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  position: absolute;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
}
.card-icons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.card-icons .icon {
  width: 30px;
  height: 30px;
  fill: #e63946;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.card-icons .icon:hover {
  transform: scale(1.2);
}
.card h3 {
  color: #c02026;
  max-width: 100%;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.card h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0a2949;
  z-index: 1;
}
.card p {
  color: #0a2949;
  line-height: 1.6;
}
.card-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.card .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.card .dot.active {
  background-color: #0a2949;
}

.cards-nav-buttons {
  display: none;
}

@media (max-width: 1440px) {
  .cards-image {
    height: 590px;
  }
  .cards-image img {
    top: 10%;
  }
}
@media (max-width: 1024px) {
  .expandable-cards {
    margin-top: 0px;
  }
  .card {
    margin: 0 auto;
  }
  .cards-image {
    height: 390px;
  }
  .cards-image img {
    top: 0%;
  }
}
@media (max-width: 930px) {
  .cards-container {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  .card {
    min-width: 100%;
    min-height: 83px;
    transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), min-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, transform 0.35s ease;
  }
  .card.expanded {
    width: 100%;
    height: 176px;
  }
  .card h3 {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .expandable-cards {
    width: 100vw;
  }
  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .cards-container {
    gap: 30px;
    justify-content: normal;
    align-items: normal;
    padding: 10px;
  }
  .card {
    scroll-behavior: smooth;
    min-width: 100%;
    height: auto;
    min-height: 156px;
    padding: 40px 20px;
    border-radius: 25px;
    scroll-snap-align: center;
    transition: none;
  }
  .card.expanded {
    width: 90vw;
    min-width: 280px;
    height: 200px;
  }
  .card.expanded .card-content {
    position: relative;
    padding: 20px;
    opacity: 1;
    transform: none;
  }
  .card-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .card h3 {
    max-width: 100%;
  }
  .card-dots {
    display: none;
  }
  .cards-image {
    height: 390px;
  }
  .cards-image img {
    top: 40%;
  }
  .cards-nav-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 10;
  }
  .cards-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    background: #0a2949;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 41, 73, 0.2);
    opacity: 0.3;
    z-index: 11;
  }
  .cards-nav-btn:hover {
    background: #c02026;
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(192, 32, 38, 0.3);
    opacity: 1;
  }
  .cards-nav-btn:active {
    transform: scale(1.05);
  }
  .cards-nav-btn img {
    width: 24px;
    height: 24px;
    filter: invert(1);
  }
}
@keyframes rotate360 {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
.nav-pin {
  width: 20px;
  height: 20px;
  background-color: #c02026;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #c02026;
}
.nav-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 255px;
  height: 56px;
  padding: 0;
}

.btn-solid {
  background: #0a2949;
  color: #fffdf2;
}

.btn-outline {
  border: 2px solid #0a2949;
  color: #0a2949;
}
.btn-outline:hover {
  background: #0a2949;
  color: #fff;
}

.btn-primary {
  background: #c02026;
  color: #fff;
}
.btn-primary:hover {
  background: #0a2949;
}

.progress-container {
  width: 100%;
  height: 5px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.progress-container * {
  pointer-events: none;
}

.progress-bar {
  height: 5px;
  background: linear-gradient(90deg, #c02026 0%, #ff4757 15%, #c02026 30%, #0a2949 70%, #1e3a5f 85%, #0a2949 100%);
  background-size: 300% 100%;
  animation: progress-shimmer 3s ease-in-out infinite;
  border-end-end-radius: 4px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  filter: blur(2px);
}
.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: progress-shine 2s ease-in-out infinite;
}
.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(192, 32, 38, 0.3) 0%, rgba(255, 71, 87, 0.5) 25%, rgba(30, 58, 95, 0.5) 75%, rgba(10, 41, 73, 0.3) 100%);
  animation: progress-pulse 1.5s ease-in-out infinite alternate;
}

.fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, white, transparent);
  z-index: 3;
  pointer-events: none;
}

.btn-secondary {
  background-color: #0d2c4a;
  color: #fff;
  border: 2px solid #0d2c4a;
}
.btn-secondary:hover {
  background-color: #1a4a7c;
  border-color: #1a4a7c;
}

.fa-check {
  color: #c02026 !important;
}

@keyframes progress-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes progress-shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@keyframes progress-pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@media (max-width: 1440px) {
  .container {
    width: 100%;
    max-width: 95%;
  }
  .btn {
    width: 235px;
    height: 48px;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 95%;
    max-width: none;
  }
  .btn-outline {
    display: none;
  }
  .btn {
    width: 185px;
    height: 40px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
}
.cta {
  padding: 100px 0 40px;
  text-align: center;
  position: relative;
  background: url("../images/cta-bg.png") no-repeat center bottom;
  background-size: contain;
  display: flex;
  align-items: center;
}
.cta-content h2 {
  font-weight: 700;
  color: #0a2949;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-content .highlight-text {
  display: block;
  color: #c02026;
  margin-top: 10px;
}
.cta-content p {
  color: #333;
  max-width: 800px;
  margin: 25px auto 40px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
  flex-wrap: wrap;
  max-width: 530px;
  margin-inline: auto;
}

@media (max-width: 1440px) {
  .cta-buttons {
    row-gap: 20px;
  }
}
.enrichment {
  background-color: #f8f9fa;
  padding: 100px 0;
  overflow: hidden;
}
.enrichment h2 {
  font-weight: 700;
  line-height: 1.2;
  color: #0a2949;
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}
.enrichment .highlight {
  color: #c02026;
}

.enrichment-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.enrichment-graphics {
  flex: 1 1 50%;
  min-width: 0;
}
.enrichment-graphics img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 8px 8px 0;
}

.enrichment-text {
  flex: 1 1 50%;
  padding: 0 60px 0 80px;
  box-sizing: border-box;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.feature-list li {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.feature-list li:hover {
  transform: translateX(5px);
}
.feature-list h3 {
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}
.feature-list p {
  color: #444;
  margin: 0;
  line-height: 1.6;
}

.geo-radius::after {
  width: 0;
}
.geo-radius:hover::after {
  width: calc(100% + 90px);
  animation: pulse-line 1.5s ease-in-out infinite 0.2s;
}

.distance-traveled::after {
  width: 0;
}
.distance-traveled:hover::after {
  width: calc(100% + 100px);
  animation: pulse-line 1.5s ease-in-out infinite 0.1s;
}

.time-traveled::after {
  width: 0;
}
.time-traveled:hover::after {
  width: calc(100% + 90px);
  animation: pulse-line 1.5s ease-in-out infinite 0.2s;
}

.visit-period::after {
  width: 0;
}
.visit-period:hover::after {
  width: calc(100% + 95px);
  animation: pulse-line 1.5s ease-in-out infinite 0.3s;
}

.week-parting::after {
  width: 0;
}
.week-parting:hover::after {
  width: calc(100% + 85px);
  animation: pulse-line 1.5s ease-in-out infinite 0.4s;
}

.day-parting::after {
  width: 0;
}
.day-parting:hover::after {
  width: calc(100% + 90px);
  animation: pulse-line 1.5s ease-in-out infinite 0.5s;
}

@keyframes pulse-line {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 5px rgba(192, 32, 38, 0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(192, 32, 38, 0.8), 0 0 25px rgba(255, 68, 68, 0.5);
  }
}
@media (max-width: 992px) {
  .enrichment {
    padding: 60px 0;
  }
  .enrichment h2 {
    margin-bottom: 40px;
  }
  .enrichment-container {
    flex-direction: column;
  }
  .enrichment-graphics {
    flex-basis: auto;
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
  .enrichment-text {
    order: -1;
    flex-basis: auto;
    padding: 0 25px 40px 25px;
  }
  .feature-list li {
    text-align: left;
  }
}
.features-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 120px;
}

.feature-card-wrapper {
  position: relative;
  width: 800px;
  max-width: 100%;
  transform: scale(1.2);
  justify-content: center;
  align-items: center;
}

.featured-images {
  display: block;
  max-width: 1229px;
}

.feature-image-back {
  top: 10%;
  left: 0;
  width: 100%;
  z-index: 1;
}

.feature-image-front {
  position: absolute;
  top: 70%;
  left: 30%;
  transform: translateX(-50%);
  width: 65%;
  z-index: 2;
}

.features-section h4 .highlight {
  color: #c02026;
}

@media (max-width: 1024px) {
  .feature-image-front {
    left: 43%;
  }
  .featured-images {
    display: block;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .feature-card-wrapper {
    display: block;
    width: 100%;
    transform: scale(1);
    margin: 20px auto;
  }
  .feature-card-wrapper img {
    width: 100%;
    height: auto;
  }
  .feature-image-front {
    width: 80%;
    bottom: -150px;
  }
}
.site-footer {
  padding: 50px 0 60px;
  text-align: center;
  position: relative;
  background: #0d2c4a url("../images/footer-bg.png") no-repeat center top;
  background-size: contain;
  color: #fff;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 25px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.footer-nav ul li {
  margin-bottom: 15px;
}
.footer-nav ul a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-nav ul a:hover {
  color: #c02026;
}

.copyright {
  font-size: 0.9rem;
  color: #ccc;
}

.hero {
  background-image: url(../images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: fill;
  background-position: right 0px top 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  overflow: hidden;
  min-height: 100vh;
  width: 100vw;
}

.hero-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
}

.hero-text {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
}
.hero-text h1 {
  margin-bottom: 20px;
  color: #0a2949;
  max-width: 1400px;
  width: 100%;
  min-width: 775px;
  flex-shrink: 0;
}
.hero-text .highlight {
  color: #c02026;
}
.hero-text p {
  color: #0a2949;
}

.hero-btn {
  z-index: 2;
}

.hero-graphic {
  flex: 1 1 400px;
  position: relative;
  min-height: 300px;
}

.dot-container {
  position: absolute;
  background-color: rgb(192, 32, 38);
  border-radius: 50%;
  z-index: 3;
  animation: pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1) alternate-reverse;
  transform: translate(-50%, -50%) scale(0.6);
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(192, 32, 38, 0.4);
}
.dot-container::before {
  content: "";
  position: absolute;
  width: 148.44px;
  height: 148.44px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  background-color: rgba(192, 32, 38, 0.5);
  border-radius: 50%;
  z-index: -1;
  animation: pulseRing 3s infinite cubic-bezier(0.4, 0, 0.2, 1) alternate-reverse;
  animation-delay: 0.3s;
}
.dot-container::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  background-color: rgba(192, 32, 38, 0.2);
  border-radius: 50%;
  z-index: -2;
  animation: pulseRing 3s infinite cubic-bezier(0.4, 0, 0.2, 1) alternate-reverse;
  animation-delay: 0.6s;
}

.dot-1 {
  width: 50px;
  height: 50px;
  top: 110%;
  left: 60%;
  animation-delay: 0s;
}
.dot-1::before {
  width: 140px;
  height: 140px;
}

.dot-2 {
  width: 40px;
  height: 40px;
  top: 33%;
  right: 10%;
  animation-delay: 0.3s;
}
.dot-2::before {
  width: 120px;
  height: 120px;
  animation-delay: 0.5s;
}

.dot-3::before, .dot-3::after,
.dot-4::before,
.dot-4::after {
  display: none;
}

.dot-3 {
  width: 12px;
  height: 12px;
  top: 80%;
  right: 5%;
  animation: none;
}

.dot-4 {
  width: 15px;
  height: 15px;
  top: 56%;
  left: 38%;
  animation: pulse 1s infinite ease-in-out alternate-reverse;
  animation-delay: 0.9s;
}

.hero-features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  width: 100%;
  max-width: 85%;
  min-height: 15vw;
}
.hero-features p {
  color: rgba(10, 41, 73, 0.48);
  text-align: center;
  margin: 0 16px;
}
.hero-features i {
  color: #0a2949;
  font-size: 22px;
  margin-left: 20px;
  margin-right: 10px;
}

.hero-text a {
  margin-top: 40px;
}

@media (min-width: 1438px) {
  .hero {
    padding-top: 260px;
  }
}
@media (max-width: 1440px) {
  .hero {
    padding-top: 200px;
  }
  .dot-1 {
    left: 40%;
    top: 35%;
  }
  .dot-2 {
    left: 90%;
    top: 55%;
  }
  .dot-3 {
    left: 67%;
    top: 25%;
  }
  .dot-4 {
    left: 95%;
    top: 10%;
  }
}
@media (max-width: 1024px) {
  .hero {
    align-items: center;
    justify-content: center;
    padding-top: 150px;
  }
  .hero-features {
    flex-direction: column;
    max-width: 98%;
    column-gap: 30px;
  }
  .dot-1 {
    left: 30%;
    top: 35%;
  }
  .dot-2 {
    left: 70%;
    top: 55%;
  }
  .dot-3 {
    left: 17%;
    top: 35%;
  }
  .dot-4 {
    left: 45%;
    top: 90%;
  }
}
@media (max-width: 768px) {
  .hero {
    background-size: 751px;
    background-position: right -66px top 200px;
    opacity: 1;
  }
  .hero-content {
    text-align: left;
  }
  .hero-text {
    flex-basis: 100%;
  }
  .hero-text h1 {
    min-width: 300px;
  }
  .dot-1 {
    left: 90%;
    top: -35%;
  }
  .dot-2 {
    left: 50%;
    top: -15%;
  }
  .dot-3 {
    left: 0%;
    top: 0%;
  }
  .dot-4 {
    left: 45%;
    top: 30%;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 155px;
  }
  .hero-text {
    height: 500px;
    text-align: center;
  }
  .hero-text a {
    position: absolute;
    left: 50%;
    top: 396px;
    transform: translateX(-50%);
  }
  .hero-text h1 {
    min-width: 380px;
  }
  .dot-1 {
    top: -40%;
    left: 80%;
  }
  .dot-2 {
    top: 5%;
    left: 10%;
  }
  .dot-3 {
    top: 10%;
    left: 80%;
  }
  .dot-4 {
    top: -60%;
    left: 10%;
  }
  .hero-features {
    min-height: 0;
  }
  .actionable-insights {
    font-size: 30px;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.6);
    box-shadow: 0 0 20px rgba(192, 32, 38, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 30px rgba(192, 32, 38, 0.6);
    opacity: 0.6;
  }
}
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
.industries {
  padding: 100px 0;
  position: relative;
  background: url("../images/industries-bg.png") no-repeat top center;
  background-size: cover;
}
.industries a {
  text-decoration: none;
}
.industries::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
}
.industries .container {
  position: relative;
  z-index: 2;
}
.industries-title {
  text-align: center;
  color: #0a2949;
  margin-bottom: 60px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.industry-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 25px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 15px;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: all 0.3s ease;
  row-gap: 15px;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.15), 0 30px 60px rgba(0, 0, 0, 0.08);
}
.industry-card:hover h3 {
  color: #c02026;
}
.industry-card:hover p {
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 25px;
  transition: margin 300ms linear;
}
.industry-card .industry-header {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.case-study-btn {
  display: inline-flex;
  align-items: center;
  background-color: #f1f5f9;
  border: none;
  border-radius: 50px;
  padding: 6px 20px 6px 6px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.case-study-btn:hover {
  background-color: #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.case-study-btn img {
  width: 40px;
  height: 40px;
  border-radius: 99999px;
  object-fit: cover;
  margin-right: 15px;
}
.case-study-btn i {
  color: #c02026;
  margin-left: 10px;
}

.many-more-text {
  margin-top: 40px;
  font-weight: 700;
  color: #c02026;
}
.many-more-text:hover {
  color: #555;
}

@media (max-width: 1024px) {
  .industry-card {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
  .industry-card p {
    max-width: 443px;
  }
  .industries-grid {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .industry-card {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
.journey {
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
}
.journey-title {
  color: #0a2949;
}
.journey-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.journey-nav {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  z-index: 10;
  top: 70%;
  transform: translateY(-50%);
}
.journey-nav.next {
  right: 70px;
}
.journey-nav.prev {
  left: 70px;
}

.steps-container {
  width: 600px;
  height: 360px;
  user-select: none;
  touch-action: none;
  margin: 0 auto;
}

.steps-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.step {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #0a2949;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: blur(10.2px);
  transform: scale(1);
  transition: all 0.2s linear;
  will-change: transform, filter, top, left;
  border-radius: 50%;
}
.step img {
  width: 65%;
  height: 65%;
  transition: transform 200ms ease;
  margin: auto;
  object-fit: contain;
  transform-origin: center center;
}
.step.active {
  background: #c02026;
  filter: blur(0);
  width: 90px;
  height: 90px;
  z-index: 10;
  transform: scale(1.1);
}
.step.active + .step-info {
  display: flex;
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-content: center;
  z-index: 100;
}
.step-info p {
  color: #0a2949;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.step-number {
  font-size: 60px;
  font-weight: 700;
  color: #d9d9d9;
  font-family: "Poppins";
}
.step-title {
  letter-spacing: 2px;
  color: #c02026;
}
.step-description {
  color: #0a2949;
  text-align: center;
}

.step > .step-info {
  display: none;
}

.step-row {
  display: contents;
}
.step-row .step-info {
  opacity: 0;
  position: absolute;
}
.step-row .step.active + .step-info {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 1 !important;
}

@media (max-width: 1024px) {
  .journey-carousel {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .journey-nav {
    display: none;
  }
  .steps-container {
    width: 100%;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    scroll-snap-type: none;
    overflow: visible;
  }
  .steps-container > .step-info {
    display: none;
  }
  .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    scroll-snap-type: none;
    margin-inline: auto;
  }
  .step-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    gap: 20px;
  }
  .step {
    position: relative;
    width: 90px;
    height: 90px;
    min-width: 90px;
    max-width: 90px;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    background: #0a2949;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
  }
  .step.active {
    background: #c02026;
    opacity: 1;
    filter: blur(0);
    transform: scale(1.1) !important;
  }
  .step.active + .step-info {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  .step img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .step-info {
    display: flex !important;
    position: relative !important;
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: center;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    transition: opacity 0.3s ease;
    opacity: 0;
    gap: 20px;
  }
  .step-info p {
    color: #0a2949;
    font-size: 14px;
    text-align: left;
    margin: 0;
    max-width: 200px;
    width: 90%;
  }
  .step-description {
    text-align: left !important;
  }
  .step-row:has(.step.active) .step-info {
    opacity: 1;
  }
}
.logos-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  overflow: hidden;
  padding: 30px;
}

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.brand {
  height: 70px;
  width: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, background-image 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.brand.nike {
  height: 40px;
  width: 100px;
}
.brand.nike {
  background-image: url("../images/nike.png");
}
.brand.nike:hover {
  background-image: url("../images/nike-color.png");
}
.brand.burger-king {
  background-image: url("../images/burger-king.png");
}
.brand.burger-king:hover {
  background-image: url("../images/burger-king-color.png");
}
.brand.kfc {
  background-image: url("../images/kfc.png");
}
.brand.kfc:hover {
  background-image: url("../images/kfc-color.png");
}
.brand.maestro {
  background-image: url("../images/maestro.png");
}
.brand.maestro:hover {
  background-image: url("../images/maestro-color.png");
}
.brand.volkswagen {
  background-image: url("../images/volkswagen.png");
}
.brand.volkswagen:hover {
  background-image: url("../images/volkswagen-color.png");
}
.brand.city-center {
  background-image: url("../images/city-center.png");
}
.brand.city-center:hover {
  background-image: url("../images/city-center-color.png");
}

@media (max-width: 1012px) {
  .logos-wrapper {
    overflow: hidden;
  }
  .logos {
    justify-content: flex-start;
    column-gap: 80px;
    padding: 0;
    will-change: transform;
    animation: scroll-left 30s linear infinite;
  }
  .logos .brand.clone {
    display: block !important;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.map-heading {
  text-align: center;
  color: #0a2949;
  max-width: 80vw;
  margin-inline: auto;
}

.map-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 60px;
}
.map-section .map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.map-section .dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.brand {
  height: 70px;
  width: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, background-image 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.brand.nike {
  height: 40px;
  width: 100px;
}
.brand.nike {
  background-image: url("../images/nike.png");
}
.brand.nike:hover {
  background-image: url("../images/nike-color.png");
}
.brand.burger-king {
  background-image: url("../images/burger-king.png");
}
.brand.burger-king:hover {
  background-image: url("../images/burger-king-color.png");
}
.brand.kfc {
  background-image: url("../images/kfc.png");
}
.brand.kfc:hover {
  background-image: url("../images/kfc-color.png");
}
.brand.maestro {
  background-image: url("../images/maestro.png");
}
.brand.maestro:hover {
  background-image: url("../images/maestro-color.png");
}
.brand.volkswagen {
  background-image: url("../images/volkswagen.png");
}
.brand.volkswagen:hover {
  background-image: url("../images/volkswagen-color.png");
}
.brand.city-center {
  background-image: url("../images/city-center.png");
}
.brand.city-center:hover {
  background-image: url("../images/city-center-color.png");
}

.map_labels {
  position: absolute;
  max-width: 800px;
  width: 100%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 10;
}

.map_line {
  position: absolute;
  width: 507.5px;
  height: 401.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.dot-label {
  position: absolute;
  color: #0a2949;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 4;
  pointer-events: none;
  text-align: center;
}

.dot1 {
  top: 23%;
  left: 53%;
}

.dot2 {
  top: 43%;
  left: 37%;
}

.dot3 {
  top: 89%;
  left: 71%;
}

.red_line {
  position: absolute;
  height: 22px;
  width: 5400.7px;
  z-index: 1000;
  opacity: 1;
}

@media (max-width: 1200px) {
  .map-bg,
  .dots-overlay,
  .dot-label {
    display: none;
  }
}
@media (max-width: 992px) {
  .map-heading,
  .map-section {
    display: none;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: fadeIn 0.3s ease-out;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f1f1;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
  line-height: 1;
}
.modal-content h2 {
  margin-top: 0;
  color: #c02026;
}

.case-study-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.case-study-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  padding: 40px 35px;
  border-radius: 24px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.case-study-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #d81e2a;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  font-family: "Lora", serif;
  color: #d81e2a;
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.modal-content .subheading {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.modal-form input,
.phone-input-wrapper {
  width: 100%;
  padding: 15px 25px;
  margin-bottom: 15px;
  border: none;
  border-radius: 50px;
  background-color: #eef1f4;
  font-size: 1rem;
  box-sizing: border-box;
}

.modal-form input::placeholder {
  color: #999;
}
.modal-form input::placeholder {
  display: flex;
  align-items: center;
  padding: 0 25px;
}

.country-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 10px;
  border-right: 1px solid #ccc;
  margin-right: 10px;
}

.flag-icon {
  font-size: 1.5rem;
  margin-right: 8px;
}

.dropdown-arrow {
  color: #555;
  font-size: 0.6rem;
}

.phone-input-wrapper input[type=tel] {
  flex-grow: 1;
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: #0d2c5a;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s;
}
.submit-btn:hover {
  background-color: #1a4a8a;
}

.disclaimer {
  font-size: 0.75rem;
  color: #888;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .modal-content {
    padding: 30px 20px;
  }
  .modal-content h2 {
    font-size: 1.8rem;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
  }
}
.navbar {
  border-bottom: 1px solid #eee;
  padding: 25px 0;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: rgb(255, 255, 255);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background-color 160ms ease;
  width: 100%;
}
.navbar:hover {
  background-color: rgb(255, 255, 255);
}
.navbar.nav-hidden {
  transform: translateY(-110%) translateX(-50%);
}

.nav-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 53px;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  height: 37px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-links li.mobile-login {
  display: none;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  margin-inline: 20px;
  transition: 0.5s transform ease;
  will-change: transform;
  display: inline-block;
  height: 24px;
  white-space: nowrap;
  font-family: "poppins", sans-serif !important;
}
.nav-links li a:hover {
  color: #c02026;
}
.nav-links-active {
  color: #c02026;
  font-weight: 900;
}

#nav-link-indicator {
  position: absolute;
  top: -30px;
  left: 0;
  transform: translateX(0);
  transform-origin: center bottom;
  transition: transform 200ms linear, opacity 160ms ease;
  opacity: 0;
  pointer-events: none;
  width: 25px;
  flex-shrink: 0;
  will-change: transform;
}

.login-btn {
  display: flex;
  width: 184px;
  height: 48px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
}
.login-btn:hover {
  background-color: transparent;
  color: black;
  border: 2px solid #0a2949;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #0a2949;
  border-radius: 3px;
}

@media (max-width: 1440px) {
  .nav-links {
    gap: 5px;
  }
  .login-btn {
    width: 150px;
    height: 40px;
  }
}
@media (max-width: 1024px) {
  .nav-container {
    align-items: center;
  }
  .nav-links {
    position: absolute;
    top: -82px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 250px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out;
    gap: 5px;
    text-align: center;
    opacity: 0;
  }
  .nav-links.active {
    transform: translateY(160px);
    opacity: 1;
  }
  .nav-links.close-menu {
    transform: translateY(0);
    opacity: 0;
  }
  .nav-links li {
    text-align: center;
    position: relative;
  }
  .nav-links li.mobile-login {
    display: block;
  }
  .login-btn,
  .hamburger {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #nav-link-indicator {
    display: none;
  }
}
.pricing {
  padding: 100px 0;
  background: url("../images/white-paper-bg.png") no-repeat;
  background-size: cover;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.pricing-header h2 {
  font-weight: 700;
  color: #0a2949;
  line-height: 120%;
}
.pricing-header h2 .highlight {
  color: #c02026;
  margin-top: 40px;
}
.pricing-footer {
  margin-top: 40px;
  text-align: center;
}
.pricing-footer p {
  color: #778899;
}
.pricing-footer .highlight {
  color: #c02026;
}

.pricing-card-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-pin {
  position: absolute;
  top: -50px;
  right: -70px;
  width: 200px;
  z-index: 10;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.pricing-card h3 {
  font-weight: 700;
  color: #0a2949;
  margin-bottom: 20px;
}
.pricing-card h3 .highlight {
  color: #c02026;
}
.pricing-card h4 {
  font-weight: 600;
  color: #0a2949;
  margin-top: 40px;
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  padding-left: 0;
}
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #0a2949;
}

.btn-start-today {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding: 15px 20px;
}

/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

section {
  min-height: 100vh;
}

html {
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scrollbar-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  scroll-behavior: smooth !important;
  margin-inline: auto;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

button {
  background-color: transparent;
  border: none;
  width: fit-content;
}

p, h1, h2, h3, h4, span {
  user-select: none;
}

@media (max-width: 1012px) {
  .section {
    min-height: 0;
  }
}
.what-we-do {
  padding: 30px 0px;
  background: linear-gradient(to right, white 20%, transparent 70%), url("../images/what_can_you_do_bg.png") no-repeat right;
  background-size: cover;
}
.what-we-do-heading h2 {
  color: #0a2949;
  text-align: center;
  margin-bottom: 100px;
}
.what-we-do-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.what-we-do-text {
  flex: 1 1 500px;
  text-align: left;
}
.what-we-do-graphics {
  flex: 1 1 400px;
  position: relative;
  min-height: 450px;
}
.what-we-do-graphics img {
  position: absolute;
  transition: transform 0.3s ease-out;
}
.what-we-do-graphics img:hover {
  transform: scale(1.05) translateY(-5px);
}

.features-list {
  max-width: 700px;
}

.feature-item {
  margin-bottom: 30px;
}
.feature-item h3 {
  color: #c02026;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.feature-item h3 i {
  color: #0a2949;
}
.feature-item p {
  color: #0a2949;
  line-height: 1.6;
  margin: 0 0 0 38px;
  max-width: 537px;
  word-wrap: break-word;
}

.ad-card, .tiktok, .meta, .snapchat, .pin-logo {
  position: absolute;
  opacity: 1;
}

.pin-logo {
  width: 349px;
  top: 323.43px;
  left: -0.02px;
}

.snapchat {
  width: 243px;
  left: 227.43px;
}

.meta {
  width: 189.79px;
  height: 203.35px;
  top: 244.57px;
  left: 273.14px;
}

.tiktok {
  width: 157.61px;
  height: 154.38px;
  top: 268.57px;
  left: 505.14px;
}

.ad-card {
  width: 160px;
  border-radius: 12px;
  z-index: 3;
}

.book-demo-fixed-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  text-align: right;
  z-index: 1000;
  transition: transform 200ms linear;
}
.book-demo-fixed-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 1440px) {
  .pin-logo {
    width: 206px;
    top: 270px;
  }
  .snapchat {
    top: 0;
    left: 25%;
  }
  .meta {
    top: 1%;
    left: 70%;
  }
  .tiktok {
    top: 50%;
    left: 40%;
  }
}
@media (max-width: 1024px) {
  .pin-logo {
    left: 20%;
    top: 40%;
  }
}
@media (max-width: 768px) {
  .what-we-do {
    display: none;
  }
  .what-we-do-container {
    flex-direction: column;
    align-items: center;
    background-image: none;
  }
  .what-we-do-graphics {
    min-height: 300px;
    width: 100%;
  }
  .what-we-do-graphics img {
    max-width: 80px;
    position: absolute;
    transform: none;
    margin: 0;
    display: none;
  }
  .book-demo-fixed-btn {
    text-align: center;
    margin-top: 30px;
  }
}

/*# sourceMappingURL=index.css.map */
