body {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 2;
  color: #000000;
}

.rounded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

ul li::marker {
  color: #F02678;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Nunito', sans-serif;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

/* ==============================================================
# NAVIGATION
============================================================== */

.nav-link {
  font-size: 20px;
  color: #FFFFFF;
}

@media (max-width:991px) {
  .nav-link {
    color: #000000;
  }
}

/* ONLY desktop nav */

.navbar .nav-link span {
  position: relative;
}

.navbar .nav-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #F02678;
  transition: width .3s ease;
}

.navbar .nav-link:hover span::after,
.navbar .nav-link:focus span::after {
  width: 100%;
}

.navbar .nav-link.active span::after {
  width: 100%;
}

/* keep text white */

.navbar .nav-link,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #FFFFFF;
}

/* ==============================================================
# NAVBAR DROPDOWN
============================================================== */

@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }
}

.navbar .dropdown-menu {
  background-color: #5281ff;
  color: #FFFFFF;
  font-size: 18px;
  padding: 10px 0;
  border: none;
  border-radius: 0;
  z-index: 10;
}

.dropdown-item {
  background-color: #5281ff;
  color: #FFFFFF;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #F02678;
  color: #FFFFFF;
}

.dropdown-item.active {
  background-color: #F02678;
  color: #FFFFFF;
}

.dropdown-toggle::after {
  border-top-color: #F02678 !important;
}

/* ==============================================================
# MOBILE OFFCANVAS
============================================================== */

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler-icon path {
  stroke-width: 3;
}

.offcanvas .nav-link {
  color: #000000;
  transition: color .2s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas .nav-link.active {
  color: #F02678;
}

/* --------------------------------------------------------------
# TOP BANNERS
-------------------------------------------------------------- */

.about-banner,
.faqs-banner,
.contact-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
}

.about-banner::before,
.faqs-banner::before,
.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 7, 94, 0.6);
}

/* keep content above overlay */

.about-banner>*,
.faqs-banner>*,
.contact-banner>* {
  position: relative;
  z-index: 1;
}

.about-banner {
  background-image: url("../img/about-banner.webp");
}

.faqs-banner {
  background-image: url("../img/faqs-banner.webp");
}

.contact-banner {
  background-image: url("../img/contact-banner.webp");
}

/* ==============================================================
# BACKGROUNDS
============================================================== */

.whitebackground {
  background-color: #FFFFFF;
}

.lightpurplebackground {
  background-color: #F7F7FB;
}

.pinkbackground {
  background-color: #F02678;
}

.darkpurplebackground {
  background-color: #000435;
}

.front-banner {
  position: relative;
  height: 360px;
  background-color: #0D103F;
  width: 100%;
  display: flex;
  align-items: center;
}

/* overlay */

.front-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 4, 53, 0.55);
  z-index: 1;
}

.front-banner>* {
  position: relative;
  z-index: 2;
}

.pattern-banner {
  position: relative;
  min-height: 400px;
  background-image: url('../img/pattern-banner.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .pattern-banner {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .pattern-banner {
    min-height: 500px;
  }
}

/* overlay */

.pattern-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 4, 53, 0.8);
  z-index: 1;
}

.pattern-banner>* {
  position: relative;
  z-index: 2;
}

/* ==============================================================
# BUTTONS
============================================================== */

.btn {
  border: none;
  border-radius: 10;
  font-size: 20px;
}

.btn-pink {
  background-color: #F02678;
  color: #FFFFFF;
  font-weight: 600;
}

.btn-pink:hover {
  background-color: #5281ff;
  color: #FFFFFF;
}

.btn-pink:active {
  background-color: #5281ff !important;
  color: #FFFFFF !important;
}

.btn-outline-pink {
  background-color: transparent;
  color: #F02678;
  border: 2px solid #F02678;
  font-weight: 600;
}

.btn-outline-pink:hover {
  background-color: #F02678;
  color: #FFFFFF;
}

.btn-outline-pink:active {
  background-color: #5281ff !important;
  border-color: #5281ff !important;
  color: #FFFFFF !important;
}

/* ==============================================================
# FONTS
============================================================== */

.whitefont {
  color: #FFFFFF;
}

.headerwhitefont {
  color: #FFFFFF;
  font-weight: 700;
}

.whitelink {
  color: #FFFFFF;
  text-decoration: none;
}

