/* Regular */
@font-face {
  font-family: "Athletics";
  src: url(../fonts/athletics/athletics-regular.otf) format("opentype");
  font-weight: 400; /* Regular weight */
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Athletics";
  src: url(../fonts/athletics/athletics-bold.otf) format("opentype");
  font-weight: 700; /* Bold weight */
  font-style: normal;
}

/* Italic (Regular) */
@font-face {
  font-family: "Athletics";
  src: url(../fonts/athletics/athletics-regular-italic.otf) format("opentype");
  font-weight: 400; /* Regular weight */
  font-style: italic;
}

/* Bold Italic */
@font-face {
  font-family: "Athletics";
  src: url(../fonts/athletics/athletics-bold-italic.otf) format("opentype");
  font-weight: 700; /* Bold weight */
  font-style: italic;
}

@font-face {
  font-family: "tiempos-reg";
  src: url(../fonts/tiempostext/test-tiempos-text-regular.woff2);
}

:root {
  --primary: #13334C;
  --secondary: #2C94CB;
  --light-yellow: #e6f0f7;
  --black: #0a1a26;
  --white: #ffffff;
  --light-text: #e6f0f7;
}

body {
  font-family: "Athletics", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--light-text);
  overflow-x: hidden;
  background-color: var(--black);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tiemposr);
  font-weight: 700;
  color: var(--black);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #131312;
  margin: 0px;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: var(--primary);
  z-index: 99999;
}
.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.preloader .loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}
.preloader .loader .spinner .spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: spinner-linspin 1568.23529647ms linear infinite;
  -moz-animation: spinner-linspin 1568.23529647ms linear infinite;
  -o-animation: spinner-linspin 1568.23529647ms linear infinite;
  animation: spinner-linspin 1568.23529647ms linear infinite;
}
.preloader .loader .spinner .spinner-container .spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  -moz-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  -o-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}
.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}
.preloader .loader .spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: var(--secondary);
  border-radius: 50%;
  border-width: 6px;
}
.preloader .loader .spinner-left .spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: var(--primary);
  -webkit-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  -moz-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  -o-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.preloader .loader .spinner-right .spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: var(--primary);
  -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  -moz-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  -o-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@keyframes spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@keyframes spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

/*===========================
      HEADER css 
===========================*/
/*===== NAVBAR =====*/
.navbar-area {
  background-color: var(--primary);
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 35px 0;
}

.navbar-brand {
  padding: 0;
}
.navbar-brand img {
  max-width: 150px;
}

.navbar .btn {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  padding: 10px 24px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 12px;
}

@media (max-width: 767px) {
  .navbar {
    justify-content: center;
  }

  .navbar .dark-btn {
    display: none;
  }

  .navbar-brand {
    margin-right: 0rem;
  }
}

/*===== HEADER HERO =====*/
.header-hero {
  position: relative;
  z-index: 5;
  height: 800px;
  background-color: var(--primary);
  overflow: hidden;
  /* height: calc(100vh - 117.78px); */
  height: 100%;
}

.header-hero .content {
  padding-bottom: 80px;
}

.header-hero .content h3 {
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
  color: var(--white);
}

.header-hero .content h3 span {
  color: var(--secondary);
}

.header-hero .content .sub {
  margin: 30px 0;
}

.header-hero .content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: var(--light-text);
}

.header-hero .content p .btn-badge {
  font-size: 20px;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 5px 0;
}

.btn-badge.blue {
  background-color: #1a4d6d;
  color: #ddf3ff;
}

.btn-badge.purple {
  background-color: #2a2a5a;
  color: #e0ddff;
}

.btn-badge.orange {
  background-color: #4d3319;
  color: #ffe6be;
}

.header-hero .content .download-btns {
  display: flex;
  gap: 15px;
  padding-top: 15px;
}

.header-hero .content .download-btns img {
  height: 64px;
}

.device-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .device-mockup {
    margin-right: 27px;
  }
}

@media (max-width: 767px) {
  .header-hero .content {
    text-align: center;
  }

  .header-hero .content h3 {
    font-size: 36px;
    line-height: 48px;
  }

  .header-hero .content h3 br {
    display: none;
  }

  .header-hero .content p {
    font-size: 16px;
    line-height: 20px;
  }

  .header-hero .content .download-btns {
    flex-direction: column;
  }

  .header-hero .content p .btn-badge {
    font-size: 14px;
  }
}

