.flex-class {
  display: flex;
}
.align-items-center {
  align-items: center;
}
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.justify-content-center {
  justify-content: center;
}
.all-center {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.white-bg {
  background-color: #fff;
}
.color-white {
  color: #fff;
}
.primary-white {
  color: #fff !important;
}
.bg-blue {
  background-color: #3d5588;
}
.bg-light-blue {
  background-color: #d7e4ff;
}
.bg-teal {
  background-color: #008fd5;
}
.primary-teal {
  color: #008fd5 !important;
}
.bg-gray {
  background-color: #f5f8ff;
}
.position-relative {
  position: relative;
}
.primary-blue {
  color: #3d5588 !important;
}
.black-text-heading {
  color: #494949;
}
.dark-black-text-heading {
  color: #221e1f;
}
.primary-orange {
  color: #f26522 !important;
}
.bg-orange {
  background-color: #f26522;
}
.pitch-black {
  color: #000;
}
.bg-purple {
  background-color: #5d2f91;
}
.bg-white {
  background-color: #ffffff;
}
.text-purple {
  color: #5d2f91 !important;
}
.text-dark-purple {
  color: #221e1f;
}
.bg-red {
  background-color: #bb131a;
}
.text-red {
  color: #bb131a !important;
}
.bg-reddish-pink {
  background-color: #d41c3d;
}
.reddish-pink {
  color: #d41c3d;
}
.border-reddish-pink {
  border: 2px solid #d41c3d !important;
}
.border-purple {
  border: 2px solid #5d2f91 !important;
}
.border-red {
  border: 2px solid #bb131a !important;
}
.bg-dark-gray {
  background-color: #221e1f;
}

/* ===========================
   Custom Styles
   =========================== */
body {
  font-family: "Inter", sans-serif;
}

.top-section {
  background-image: url("../assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content-section {
  min-height: 80vh;
  gap: 20px;
}

.content-section p {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7rem;
}
h1 {
  font-size: 2rem;
  line-height: 2.5rem;
}

h4 {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
h3 {
  font-size: 3.12rem;
  line-height: 3.6rem;
}

.section-heading {
  max-width: 645px;
}

.box {
  flex: 1;
}
.box-25 {
  max-width: 26%;
}
.box-49 {
  max-width: 48%;
}

.two-boxes {
  max-width: 50%;
}

/* Button Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  border: none;
  border-radius: 66px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  width: auto;
  max-width: max-content;
}

/* Optional: size variants */
.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

p {
  font-size: 1rem;
  line-height: 1.7rem;
}
.font-24 {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
.box-49 img {
  height: 450px;
  object-fit: contain;
  display: block;
  max-width: 100%;
}

.content-heading {
  font-size: 2rem !important;
  line-height: 2.7rem !important;
}
.quill-sec {
  background-image: url("../assets/quill-back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.features-list .icon img {
  width: 32px;
  height: 32px;
}
.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* small circular dot that inherits the text color */
.features-list .title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor; /* inherits color from .title (color-white etc.) */
  margin-right: 12px;
  vertical-align: middle;
}

/* pseudo-element shows the SVG icon */
.icon-list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../assets/checkmark-gray.svg");
}

/* minimal: remove default bullets */
.list-no-style {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* icon-list: items align with an SVG instead of the dot */
.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
}

.nokia-lifespan-lg-img img {
  max-width: 700px;
}

.form-section .accordion .active {
  background-color: #3d5588 !important;
  color: #fff !important;
}

.form-section .input-field {
  background: transparent;
  border: 1px solid #fff;
  padding: 12px 15px;
  border-radius: 10px;
  color: #fff; /* white text */
  font-size: 14px;
}

.form-section .input-field::placeholder {
  color: rgba(255, 255, 255, 0.8); /* softer placeholder */
}

.form-section button {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.ready-arrow.position-absolute {
  right: -15px;
  top: -10px;
}
.flex-row .input-field {
  flex: 1 1 48%;
}

.bg-white-30 {
  background-color: rgba(255, 255, 255, 0.3);
}
.btn.bg-white-30 {
  padding: 12px 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.accordion-header.color-dark-font svg {
  background-color: #494949;
  border-radius: 50%;
  padding: 5px;
  color: #fff;
}

.accordion-header.active.bg-color-blue.color-white svg {
  background-color: #efefef;
  border-radius: 50%;
  padding: 5px;
  color: #3d5588;
}

.f32px {
  font-size: 32px !important;
  line-height: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.box-40 {
  max-width: 40%;
}
.box-60 {
  max-width:60%;
}

.pr-150 {
  width: 400px;
}

.form-section input {
  height: 34px !important;
}


@media screen and (max-width: 1350px) {
  .image-wrapper.ready-arrow.position-absolute {
    display: none !important;
  }
  .nokia-lifespan-lg-img img {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 1025px) {
  .flex-row {
    flex-direction: column !important;
  }
  .box,
  .box-60,
  .box-40 {
    max-width: 100%;
  }
  .four-box-row .box {
    max-width: 100%;
  }
  .fourth-section .box img {
    max-width: 100%;
    object-fit: contain;
  }
  .image-boxed img {
    max-width: 100% !important;
    object-fit: contain;
  }
  .section-heading {
    max-width: 100% !important;
  }
  .twelfth-section .content-wrap,
  .trusted-desc {
    max-width: 100% !important;
  }
  .line-img {
    display: none !important;
  }
  .below-line {
    gap: 40px !important;
  }
  .gap-80 {
    gap: 40px !important;
  }
  .box-25,
  .box-49 {
    max-width: 100% !important;
  }
  .box-25 {
    align-items: center !important;
  }
  .box-25 .icon-wrap {
    text-align: center !important;
  }
  .pr-50,
  .pr-80 {
    padding-right: 0px !important;
  }
  .two-boxes {
    max-width: 100% !important;
  }
  .features-list .desc {
    text-align: center !important;
  }
  .px-50 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-100 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pr-150 {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 100%;
  }
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  h3 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }
  .section-heading {
    font-size: 1.5rem !important;
  }
  .tenth-section.px-50,
  .eigth-section.px-50,
  .fourth-section.px-50 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