.whitelink:hover {
  color: #F02678;
}

.pinkfont {
  color: #F02678;
}

.pinklink {
  color: #F02678;
  text-decoration: underline;
}

.headerpinkfont {
  color: #F02678;
  font-weight: 700;
}

.purplefont {
  color: #10075E;
}

.headerpurplefont {
  color: #10075E;
  font-weight: 700;
}

.purplelink {
  color: #10075E;
}

.purplelink:hover {
  color: #F02678;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footerlink {
  position: relative;
}

a.footerlink {
  color: #000000;
  text-decoration: none;
  position: relative;
}

a.footerlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #F02678;
  opacity: 0;
  transition: opacity 0.3s ease;
}

a.footerlink:hover,
a.footerlink.active {
  color: #F02678;
}

a.footerlink:hover::after,
a.footerlink.active::after {
  opacity: 1;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==============================================================
# ACCORDION STYLES
============================================================== */

.accordion-body {
  padding-top: 20px;
  padding-bottom: 20px;
}

.accordion-button:not(.collapsed) {
  background-color: #F02678;
  color: #FFFFFF;
}

.accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 38, 120, 0.2);
  border-color: #F02678;
}

.accordion-button {
  -webkit-tap-highlight-color: rgba(240, 38, 120, 0.15);
}

/* White arrow when ACTIVE (open) */

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

#accordion-1 ul li {
  margin-bottom: 1rem;
}

.extra-spacing li {
  margin-bottom: 1rem;
}

/* ==============================================================
# DECORATIVE LINE STYLE
============================================================== */

.heading-wrap {
  display: inline-block;
}

.decorative-line {
  display: block;
  width: 100%;
}

/* ==============================================================
# DISPLAY SMALL IMAGES IN GALLERY STYLE
============================================================== */

.row[data-bss-baguettebox] .col a {
  display: block;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.row[data-bss-baguettebox] .col a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==============================================================
# CARDS
============================================================== */

.custom-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 3px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.custom-card:hover {
  background-color: rgba(240, 38, 120, 0.1);
  border: 3px solid #F02678;
}

/* ==============================================================
# TRUST PILLS
============================================================== */

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.2;
}

.trust-pill i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #F02678;
  flex-shrink: 0;
}

.trust-pill span {
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

@media (min-width: 992px) {
  .trust-pill {
    padding: 6px 18px;
    gap: 6px;
  }
}

@media (min-width: 992px) {
  .trust-pill span {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .trust-bar-pill .d-flex {
    flex-direction: column;
    align-items: center;
  }
}

/* ==============================================================
# CONTACT PILLS
============================================================== */

.contact-col {
  width: 100%;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 2px solid #F02678;
  box-shadow: 0 3px 10px rgba(240, 38, 120, 0.10);
  margin-bottom: 18px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-pill:hover {
  background: rgba(240, 38, 120, 0.07);
}

.contact-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F02678;
  flex-shrink: 0;
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1;
  padding-top: 2px;
}

.contact-pill-icon i {
  display: block;
  width: 22px;
  height: 22px;
}

.contact-pill-label {
  font-size: 13px;
  font-weight: 600;
  color: #F02678;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-pill-value {
  font-size: 18px;
  font-weight: 600;
  color: #000435;
  line-height: 1.3;
  word-break: break-all;
}

/* ==============================================================
# COVER IMAGES
============================================================== */

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .cover-img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* ==============================================================
# PROCESS CARDS
============================================================== */

.process-number {
  font-family: 'Nunito', sans-serif;
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(to bottom, #F02678 0%, #F02678 40%, #7a1fa2 75%, #10075E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.process-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Center number vertically */

.process-card .col-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile tweak */

@media (max-width: 768px) {
  .process-number {
    font-size: 56px;
  }
}

/*==============================================================
# BACK TO TOP BUTTON
==============================================================*/

#btn-back-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  padding: 10px 15px;
  display: none;
  z-index: 1001 !important;
  background-color: #F02678;
}

#btn-back-to-top:hover {
  background-color: #5281ff;
}

@media (max-width: 575.98px) {
  #btn-back-to-top {
    bottom: 30px;
    right: 5px;
  }
}

/* ==============================================================
# MOBILE RESPONSIVENESS
============================================================== */

@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 50px;
  }
}