/* FEATURE SECTION */

section.feature {
  padding: 50px 0;
  background-color: var(--black);
  color: var(--light-text);
}

.main_title {
  font-size: 72px;
  font-weight: 700;
  line-height: 89.64px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 30px;
  color: var(--white);
}

.line-wrap {
  position: relative;
}

.main_title .line {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-title .title {
  font-size: 52px;
  font-weight: 800;
  line-height: 60px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--secondary);
}

.section-title .text {
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text);
}

.section-title .subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  opacity: 0.7;
  color: var(--light-text);
}

.feature_list {
  margin-top: 150px;
}

.hideondesktop {
  display: none;
}

@media (max-width: 767px) {
  .hideondesktop {
    display: block;
  }

  section.feature {
    padding-top: 100px;
  }

  .feature_list {
    margin-top: 0px;
  }

  .main_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
  }

  .main_title .line {
    bottom: -25px;
  }

  .feature_list .row {
    margin-bottom: 50px;
  }

  .section-title .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
  }

  .section-title .text {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
  }

  .hideonmobile {
    display: none;
  }

  .odd {
    flex-direction: column-reverse !important;
  }
}

/* Why Choose Us */

section.why_choose_us {
  padding: 50px 0;
  background: var(--primary);
}

.wcs_list {
  margin-bottom: 30px;
}

.wcs_list .wcs_block {
  background: var(--black);
  border-radius: 40px;
  padding: 30px 15px;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wcs_block img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  object-fit: contain;
}

.wcs_block p {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--white);
  margin-top: 30px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .wcs_block {
    text-align: center;
  }
  .wcs_block img {
    width: 124px;
    height: 124px;
  }
  .wcs_block p {
    font-size: 25px;
    font-weight: 700;
    line-height: 43.56px;
    text-align: center;
  }
 
}

@media (max-width: 375px) {
  .wcs_block p {
    font-size: 24px;
    line-height: 35px;
  }
}

/*===========================
       ABOUT css 
===========================*/
.about-area {
  padding: 100px 0;
}

.about-image {
  position: relative;
  display: inline-block;
  text-align: center;
}

@media (max-width: 767px) {
  .about-image {
    margin-left: 0;
    padding-top: 65px;
    padding-bottom: 45px;
  }
}
.about-image .about-shape {
  background: -webkit-linear-gradient(#61009d 0%, #cb107a 100%);
  background: -o-linear-gradient(#61009d 0%, #cb107a 100%);
  background: linear-gradient(#61009d 0%, #cb107a 100%);
  width: 394px;
  height: 394px;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .about-image .about-shape {
    width: 294px;
    height: 294px;
  }
}
.about-image .about-shape::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  -webkit-transform: scale(1.1) rotate(25deg);
  -moz-transform: scale(1.1) rotate(25deg);
  -ms-transform: scale(1.1) rotate(25deg);
  -o-transform: scale(1.1) rotate(25deg);
  transform: scale(1.1) rotate(25deg);
  border-radius: 50%;
  border: 2px solid #61009d;
  border-top-color: transparent;
  border-right-color: transparent;
}
.about-image .app {
  position: relative;
  -webkit-transform: rotate(-25deg) translateY(-15%);
  -moz-transform: rotate(-25deg) translateY(-15%);
  -ms-transform: rotate(-25deg) translateY(-15%);
  -o-transform: rotate(-25deg) translateY(-15%);
  transform: rotate(-25deg) translateY(-15%);
  max-width: 280px;
  position: absolute;
  top: 100px;
  left: 95px;
  -webkit-box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}
@media (max-width: 767px) {
  .about-image .app {
    max-width: 190px;
    border-radius: 25px;
    top: 60px;
  }
}

.about-content .main-btn {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .about-area {
    padding-top: 20px;
  }

  .main-heading .star img {
    width: 60px;
  }
  .about-area .row {
    flex-direction: column;
  }
  .about-image {
    padding-top: 0;
  }
  .about-content {
    text-align: center;
    padding: 0 15px;
  }
  .section-title .title {
    line-height: 28px;
  }
  .odd {
    flex-direction: column-reverse !important;
  }
}

/* Download */

.download-block {
  padding: 50px;
  background: var(--primary);
  margin-top: 0px;
  position: relative;
  bottom: -150px;
  z-index: 6;
  border-radius: 40px;
}

.download-block .highlight {
  position: absolute;
  left: -50px;
  top: -50px;
  width: 100px;
}

.download-block .info h3 {
  font-size: 72px;
  font-weight: 500;
  line-height: 78px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--white);
}

.download-block .info h3 span {
  font-family: tiempos-reg !important;
  font-size: 72px;
  font-style: italic;
  font-weight: 500;
  line-height: 78px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--secondary);
}

.download-block .download-btns {
  margin: 50px 0;
  gap: 20px;
  display: flex;
}

@media (max-width: 767px) {
  .download-block .highlight {
    display: none;
  }

  .download-block .info h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
  }

  .download-block .info h3 span {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    margin-left: 5px;
  }

  .download-block .info h3 br {
    display: none;
  }

  .download-block .download-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 375px) {
  .download-block .info h3 {
    font-size: 32px;
    line-height: 36px;
  }
  .download-block .info h3 span {
    font-size: 32px;
    line-height: 36px;
  }
}

/*===========================
     FOOTER css 
===========================*/
.footer-area {
  position: relative;
  z-index: 5;
  /* padding-top: 250px; */ /* Original padding - restore when download section is added */
  padding-top: 80px; /* Temporary padding while download section is hidden */
  background: var(--black);
}
.footer-area .logo {
  max-width: 200px;
}

.footer-about .social {
  margin-bottom: 50px;
}

.footer-about .social li {
  display: inline-block;
  margin-right: 25px;
}

.footer-about .social li:last-child {
  margin-right: 0px;
}

.footer-links {
  padding: 50px 0;
}

.footer-links .links {
  display: flex;
  gap: 40px;
}

.footer-links .links li a {
  font-size: 24px;
  font-weight: 500;
  line-height: 30.55px;
  color: #f1f1f1;
}

.copyright {
  padding-top: 15px;
  padding-bottom: 35px;
}

.copyright a {
  color: #f1f1f1;
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
}

@media (max-width: 767px) {
  .download {
    padding: 15px;
  }

  .footer-area {
    padding-top: 250px;
  }

  .footer-about {
    flex-direction: column;
    display: flex;
    justify-content: center !important;
    text-align: center;
  }

  .footer-about .social {
    margin-top: 30px;
    margin-bottom: 35px;
  }

  .footer-links {
    padding-top: 15px;
    padding-bottom: 40px;
  }

  .footer-links .links {
    flex-direction: column;
    align-items: center;
    gap: 20px !important;
  }
  .copyright a {
    font-size: 14px;
  }
  .footer-links .links li a {
    font-size: 16px;
    line-height: 20.55px;
  }
}

.slick-slider {
  margin:0 -15px;
}

.slick-slide {
  padding:10px;
  text-align:center;
  margin-right:10px;
  margin-left:10px;
}

.slick-track {
  display: flex;
  gap: 15px;
} 

.slider-wrapper {
  position: relative;
}

.draggable {
  overflow: hidden;
}

/* Styling the dots container */
.slick-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

/* Base style for each dot */
.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(44, 148, 203, 0.3); /* Inactive dot color using secondary with opacity */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0; /* Hides the number */
}

/* Style for the active dot with larger width */
.slick-dots .slick-active button {
  background-color: var(--secondary); /* Active dot color */
  width: 20px; /* Wider width for active dot */
  height: 8px; /* Same height as inactive dots */
  border-radius: 10px; /* Oval shape for active dot */
}

/* Optional hover effect */
.slick-dots li button:hover {
  background-color: rgba(44, 148, 203, 0.6);
}

/* Add this after the existing header-hero .content h3 styles */

.header-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
  color: var(--white);
}

@media (max-width: 767px) {
  .header-title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  
  .header-hero .content {
    text-align: center;
    padding-top: 30px;
  }
  
  .header-hero .content .sub p {
    font-size: 18px;
    line-height: 24px;
  }
  
  .header-hero .content .download-btns {
    justify-content: center;
  }
}

.device-mockup img,
.image-area img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.device-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.image-area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
