/* ===== CSS RESET ===== */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
}

/* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements inherit font */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Anchor defaults */
a {
  text-decoration: none;
  color: inherit;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Improve text wrapping */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Root defaults */
html {
  scroll-behavior: smooth;
}

/* ================= Fonts ================= */
@font-face {
  font-family: "Manrope-Regular";
  src: url("./assets/fonts/Manrope/Manrope-Regular.ttf");
}

@font-face {
  font-family: "Manrope-Medium";
  src: url("./assets/fonts/Manrope/Manrope-Medium.ttf");
}

@font-face {
  font-family: "Manrope-Bold";
  src: url("./assets/fonts/Manrope/Manrope-Bold.ttf");
}

@font-face {
  font-family: "Manrope-SemiBold";
  src: url("./assets/fonts/Manrope/Manrope-SemiBold.ttf");
}

@font-face {
  font-family: "Manrope-ExtraBold";
  src: url("./assets/fonts/Manrope/Manrope-ExtraBold.ttf");
}

/* ================= HERO ================= */
.hero-section {
  background: url(./assets/Section-1/hero_bg.webp) no-repeat center / cover;
  padding-top: 20px;
  padding-bottom: 60px;
  min-height: 100vh;
}

/* Content spacing */
.hero-content {
  padding: 40px 0 0px;
}

.hero-title {
  font-family: "Manrope-Bold";
  font-size: 2.1rem;
  line-height: 1.5;
  margin-top: 25px;
  color: #ffffff;
  max-width: 750px;
}
.hero-desc {
  font-family: "Manrope-Regular";
  margin-top: 2.5rem;
  color: #ffffff;
  line-height: 1.85;
  max-width: 630px;
  font-size: 18px;
}
/* Wrapper creates white layer */
.hero-btn-wrapper {
  display: inline-block;
  position: relative;
  margin-top: 2.5rem;
}

/* Actual button */
.hero-btn {
  position: relative;
  z-index: 1;
  box-shadow: -5px -5px white;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #fa633b;
  color: #fff;

  font-family: "Manrope-Bold";
  font-size: 16px;
  letter-spacing: 0.5px;

  padding: 16px 42px;
  border-radius: 999px;

  border: none;
  line-height: 1;

  transition: all 0.3s ease;
}

/* ================= CUSTOM HAMBURGER ================= */

.navbar-toggler {
  border: none;
  background: transparent;
  z-index: 1100;
}

/* container */
.custom-toggler {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* lines */
.custom-toggler span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;

  margin-left: auto; /* KEY: pushes lines to right */
}

/* reverse widths */
.custom-toggler span:nth-child(1) {
  width: 100%;
}

.custom-toggler span:nth-child(2) {
  width: 75%;
}

.custom-toggler span:nth-child(3) {
  width: 50%;
}

/* REMOVE MOBILE TAP HIGHLIGHT */
.navbar-toggler {
  -webkit-tap-highlight-color: transparent;
}

/* REMOVE FOCUS OUTLINE */
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* ALSO REMOVE ACTIVE STATE BORDER */
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

/* ================= ACTIVE STATE (X ICON) ================= */

.navbar-toggler.active .custom-toggler span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 100%;
}

.navbar-toggler.active .custom-toggler span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .custom-toggler span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 100%;
}

/* ================= NAVBAR ================= */
.custom-navbar {
  background: transparent;
  padding: 20px 0 10px;
}

.logo {
  height: 65px;
}

/* NAV LINKS */
.nav-custom {
  margin-left: 40px;
  gap: 30px;
}

.custom-navbar .nav-link {
  position: relative;
  font-family: "Manrope-Regular";
  color: #ffffff;
  font-size: 16px;
  padding: 8px 0; /* better clickable area */
  transition: all 0.3s ease;
}

/* ACTIVE + HOVER FONT */
.custom-navbar .nav-link.active,
.custom-navbar .nav-link:hover {
  color: #fff;
}

.nav-link.active {
  font-family: "Manrope-Bold";
}

/* UNDERLINE */
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 6px;

  background: #fa633b;

  /* CENTERED TRIANGLE TIP */
  clip-path: polygon(
    0 0,
    /* top-left */ 100% 50%,
    /* CENTER TIP */ 0 100% /* bottom-left */
  );

  transition: width 0.4s ease;
}

/* ACTIVE + HOVER */
.custom-navbar .nav-link.active::after,
.custom-navbar .nav-link:hover::after {
  width: 70px;
}

/* BUTTONS */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;

  background: transparent;
  color: white;

  font-family: "Manrope-SemiBold";
  font-size: 14px;

  transition: all 0.3s ease;
}

.nav-btn img {
  height: 16px;
}

.nav-btn:hover {
  border-color: #fff;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* MOBILE */
@media (max-width: 991px) {
  /* LOGO */
  .logo {
    height: 55px;
  }

  /* TOGGLER */
  .navbar-toggler {
    padding: 6px 10px;
    border-radius: 8px;
    z-index: 1001;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }

  /* SLIDE PANEL */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    padding: 25px 20px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 1000;
    border-radius: 0 20px 20px 0;
  }

  /* OPEN STATE */
  .navbar-collapse.show {
    transform: translateX(0);
  }

  /* MENU */
  .nav-custom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 60px 0 30px;
  }

  /* BUTTONS */
  .navbar-collapse .ms-auto {
    flex-direction: column;
    gap: 15px;
  }

  .nav-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 16px;
  }

  /* OVERLAY */
  .navbar-collapse::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
}

/* ================= SECTION 2 ================= */
.trusted-section {
  background: #fff;
  padding: 4rem 20px 3rem;
  color: #001e6c;
  font-family: "Manrope-Bold";
}

.text-orange {
  color: #fa633b;
}

/* ================= Logo Slider ================= */

/* WRAPPER */
.logo-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* FADE LEFT + RIGHT */
.logo-slider-wrapper::before,
.logo-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* LEFT */
.logo-slider-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 70%,
    rgba(255, 255, 255, 0.6) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* RIGHT */
.logo-slider-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    #ffffff 70%,
    rgba(255, 255, 255, 0.6) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}
/* SLIDER */
.logo-slider {
  overflow: hidden;
}

/* TRACK */
.logo-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

/* CARD STYLE */
.logo-item {
  min-width: 150px;
  /* height: 90px; */
  background: #ffffff;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* IMAGE */
.logo-item img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
  width: auto;
  max-width: 210px;
  max-height: 210px;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ================= SECTION 3 ================= */

.section-3 {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  color: #fff;

  background:
    url("./assets/Section-3/blue_bg.webp") no-repeat center/cover,
    linear-gradient(to top, #f4f4f6 150px, transparent 150px);
}

/* ================= GAVEL (PSEUDO ELEMENT) ================= */

.section-3::after {
  content: "";
  position: absolute;
  top: -97px;
  right: 0px;
  width: 250px;
  height: 250px;
  background: url("./assets/Section-3/gavel.png") no-repeat center/contain;
  z-index: 1;
  pointer-events: none;
}

/* ================= CONTENT ================= */
.section3-content {
  position: relative;
  z-index: 2;
}

/* CONTENT SPACING */
.section3-content {
  position: relative;
  z-index: 2;
}

/* SUBTITLE */
.section3-subtitle {
  font-family: "Manrope-Medium";
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

/* POINTED DASH */
.section3-subtitle .line {
  position: relative;
  width: 40px;
  height: 6px;
}

/* actual shape */
.section3-subtitle .line::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #fa633b;

  /* triangular pointed shape */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* TITLE */
.section3-title {
  font-family: "Manrope-Bold";
  font-size: 1.8rem;
  line-height: 1.4;
  margin-top: 15px;
}

.section3-title span {
  color: #fa633b;
  display: block;
}

/* DESCRIPTION */
.section3-desc {
  font-family: "Manrope-Regular";
  font-size: 1.1rem;
  line-height: 1.6;
  color: #dcdcdc;
  margin-top: 40px;
  padding: 0px 10px;
}

/* CARDS */
.s3-card {
  background: #ffffff;
  color: #001e6c;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 15px;
}

/* ICON */
.s3-icon {
  align-self: flex-end; /* pushes icon to right */
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TEXT */
.s3-card p {
  font-family: "Manrope-SemiBold";
  font-size: 14px;
  margin: 0;
  color: #001e6c;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* BULLET */
.s3-card p::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fa633b; /* your orange */
  border-radius: 50%;
  margin-top: 8px; /* aligns with first line */
  flex-shrink: 0;
}

/* FOOTER */
.section3-footer {
  text-align: center;
  margin-top: 4.5rem;
  font-family: "Manrope-SemiBold";
  font-size: 1.1rem;
  margin-bottom: 0rem;
}

.section3-footer span {
  color: #fa633b;
  font-family: "Manrope-Bold";
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .section3-title {
    font-size: 28px;
  }

  .section3-desc {
    margin-top: 20px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .section-3 {
    padding: 2rem 10px;
  }

  .section3-title {
    font-size: 24px;
  }

  .section3-footer {
    font-size: 14px;
  }

  .s3-card {
    flex-direction: row-reverse;
    align-items: center;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .section-3::after {
    width: 220px;
    height: 220px;
    top: -20px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-3 {
    padding: 2rem 10px;
    min-height: auto;
  }

  .section-3::after {
    width: 160px;
    height: 160px;
    top: -60px;
    right: 0px;
  }
}

/* ================= SECTION 4 ================= */

.section-4 {
  background: #f4f4f6;
  padding: 100px 0;
  color: #001e6c;
}

/* ================= TOP CONTENT ================= */

/* SUBTITLE */
.section4-subtitle {
  font-family: "Manrope-Medium";
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* TRIANGLE LINE */
.section4-subtitle .line {
  position: relative;
  width: 40px;
  height: 6px;
}

.section4-subtitle .line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fa633b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* TITLE */
.section4-title {
  font-family: "Manrope-Bold";
  font-size: 34px;
  margin-top: 15px;
}

.section4-title span {
  color: #fa633b;
}

/* DESCRIPTION */
.section4-desc {
  font-family: "Manrope-Regular";
  font-size: 18px;
  max-width: 1010px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #001e6c;
}

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

/* MAIN CARD (NO BOX BACKGROUND) */
.s4-card {
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* IMAGE WRAPPER */
.s4-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
}

/* IMAGE */
.s4-img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* CONTENT BELOW IMAGE */
.s4-content {
  margin-top: 12px;
  flex: 1;
}

/* TEXT */
.s4-content p {
  font-family: "Manrope-SemiBold";
  font-size: 1rem;
  color: #001e6c;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* BULLET DOT */
.s4-content p span {
  width: 10px;
  height: 10px;
  background: #fa633b;
  border-radius: 50%;
  display: inline-block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .section4-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-4 {
    padding: 2rem 10px;
  }

  .section4-title {
    font-size: 24px;
  }

  .s4-content p {
    font-size: 14px;
  }
}

/* ================= SECTION 5 ================= */

.section-5 {
  background: #ffffff;
  padding: 100px 0;
  color: #001e6c;
}

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

/* SUBTITLE */
.section5-subtitle {
  font-family: "Manrope-Medium";
  display: flex;
  align-items: center;
  gap: 10px;
}

.section5-subtitle .line {
  position: relative;
  width: 40px;
  height: 6px;
}

.section5-subtitle .line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fa633b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* TITLE */
.section5-title {
  font-family: "Manrope-Bold";
  font-size: 36px;
  margin-top: 10px;
}

.section5-title span {
  color: #fa633b;
}

/* DESCRIPTION */
.section5-desc {
  font-family: "Manrope-Regular";
  font-size: 17px;
  line-height: 1.6;
  color: #001e6c;
  padding: 0 80px;
}
/* ================= CARDS ================= */

.s5-card {
  position: relative;
  background: #f4f4f6;
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 130px;
}

/* ICON CONTAINER */
.s5-icon {
  position: absolute;
  top: 23px;
  right: 23px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON IMAGE */
.s5-icon img {
  max-width: 60px;
  max-height: 60px;

  width: auto;
  height: auto;

  transition: 0.3s ease;
}

/* STEP TITLE */
.s5-card h6 {
  font-family: "Manrope-Medium";
  font-size: 16px;
  margin-bottom: 5px;
  color: #000000;
}

/* TEXT */
.s5-card p {
  font-family: "Manrope-SemiBold";
  font-size: 16px;
  color: #001e6c;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

/* BULLET */
.s5-card p span {
  width: 6px;
  height: 6px;
  background: #fa633b;
  border-radius: 50%;
}

/* ================= ACTIVE ================= */

.s5-card.active {
  background: #0a2a6c;
  color: #ffffff;
}

.s5-card.active h6 {
  color: #ffffff;
}

.s5-card.active p {
  color: #ffffff;
}

/* ICON WHITE (ACTIVE) */
.s5-card.active .s5-icon img {
  filter: brightness(0) invert(1);
}

/* ================= HOVER ================= */

.s5-card:hover {
  background: #0a2a6c;
  transform: translateY(-5px);
}

/* TEXT WHITE ON HOVER */
.s5-card:hover h6 {
  color: #ffffff;
}

.s5-card:hover p {
  color: #ffffff;
}

/* ICON WHITE ON HOVER */
.s5-card:hover .s5-icon img {
  filter: brightness(0) invert(1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .section5-title {
    font-size: 28px;
  }

  .section5-desc {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .section-5 {
    padding: 2rem 10px;
  }

  .section5-title {
    font-size: 24px;
  }
}

/* ================= SECTION 6 ================= */

.section-6 {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: url(./assets/Section-6/gray_section.webp) no-repeat center / cover;
}

/* CONTENT LAYER */
.section6-content {
  position: relative;
  z-index: 2;
}

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

.section6-subtitle {
  font-family: "Manrope-Medium";
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #001e6c;
  margin-bottom: 0rem !important;
}

/* TRIANGLE LINE (same as other sections) */
.section6-subtitle .line {
  position: relative;
  width: 40px;
  height: 6px;
}

.section6-subtitle .line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fa633b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* TITLE */
.section6-title {
  font-family: "Manrope-Bold";
  font-size: 36px;
  margin-top: 15px;
  color: #001e6c;
}

.section6-title span {
  color: #fa633b;
}

/* DESC */
.section6-desc {
  font-family: "Manrope-Regular";
  font-size: 17px;
  margin-top: 10px;
  color: #001e6c;
}

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

.s6-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 🔥 IMPORTANT FIX (YOUR PREVIOUS ISSUE) */
.s6-img {
  width: 100%;
  height: 250px; /* FORCE SAME HEIGHT */
  object-fit: cover; /* KEEP IMAGE PROPER */
  border-radius: 16px;
}

/* TITLE TEXT */
.s6-card p {
  font-family: "Manrope-SemiBold";
  font-size: 15px;
  color: #001e6c;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0rem;
}

/* BULLET */
.s6-card p span {
  width: 6px;
  height: 6px;
  background: #fa633b;
  border-radius: 50%;
}

/* DESCRIPTION */
.s6-card small {
  font-family: "Manrope-Regular";
  font-size: 13px;
  color: #001e6c;
  line-height: 1.5;
  text-align: left;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .section6-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-6 {
    padding: 2rem 10px;
    min-height: auto;
  }

  .section6-title {
    font-size: 24px;
  }

  .s6-img {
    height: 160px;
  }
}

/* ================= SECTION 7 ================= */

.section-7 {
  background: #fff;
  padding: 100px 0;
  color: #001e6c;
}

/* SUBTITLE */
.section7-subtitle {
  font-family: "Manrope-Medium";
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* TRIANGLE LINE (consistent with others) */
.section7-subtitle .line {
  position: relative;
  width: 40px;
  height: 6px;
}

.section7-subtitle .line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fa633b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* TITLE */
.section7-title {
  font-family: "Manrope-Bold";
  font-size: 36px;
  margin: 1rem 0;
}

.section7-title span {
  color: #fa633b;
}

/* ================= ITEMS ================= */

.s7-item {
  padding: 30px 20px;
  position: relative;
}

/* ICON */
.s7-icon {
  height: 4rem;
  margin: 0 auto 2rem;
}

/* TITLE */
.s7-item h6 {
  font-family: "Manrope-Bold";
  font-size: 16px;
  margin-bottom: 8px;
}

/* TEXT */
.s7-item p {
  font-family: "Manrope-Regular";
  font-size: 13px;
  color: #001e6c;
  max-width: 200px;
  margin: 0 auto;
}

/* VERTICAL DIVIDERS (DESKTOP ONLY) */
@media (min-width: 992px) {
  .section-7 .col-lg {
    position: relative;
  }

  /* .section-7 .col-lg:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: rgba(0, 30, 108, 0.1);
  } */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .section7-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-7 {
    padding: 2rem 10px;
  }

  .section7-title {
    font-size: 24px;
  }

  .s7-icon {
    height: 50px;
  }
}

/* ================= SECTION 8: ASK EXPERT CTA ================= */

/* LABEL */
.s8-label {
  font-family: "Manrope-Medium";
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

/* TITLE */
.s8-title {
  font-family: "Manrope-Bold";
  font-size: 42px;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.s8-title span {
  color: #fa633b;
}

/* DESCRIPTION */
.s8-desc {
  font-family: "Manrope-Regular";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.7;
}

/* BUTTON */
.s8-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fa633b;
  color: #fff;
  font-family: "Manrope-Bold";
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 15px 44px;
  border-radius: 999px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: -5px -5px white;
}

.s8-btn:hover {
  background: #e5522a;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .s8-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .section-8 {
    padding: 2rem 10px;
  }

  .s8-title {
    font-size: 26px;
  }
}

/* ================= SECTION 9: CASE-BASED LEARNING ================= */

.section-9 {
  background: #ffffff;
  padding: 100px 0;
  color: #001e6c;
}

/* SUBTITLE */
.section9-subtitle {
  font-family: "Manrope-Medium";
  display: flex;
  align-items: center;
  gap: 10px;
  color: #001e6c;
  margin-bottom: 0;
}

/* TRIANGLE LINE (same pattern as other sections) */
.section9-subtitle .line {
  position: relative;
  width: 40px;
  height: 6px;
  flex-shrink: 0;
}

.section9-subtitle .line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fa633b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* TITLE */
.section9-title {
  font-family: "Manrope-Bold";
  font-size: 36px;
  line-height: 1.3;
  margin-top: 15px;
}

.section9-title span {
  color: #fa633b;
}

/* DESCRIPTION */
.section9-desc {
  font-family: "Manrope-Regular";
  font-size: 17px;
  line-height: 1.7;
  color: #001e6c;
  padding: 0 15px;
}

/* ===== VIDEO CARDS ===== */

.s9-card {
  border-radius: 16px;
  overflow: hidden;
}

/* IMAGE WRAPPER */
.s9-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* IMAGE */
.s9-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.s9-card:hover .s9-img {
  transform: scale(1.05);
}

/* PLAY BUTTON */
.s9-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: #fa633b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.s9-play-btn svg {
  margin-left: 3px; /* optical centering of play icon */
}

.s9-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #e5522a;
}

/* CARD TEXT */
.s9-content {
  padding: 14px 4px;
}

.s9-content p {
  font-family: "Manrope-Bold";
  font-size: 15px;
  color: #001e6c;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* BULLET DOT */
.s9-content p span {
  width: 6px;
  height: 6px;
  background: #fa633b;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.s9-content small {
  font-family: "Manrope-Regular";
  font-size: 13px;
  color: #001e6c;
  line-height: 1.5;
}

/* ===== SHARED OUTLINE BUTTON ===== */

.explore-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 90px !important;
  width: 100%;
}

.explore-btn-wrap::before,
.explore-btn-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #fa633b;
  opacity: 0.4;
}

.explore-outline-btn-realcase {
  background: #fa633b !important;
  color: white !important;
  box-shadow: -5px -5px #001e6c;
}

.explore-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  color: #fa633b;
  border: 2px solid #fa633b;
  font-family: "Manrope-Bold";
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 38px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.explore-outline-btn-start {
  box-shadow: -5px -5px #001e6c;
  background-color: #fa633b;
  color: white;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.explore-outline-btn:hover {
  background: #fa633b;
  color: #ffffff;
}

@media (max-width: 768px) {
  .section-9 {
    padding: 2rem 10px;
  }

  .section9-title {
    font-size: 24px;
  }

  .s9-img {
    height: 200px;
  }
}

/* ================= SECTION 10: ARTICLES ================= */

.section-10 {
  background: #f4f4f6;
  padding: 80px 0;
  color: #001e6c;
  position: relative;
  overflow: hidden;
}

/* GAVEL DECORATION */
.s10-gavel {
  position: absolute;
  top: 1rem;
  right: 20px;
  width: 200px;
  pointer-events: none;
  z-index: 1;
}

.s10-gavel img {
  width: 100%;
  height: auto;
}

/* LABEL */
.section10-label {
  font-family: "Manrope-Medium";
  font-size: 15px;
  color: #001e6c;
  margin-bottom: 10px;
}

/* TITLE */
.section10-title {
  font-family: "Manrope-Bold";
  font-size: 36px;
  color: #001e6c;
  margin-bottom: 14px;
}

/* DESC */
.section10-desc {
  font-family: "Manrope-Regular";
  font-size: 16px;
  color: #001e6c;
  margin: 0 auto;
}

/* ===== GRID WRAPPER WITH ARROWS ===== */

/* .s10-grid-wrapper {
  padding: 0 64px;
} */

/* NAV ARROWS */
.s10-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ddd;
  color: #001e6c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.s10-nav:hover {
  background: #001e6c;
  color: #ffffff;
  border-color: #001e6c;
}

.s10-prev {
  left: 0;
}

.s10-next {
  right: 0;
}

/* ===== ARTICLE CARDS ===== */

.s10-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.s10-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.s10-img-wrapper {
  overflow: hidden;
  flex-shrink: 0;
}

.s10-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.s10-card:hover .s10-img {
  transform: scale(1.06);
}

/* CONTENT */
.s10-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.s10-content h6 {
  font-family: "Manrope-Bold";
  font-size: 14px;
  color: #001e6c;
  margin-bottom: 8px;
  line-height: 1.4;
}

.s10-content p {
  font-family: "Manrope-Regular";
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}

/* FOOTER ROW (meta + download button) */
.s10-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: auto;
  gap: 10px;
}

/* META ROW */
.s10-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: "Manrope-Regular";
  font-size: 12px;
  color: #888;
}

.s10-meta b {
  color: #92acf0 !important;
  font-family: "Manrope-SemiBold";
}

.s10-meta span {
  color: #001e6c;
}

/* DOWNLOAD BUTTON */
.s10-download-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #fa633b;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  text-decoration: none;
}

.s10-download-btn:hover {
  background: #e04e28;
  transform: scale(1.1);
}

.s10-download-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.s10-state {
  margin: 0;
  padding: 24px 0;
  text-align: center;
  color: #001e6c;
  font-family: "Manrope-SemiBold";
}

.s10-state.is-error {
  color: #fa633b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section10-title {
    font-size: 28px;
  }

  .s10-gavel {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .section-10 {
    padding: 2rem 10px;
  }

  .section10-title {
    font-size: 24px;
  }

  .s10-nav {
    width: 36px;
    height: 36px;
  }

  .s10-gavel {
    width: 4rem;
    top: 1%;
  }
}

/* ================= SECTION 11: CERTIFICATION ================= */

.section-11 {
  padding: 80px 0;
  padding-bottom: 0rem;
}

/* FRAME */
.s11-frame {
  position: relative;
  border: 2px solid rgba(201, 151, 60, 0.55);
  padding: 65px 50px;
  color: #ffffff;
}

/* CORNER ORNAMENTS */
.s11-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(201, 151, 60, 0.9);
  border-style: solid;
}

.s11-tl {
  top: -2px;
  left: -2px;
  border-width: 3px 0 0 3px;
}

.s11-tr {
  top: -2px;
  right: -2px;
  border-width: 3px 3px 0 0;
}

.s11-bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 3px 3px;
}

.s11-br {
  bottom: -2px;
  right: -2px;
  border-width: 0 3px 3px 0;
}

/* GET */
.s11-get {
  font-family: "Manrope-Regular";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* CERTIFIED ROW */
.s11-certified-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 6px;
}

/* LAUREL SVG */
.s11-laurel {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.s11-laurel-flip {
  transform: scaleX(-1);
}

/* CERTIFIED TEXT */
.s11-certified {
  font-family: "Dancing Script", cursive;
  font-size: 60px;
  color: #d95f5f;
  margin: 0;
  line-height: 1;
  font-weight: 700;
}

/* IN MEDICO-LEGAL PRACTICE */
.s11-in {
  font-family: "Manrope-Medium";
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* DESCRIPTION */
.s11-desc {
  font-family: "Manrope-Regular";
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .s11-certified {
    font-size: 48px;
  }

  .s11-frame {
    padding: 50px 30px;
  }

  .s11-laurel {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .section-11 {
    padding: 0px;
  }

  .s11-certified {
    font-size: 38px;
  }

  .s11-laurel {
    width: 46px;
  }

  .s11-frame {
    padding: 40px 20px;
  }

  .s11-in {
    font-size: 15px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #f4f4f6;
  margin-top: 2rem;
  padding-top: 94px;
  position: relative;
  overflow: visible;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  height: 3px;
  width: calc(50% - 76px);
  background: #fa633b;
}

.site-footer::before {
  left: 0;
}

.site-footer::after {
  right: 0;
}

/* LOGO TOP */
.footer-top {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 98px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
  border-radius: 0 0 72px 72px;
  background: #ffffff;
  box-shadow: 0 24px 38px rgba(0, 30, 108, 0.13);
}

.footer-logo-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 4px solid #fa633b;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 12px 24px rgba(0, 30, 108, 0.12);
}

.footer-logo-circle img {
  width: 62px;
  height: auto;
}

/* MAIN FOOTER */
.footer-main {
  padding-top: 0;
  padding-bottom: 50px;
}

/* TAGLINE */
.footer-tagline {
  font-family: "Manrope-Bold";
  font-size: 1.75rem;
  line-height: 1.55;
  color: #001e6c;
}

.footer-tagline span {
  color: #fa633b;
}

/* HEADING */
.footer-heading {
  font-family: "Manrope-Bold";
  font-size: 1rem;
  color: #001e6c;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: "Manrope-Regular";
  font-size: 14px;
  color: #001e6c;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fa633b;
}

/* COPYRIGHT BAR */
.footer-copyright {
  padding: 18px 20px;
  text-align: center;
  font-family: "Manrope-Medium";
  border-top: 1px solid #7887b0;
}

.footer-copyright p {
  font-family: "Manrope-Medium";
  font-size: 13px;
  color: #001e6c82;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-tagline {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .footer-tagline {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-top {
    top: -38px;
    width: 108px;
    height: 82px;
  }

  .footer-logo-circle {
    width: 68px;
    height: 68px;
    border-width: 3px;
  }

  .footer-logo-circle img {
    width: 50px;
  }

  .site-footer::before,
  .site-footer::after {
    width: calc(50% - 62px);
  }

  .footer-main {
    /* padding-bottom: 35px; */
    padding: 1rem 1.5rem;
  }
}

.section-8 .container {
  background:
    linear-gradient(90deg, rgb(0 74 246 / 48%), rgb(0 76 255 / 28%)),
    linear-gradient(rgba(0, 30, 108, 0.16), rgba(0, 30, 108, 0.22)),
    url(./assets/Section-8/bg.webp) no-repeat center / cover;
  padding: 100px 0;
  border-radius: 2rem;
}

.trusted-section h4 {
  font-family: "Manrope-Bold";
}

.circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fa633b;
  border-radius: 50%;
  margin-right: 8px;
}

.section-11 .container {
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section9-title {
    font-size: 28px;
  }

  .section9-desc {
    padding: 0;
    margin-top: 18px;
  }

  .section5-desc {
    padding: 0rem;
  }

  .s10-grid-wrapper {
    padding: 0px;
  }

  .hero-section {
    min-height: auto;
  }
}

.explore-outline-btn-article {
  box-shadow: -5px -5px #001e6c;
  background-color: #fa633b;
  color: white;
}

.explore-outline-btn-start {
  box-shadow: -5px -5px #ffffff;
}

.border-right {
  position: relative;
}

.border-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #9491918e 0px,
    #9491918e 8px,
    transparent 8px,
    transparent 16px
  );
}

/* ================= LOGIN POPUP ================= */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.login-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.login-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.02fr);
  overflow: hidden;
  background: #ffffff;
  border-radius: 35px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.login-modal.is-visible .login-modal__panel {
  transform: translateY(0) scale(1);
}

.login-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #001e6c;
  font-size: 26px;
  line-height: 1;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.login-modal.is-required .login-modal__close {
  display: none;
}

.login-modal__image {
  padding: 8px 0 8px 8px;
}

.login-modal__image img {
  width: 100%;
  height: 100%;
  min-height: 394px;
  border-radius: 24px;
}

.login-modal__form {
  padding: 62px 34px 36px;
  color: #001e6c;
}

.login-modal__form h2 {
  margin-bottom: 6px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 18px;
  line-height: 1.25;
}

.login-modal__form > p {
  margin-bottom: 30px;
  color: #001e6c;
  font-family: "Manrope-Regular";
  font-size: 11px;
}

.login-field {
  display: block;
  margin-bottom: 20px;
}

.login-field > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #111111;
  font-family: "Manrope-Medium";
  font-size: 12px;
}

.login-field svg {
  width: 13px;
  height: 13px;
  fill: #111111;
  flex: 0 0 auto;
}

.required {
  color: #fa633b;
}

.login-field input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  color: #001e6c;
  font-family: "Manrope-Regular";
  font-size: 12px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.login-field input::placeholder {
  color: #9b9b9b;
}

.login-field input:focus {
  border-color: #fa633b;
  box-shadow: 0 0 0 3px rgba(250, 99, 59, 0.14);
}

.show-password {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: -8px;
  margin-bottom: 2rem;
  color: #222222;
  font-family: "Manrope-Regular";
  font-size: 12px;
}

.show-password input {
  width: 15px;
  height: 15px;
  accent-color: #fa633b;
}

.login-message {
  min-height: 18px;
  margin: -28px 0 22px;
  color: #001e6c;
  font-family: "Manrope-Regular";
  font-size: 12px;
  line-height: 1.4;
}

.login-message.is-error {
  color: #c62828;
}

.login-message.is-success {
  color: #1b7f3a;
}

.login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 36px;
  padding: 0 28px;
  border-radius: 999px;
  background: #fa633b;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 12px;
  box-shadow: -4px -4px 0 0 #001e6c;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.login-submit:hover {
  background: #e5522a;
  transform: translateY(-1px);
  box-shadow: -4px 1px 0 #001e6c;
}

.login-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

body.login-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .login-modal {
    padding: 16px;
  }

  .login-modal__panel {
    max-height: calc(100vh - 32px);
    grid-template-columns: 1fr;
    overflow-y: auto;
    border-radius: 20px;
  }

  .login-modal__image {
    padding: 8px 8px 0;
  }

  .login-modal__image img {
    min-height: 190px;
    max-height: 240px;
    border-radius: 16px;
  }

  .login-modal__form {
    padding: 28px 22px 26px;
  }

  .show-password {
    margin-bottom: 28px;
  }
}

/* ================= ARTICLES PAGE ================= */
.articles-page {
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Regular";
}

.articles-hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(0, 4, 15, 0), rgba(0, 25, 76, 0)),
    url("./assets/Section-1/article_bg.webp") no-repeat center / cover;
  color: #ffffff;
}

.articles-navbar {
  padding-top: 56px;
}

.articles-hero__content {
  max-width: 900px;
  margin: 132px auto 0;
  text-align: center;
}

.articles-hero__content h1 {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 46px;
  line-height: 1.2;
}

.articles-hero__content p {
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope-Regular";
  font-size: 21px;
}

.article-search {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.article-search input {
  width: 100%;
  height: 58px;
  padding: 0 78px 0 32px;
  border: 0;
  border-radius: 999px;
  color: #001e6c;
  background: #ffffff;
  font-family: "Manrope-Medium";
  font-size: 13px;
  outline: none;
}

.article-search input::placeholder {
  color: #001e6c;
}

.article-search button {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fa633b;
  color: #ffffff;
}

.article-search svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.articles-main {
  padding: 96px 0 96px;
}

.article-topics {
  max-width: 1150px;
  margin: 0 auto 92px;
  padding: 0 20px;
  text-align: center;
}

.article-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 42px;
  color: #001e6c;
  font-family: "Manrope-Medium";
  font-size: 20px;
}

.article-section-label span {
  width: 64px;
  height: 6px;
  background: #fa633b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.topic-tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  padding: 7px;
  border: 2px solid #e3e8f3;
  border-radius: 9px;
  background: #eef1f8;
}

.topic-tabs button {
  min-height: 52px;
  border-radius: 7px;
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 15px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.topic-tabs button.active,
.topic-tabs button:hover {
  background: #001e6c;
  color: #ffffff;
  font-family: "Manrope-Bold";
}

.article-card__meta p {
  font-family: "Manrope-SemiBold";
}

.article-listing {
  max-width: 1440px;
}

.article-card {
  height: 100%;
  padding: 9px;
  border: 1px solid #d7dce9;
  border-radius: 14px;
  background: #f5f5f8;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 30, 108, 0.12);
}

.article-card > img {
  width: 100%;
  /* height: 258px; */
  object-fit: cover;
  border-radius: 12px;
}

.article-card__body {
  position: relative;
  min-height: 228px;
  padding: 18px 12px 12px;
}

.article-card__body h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 17px;
  line-height: 1.35;
}

.article-card__body h2 span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fa633b;
  flex: 0 0 auto;
}

.article-card__body > p {
  max-width: 340px;
  margin-bottom: 36px;
  color: #001e6c;
  font-size: 13px;
  line-height: 1.7;
}

.article-card__meta {
  color: #001e6c;
  font-family: "Manrope-SemiBold";
  font-size: 12px;
}

.article-card__meta p {
  margin: 0 0 8px;
}

.article-card__meta a {
  color: #7aa3ff;
  font-family: "Manrope-Regular";
}

.article-download {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fa633b;
  color: #ffffff;
}

.article-download svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.article-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
}

.article-pagination button,
.article-pagination span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4dae7;
  border-radius: 4px;
  color: #001e6c;
  background: #ffffff;
  font-family: "Manrope-Medium";
  font-size: 12px;
}

.article-pagination button.active,
.article-pagination button.next {
  border-color: #001e6c;
  background: #001e6c;
  color: #ffffff;
}

.article-pagination button.disabled {
  border-color: #cbd2df;
  background: #cbd2df;
  color: #ffffff;
  cursor: not-allowed;
}

.article-pagination svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-footer {
  position: relative;
  margin-top: 82px;
  padding-top: 94px;
  background: #f4f4f6;
  overflow: visible;
}

.article-footer::before,
.article-footer::after {
  content: "";
  position: absolute;
  top: 0;
  height: 3px;
  width: calc(50% - 76px);
  background: #fa633b;
}

.article-footer::before {
  left: 0;
}

.article-footer::after {
  right: 0;
}

.article-footer__gavel {
  position: absolute;
  left: 0;
  top: -110px;
  width: 245px;
  pointer-events: none;
}

.article-footer__logo {
  position: absolute;
  top: -46px;
  left: 50%;
  width: 134px;
  height: 134px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: translateX(-50%);
  padding-top: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 24px 38px rgba(0, 30, 108, 0.13);
  align-items: center;
}

.article-footer__logo img {
  width: 86px;
  height: 86px;
  padding: 10px;
  border: 4px solid #fa633b;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 30, 108, 0.12);
  object-fit: contain;
}

.article-footer__content {
  padding-bottom: 0;
}

.article-footer__tagline {
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 1.85rem;
  line-height: 1.35;
}

.article-footer__tagline span {
  color: #fa633b;
}

.article-footer h6 {
  margin-bottom: 26px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 18px;
}

.article-footer ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.article-footer a {
  color: #001e6c;
  font-family: "Manrope-Regular";
  font-size: 15px;
}

.article-footer a:hover {
  color: #fa633b;
}

.article-footer__copyright {
  margin-top: 3rem;
  padding: 24px 0;
  border-top: 1px solid #d7dce9;
  text-align: center;
}

.article-footer__copyright p {
  margin: 0;
  color: #001e6c82;
  font-family: "Manrope-Regular";
  font-size: 13px;
}

@media (max-width: 991px) {
  .articles-hero {
    min-height: auto;
    padding-bottom: 76px;
  }

  .articles-navbar {
    padding-top: 20px;
  }

  .articles-hero__content {
    margin-top: 80px;
  }

  .articles-hero__content h1 {
    font-size: 34px;
  }

  .articles-hero__content p {
    font-size: 17px;
  }

  .topic-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-card > img {
    height: 220px;
  }

  .article-footer__tagline {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .articles-hero__content {
    margin-top: 56px;
  }

  .articles-hero__content h1 {
    font-size: 28px;
  }

  .article-search input {
    height: 52px;
    padding-left: 20px;
    font-size: 12px;
  }

  .article-search button {
    top: 5px;
    right: 6px;
    width: 42px;
    height: 42px;
  }

  .articles-main {
    padding: 64px 0;
  }

  .article-topics {
    margin-bottom: 54px;
  }

  .article-section-label {
    font-size: 17px;
    gap: 14px;
  }

  .topic-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-pagination {
    justify-content: center;
    flex-wrap: wrap;
  }

  .article-footer {
    margin-top: 48px;
    padding-top: 82px;
  }

  .article-footer__gavel {
    width: 150px;
    top: -74px;
  }

  /* .article-footer__logo {
    top: -38px;
    width: 108px;
    height: 82px;
  } */

  .article-footer__logo img {
    width: 68px;
    height: 68px;
    border-width: 3px;
  }

  .article-footer::before,
  .article-footer::after {
    width: calc(50% - 62px);
  }

  .article-footer__tagline {
    font-size: 21px;
  }

  /* .article-footer h6,
  .article-footer ul {
    text-align: center;
  } */

  .article-footer__copyright {
    margin-top: 40px;
  }
}

/* ================= CASE STUDIES PAGE ================= */
.case-page {
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Regular";
}

.case-hero {
  /* min-height: 385px; */
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("./assets/case-studies/bg.webp") no-repeat center / cover;
  color: #ffffff;
}

.case-hero__content {
  max-width: 840px;
  margin: 86px auto 0;
  text-align: center;
  padding-bottom: 86px;
}

.case-hero__content h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 38px;
  line-height: 1.2;
}

.case-hero__content p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Manrope-Regular";
  font-size: 17px;
  line-height: 1.75;
}

.case-intro {
  position: relative;
  padding: 92px 0 82px;
  overflow: hidden;
}

.case-intro__gavel {
  position: absolute;
  top: 1rem;
  left: 34px;
  width: 11rem;
  pointer-events: none;
}

.case-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #001e6c;
  font-family: "Manrope-ExtraBold";
  font-size: 1.25rem;
}

.case-label span {
  width: 34px;
  height: 2px;
  background: #fa633b;
}

.case-intro p:not(.case-label) {
  max-width: 720px;
  color: #001e6c;
  font-size: 16px;
  line-height: 1.95;
}

.case-intro__image {
  width: 100%;
  border-radius: 8px;
}

.case-grid-section {
  position: relative;
  padding: 76px 0 108px;
  background: #f4f4f6 url("./assets/Section-6/gray_section.webp") no-repeat
    center / cover;
  overflow: hidden;
}

.case-grid-section h2 {
  margin-bottom: 62px;
  text-align: center;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 34px;
}

.case-grid-section h2 span {
  color: #fa633b;
}

.case-card {
  height: 100%;
}

.case-state {
  margin: 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Bold";
  text-align: center;
}

.case-state.is-error {
  color: #b42318;
}

.case-card > img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 16px;
}

.case-card h3 {
  min-height: 58px;
  margin-bottom: 13px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 16px;
  line-height: 1.38;
  margin-bottom: 0rem !important;
}

.case-card h3 span {
  color: #fa633b;
}

.case-card p {
  min-height: 70px;
  margin-bottom: 1rem;
  font-family: "Manrope-Bold";
  color: #001e6c;
  font-size: 12px;
  line-height: 1.65;
}

.case-download {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 15px;
  align-items: center;
  max-width: 210px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #001e6c;
  text-align: left;
}

.case-download.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.case-download span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(250, 99, 59, 0.55);
  color: #fa633b;
}

.case-download svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.case-download strong {
  color: #001e6c;
  font-family: "Manrope-Regular";
  font-size: 15px;
  font-weight: 400;
}

.case-download small {
  color: #000000;
  font-family: "Manrope-Bold";
  font-size: 10px;
  text-decoration: underline;
}

.case-video-section {
  padding: 112px 0 0;
  background: #ffffff;
}

.case-video-card h3 {
  margin: 20px 0 14px;
  color: #000000;
  font-family: "Manrope-Bold";
  font-size: 16px;
}

.case-video-card p {
  max-width: 340px;
  color: #333333;
  font-size: 12px;
  line-height: 1.75;
  font-family: "Manrope-Regular";
}

.case-video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.case-video-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.case-video-thumb button,
.case-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  color: #fa633b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.case-video-thumb svg,
.case-video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: currentColor;
}

.case-video-note {
  display: block;
  margin-top: 10px;
  color: #fa633b;
  font-family: "Manrope-Bold";
  font-size: 11px;
}

@media (max-width: 991px) {
  .case-hero {
    min-height: auto;
    padding-bottom: 74px;
  }

  .case-hero__content {
    margin-top: 74px;
  }

  .case-intro__gavel {
    width: 92px;
    left: 14px;
  }

  .case-intro__image {
    height: 320px;
  }

  .case-card > img,
  .case-video-thumb img {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .case-hero__content h1 {
    font-size: 30px;
  }

  .case-hero__content p {
    font-size: 14px;
  }

  .case-intro {
    padding: 72px 0 58px;
  }

  .case-intro__gavel {
    top: 1rem;
    width: 72px;
  }

  .case-intro p:not(.case-label) {
    font-size: 14px;
  }

  .case-grid-section {
    padding: 58px 0 3rem;
  }

  .case-grid-section h2 {
    margin-bottom: 0 !important;
    font-size: 27px;
  }

  .case-card h3,
  .case-card p {
    min-height: auto;
  }

  .case-video-section {
    padding: 72px 0 1rem !important;
  }

  .case-video-thumb button,
  .case-video-play {
    width: 58px;
    height: 58px;
  }
}

/* ================= CONSENT FORM PAGE ================= */
.consent-page {
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Regular";
}

.consent-hero {
  min-height: 475px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("./assets/consent-form/bg.webp") no-repeat center / cover;
  color: #ffffff;
}

.consent-hero__content {
  max-width: 890px;
  margin: 138px auto 0;
  text-align: center;
  padding-bottom: 138px;
}

.consent-hero__content h1 {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 40px;
  line-height: 1.2;
}

.consent-hero__content p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.8;
}

.consent-main {
  position: relative;
  padding: 78px 0 118px;
}

.consent-gavel {
  position: absolute;
  top: 70px;
  right: 34px;
  width: 160px;
  pointer-events: none;
}

.consent-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  max-width: 1080px;
  margin: 0 auto 82px;
  padding: 6px;
  border: 2px solid #e3e8f3;
  border-radius: 8px;
  background: #eef1f8;
}

.consent-tabs button {
  min-height: 47px;
  padding: 0 16px;
  border-radius: 6px;
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 13px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.consent-tabs button.active,
.consent-tabs button:hover {
  background: #001e6c;
  color: #ffffff;
}

.consent-form-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.consent-form {
  display: none;
  min-height: 1200px;
  padding: 48px 58px 72px;
  border: 2px solid #9bb4ff;
  border-top-width: 6px;
  border-radius: 12px;
  background: #f4f4f6;
  color: #000000;
  box-shadow: 0 6px 16px rgba(0, 30, 108, 0.18);
}

.consent-form.active {
  display: block;
}

.consent-form h2 {
  margin-bottom: 24px;
  text-align: center;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 18px;
}

.consent-form hr {
  margin: 0 0 46px;
  border-color: #98a6c3;
  opacity: 1;
}

.consent-form h3 {
  margin: 0 0 54px;
  padding: 15px 20px;
  background: #001e88;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 19px;
}

.consent-form h4 {
  margin-bottom: 12px;
  color: #001e6c;
  font-family: "Manrope-Medium";
  font-size: 18px;
}

.consent-form p,
.consent-form li,
.consent-form label,
.consent-form strong,
.consent-form small {
  font-size: 18px;
  line-height: 1.8;
}

.consent-line-grid {
  display: grid;
  gap: 46px;
  margin-bottom: 52px;
}

.consent-line-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.consent-line-grid.one {
  max-width: 680px;
  gap: 22px;
}

.consent-line,
.consent-line-grid p,
.signature-grid p,
.guardian-line {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 0;
  color: #000000;
  font-family: "Manrope-Medium";
}

.consent-line span,
.consent-line-grid span,
.signature-grid span,
.guardian-line span,
.consent-check i {
  display: inline-block;
  height: 1px;
  flex: 1;
  min-width: 140px;
  background: #333333;
}

.consent-field {
  min-width: 140px;
  flex: 1;
  border: 0;
  border-bottom: 1px solid #333333;
  border-radius: 0;
  background: transparent;
  color: #001e6c;
  font-family: "Manrope-Regular";
  font-size: 14px;
  line-height: 1.6;
  outline: none;
}

.consent-field:focus {
  border-bottom-color: #fa633b;
}

.consent-checkbox {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #001e6c;
}

.consent-line.full {
  margin-bottom: 54px;
}

.consent-block {
  margin-bottom: 2rem;
}

.consent-block ul {
  padding-left: 17px;
  margin: 8px 0 0;
  list-style: disc;
}

.consent-block li {
  margin-bottom: 5px;
}

.consent-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.consent-check span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid #000000;
  border-radius: 3px;
  background: transparent;
}

.consent-check .consent-checkbox + span {
  display: none;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.7fr) minmax(
      150px,
      0.55fr
    );
  gap: 32px 56px;
  margin-top: 2rem;
  align-items: end;
}

.signature-grid p {
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 18px;
}

.signature-grid .seal {
  grid-column: 3;
  grid-row: 1 / span 3;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #001e6c;
}

.signature-grid .seal span {
  width: 150px;
  min-width: 0;
  flex: 0 0 auto;
}

.guardian-line {
  max-width: 730px;
  margin-top: 52px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 18px;
}

.guardian-note {
  display: block;
  margin-top: 6px;
}

.consent-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  max-width: 1140px;
  margin: 62px auto 0;
}

.consent-actions::before,
.consent-actions::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #fa633b;
}

.consent-actions button {
  min-width: 255px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 12px;
}

.consent-actions .download {
  background: #fa633b;
  box-shadow: 0 -4px 0 #001e6c;
}

.consent-actions .print {
  background: #001e6c;
  box-shadow: 0 -4px 0 #fa633b;
}

.consent-footer {
  margin-top: 0;
}

@media (max-width: 991px) {
  .consent-hero {
    min-height: auto;
    padding-bottom: 82px;
  }

  .consent-hero__content {
    margin-top: 82px;
  }

  .consent-tabs {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }

  .consent-gavel {
    width: 96px;
    top: 96px;
  }

  .consent-form {
    padding: 36px 28px 54px;
  }

  .consent-line-grid.three,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-grid {
    gap: 26px;
  }

  .signature-grid .seal {
    grid-column: auto;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .consent-hero__content h1 {
    font-size: 30px;
  }

  .consent-hero__content p {
    font-size: 14px;
  }

  .consent-main {
    padding: 54px 0 80px;
  }

  .consent-gavel {
    display: none;
  }

  .consent-form {
    min-height: auto;
    padding: 28px 18px 42px;
  }

  .consent-form h3 {
    margin-bottom: 34px;
    font-size: 16px;
  }

  .consent-line,
  .consent-line-grid p,
  .signature-grid p,
  .guardian-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .consent-line span,
  .consent-line-grid span,
  .signature-grid span,
  .guardian-line span {
    width: 100%;
    min-width: 0;
  }

  .consent-field {
    width: 100%;
    min-width: 0;
  }

  .consent-actions {
    flex-direction: column;
    gap: 18px;
  }

  .consent-actions::before,
  .consent-actions::after {
    width: 100%;
    flex: 0 0 auto;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  .consent-form.active,
  .consent-form.active * {
    visibility: visible;
  }

  .consent-form.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: auto;
    border: 0;
    box-shadow: none;
  }

  .consent-field {
    color: #000000;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* ================= ASK EXPERT PAGE ================= */
.ask-page {
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Regular";
}

.ask-hero {
  position: relative;
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("./assets/ask-expert/bg.webp") no-repeat center / cover;
  color: #ffffff;
}

.ask-hero__content {
  max-width: 860px;
  margin: 5rem auto 0;
  text-align: center;
}

.ask-hero__content h1 {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 42px;
}

.ask-hero__content p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
  line-height: 1.8;
}

.active-ask-btn,
.profile-nav-btn {
  box-shadow: 0 2px 0 rgba(250, 99, 59, 0.9);
}

.profile-nav-btn {
  width: 48px;
  height: 48px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 50%;
}

.profile-avatar {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.profile-avatar img {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.profile-avatar.has-image img {
  width: 100%;
  height: 100%;
}

.profile-dropdown {
  position: fixed;
  z-index: 2500;
  width: min(360px, calc(100vw - 32px));
  padding: 22px 28px;
  border-radius: 14px;
  background: #ffffff;
  color: #001e6c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.profile-dropdown p,
.profile-dropdown button {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 16px;
}

.profile-dropdown p {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 99, 59, 0.75);
}

.profile-dropdown button {
  width: 100%;
  padding-top: 20px;
  text-align: left;
}

.profile-dropdown span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0edff;
  color: #001e6c;
}

.profile-dropdown svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.ask-profile-card {
  display: none;
  position: absolute;
  top: 116px;
  right: calc((100vw - 1320px) / 2 + 18px);
  z-index: 3;
  width: 372px;
  padding: 22px 28px;
  border-radius: 14px;
  background: #ffffff;
  color: #001e6c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.ask-profile-card p,
.ask-profile-card button {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 16px;
}

.ask-profile-card p {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 99, 59, 0.75);
}

.ask-profile-card button {
  padding-top: 20px;
}

.ask-profile-card span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0edff;
  color: #001e6c;
}

.ask-profile-card svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.ask-benefits {
  padding: 86px 0 82px;
  background: #ffffff;
}

.ask-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.ask-benefit {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 35px;
  text-align: center;
  border-right: 1px dashed rgba(250, 99, 59, 0.45);
}

.ask-benefit:last-child {
  border-right: 0;
}

.ask-benefit span {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: #fff0eb;
  color: #fa633b;
}

.ask-benefit svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.ask-benefit h2 {
  margin-bottom: 15px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 1.1rem;
}

.ask-benefit p {
  max-width: 190px;
  margin: 0;
  color: #001e6c;
  font-size: 0.8rem;
  line-height: 1.8;
  font-family: "Manrope-Regular";
}

.ask-workspace {
  position: relative;
  padding: 56px 20px 100px;
  background: #f4f4f6;
}

.ask-workspace__gavel {
  position: absolute;
  top: -72px;
  right: 58px;
  width: 210px;
  pointer-events: none;
}

.ask-question-card,
.ask-track-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 22px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.ask-track-card {
  margin-top: 104px;
}

.ask-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d7dce9;
}

.ask-card-title h2,
.ask-track-card h2 {
  margin: 0;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 17px;
}

.ask-card-title span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff3ee;
  color: #fa633b;
  font-size: 11px;
  font-family: "Manrope-Regular";
}

.ask-card-title svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.ask-question-card textarea {
  width: 100%;
  height: 140px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dfe3eb;
  border-radius: 6px;
  resize: vertical;
  color: #001e6c;
  font-size: 13px;
  outline: none;
  font-family: "Manrope-Regular";
}

.ask-question-card textarea:focus {
  border-color: #fa633b;
}

.ask-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.ask-form-footer label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #001e6c;
  font-size: 12px;
  visibility: hidden;
}

.ask-form-footer input {
  display: none;
}

.ask-form-footer svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ask-form-footer button,
.ask-track-list button {
  min-width: 118px;
  height: 42px;
  border-radius: 999px;
  background: #fa633b;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 12px;
}

.ask-form-footer button {
  box-shadow: -4px -4px #001e6c;
}

.ask-form-footer button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.ask-form-message {
  min-height: 20px;
  margin: 14px 0 0;
  color: #536179;
  font-family: "Manrope-SemiBold";
  font-size: 13px;
}

.ask-form-message.is-error {
  color: #d93025;
}

.ask-form-message.is-success {
  color: #137333;
}

.ask-track-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.ask-track-list article {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid #dfe3eb;
  border-radius: 8px;
}

.ask-track-list article > div {
  flex: 1;
  min-width: 0;
}

.ask-track-list p {
  margin: 0;
  color: #001e6c;
  font-size: 12px;
  overflow-wrap: anywhere;
  font-family: "Manrope-Regular";
}

.ask-track-list .pending {
  flex: 0 0 auto;
  color: #fa633b;
  font-size: 12px;
  font-family: "Manrope-Medium";
}

.ask-track-state {
  justify-content: center;
}

.ask-track-state.is-error p {
  color: #d93025;
}

.ask-answer-text {
  margin-top: 8px !important;
  color: #536179 !important;
  line-height: 1.7;
}

.ask-faq-section {
  position: relative;
  padding: 88px 20px 170px;
  background: #001e6c;
  color: #ffffff;
  overflow: hidden;
}

.ask-faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 48px;
  border-top: 4px solid #fa633b;
  border-radius: 0 0 0 100px;
}

.ask-faq-section h2 {
  margin-bottom: 12px;
  text-align: center;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 28px;
}

.ask-faq-subtitle,
.ask-more-faq {
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-family: "Manrope-Regular";
}

.ask-faq-list {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 38px auto 42px;
}

.ask-faq-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.ask-faq-list button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  color: #ffffff;
  font-family: "Manrope-SemiBold";
  font-size: 1.1rem;
}

.ask-faq-list button::after {
  content: "+";
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fa633b;
  font-family: "Manrope-Bold";
  font-size: 18px;
}

.ask-faq-list article.is-open button::after {
  content: "-";
}

.ask-faq-list p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.7;
  opacity: 0;
  transition:
    max-height 0.25s ease,
    margin-top 0.25s ease,
    opacity 0.2s ease;
}

.ask-faq-list article.is-open p {
  max-height: 180px;
  margin-top: 10px;
  opacity: 1;
  font-family: "Manrope-Regular";
  font-size: 0.8rem;
}

.ask-more-faq a {
  color: #fa633b;
  font-family: "Manrope-Bold";
}

.ask-faq-gavel {
  position: absolute;
  left: 120px;
  bottom: 20px;
  width: 220px;
}

.ask-footer {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .ask-profile-card {
    right: 24px;
  }
}

@media (max-width: 991px) {
  .ask-hero {
    min-height: auto;
    padding-bottom: 76px;
  }

  .ask-hero__content {
    margin-top: 78px;
  }

  .ask-profile-card {
    position: static;
    width: min(100%, 372px);
    margin: 28px auto 0;
  }

  .ask-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ask-benefit:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .ask-hero__content h1 {
    font-size: 31px;
  }

  .ask-hero__content p {
    font-size: 14px;
  }

  .ask-benefit-grid {
    grid-template-columns: 1fr;
  }

  .ask-benefit {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px dashed rgba(250, 99, 59, 0.45);
  }

  .ask-benefit:last-child {
    border-bottom: 0;
  }

  .ask-workspace__gavel {
    display: none;
  }

  .ask-card-title,
  .ask-form-footer,
  .ask-track-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .ask-form-footer button,
  .ask-track-list button {
    width: 100%;
  }

  .ask-faq-gavel {
    width: 150px;
    left: 20px;
  }
}

.ask-benefit span img {
  width: 4rem;
}

.course-page {
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-Regular";
}

.course-header {
  background: #ffffff;
}

.course-navbar {
  padding-top: 18px;
}
/* 
.course-page .custom-navbar .nav-link,
.course-page .nav-btn {
  color: #001e6c;
} */

.course-page .nav-btn {
  border-color: rgba(0, 30, 108, 0.38);
}

.course-page .active-ask-btn {
  border-color: transparent;
  background: linear-gradient(90deg, #fa633b, #001e6c);
  color: #ffffff;
  box-shadow: none;
}

.course-page .profile-nav-btn {
  background: #ffffff;
  color: #001e6c;
}

.course-page .profile-avatar {
  background: #001e6c;
  color: #ffffff;
}

.course-page .custom-toggler span {
  background: #001e6c;
}

.course-main {
  padding: 70px 0 96px;
}

.course-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.course-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.course-title-row h1 {
  margin: 0 0 8px;
  color: #001e6c;
  font-family: "Manrope-SemiBold";
  font-size: 20px;
}

.course-title-row p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #929bb0;
  font-size: 0.8rem;
  font-family: "Manrope-Regular";
}

.course-title-row p span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fa633b;
  font-family: "Manrope-Regular";
}

.current-module {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff !important;
}

.total-module {
  width: auto !important;
  height: auto !important;
  border-radius: 50%;
  background: #ffffff !important;
}

.course-title-row strong {
  color: #001e6c;
  font-family: "Manrope-Bold";
}

.course-certificate-button {
  min-width: 220px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  background: #fa633b;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 14px;
}

.course-certificate-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.course-video {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 16 / 8.8; */
  border-radius: 22px;
  background: #e6e9f1;
}

.course-video-player {
  position: relative;
  width: 100%;
  height: 100%;
}

.course-video-player > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-video-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #e6e9f1;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 15px;
}

.course-video-loader span {
  width: 42px;
  height: 42px;
  border: 4px solid #ffffff;
  border-top-color: #fa633b;
  border-radius: 50%;
  animation: courseSpin 0.8s linear infinite;
}

.course-video-loader p {
  margin: 0;
}

.course-video.is-loading .course-video-player > video {
  opacity: 0;
}

.course-video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 50%;
  background: #ffffff;
  color: #fa633b;
  box-shadow: 0 14px 32px rgba(0, 30, 108, 0.18);
}

.course-video.is-playing .course-video__play {
  opacity: 0;
  pointer-events: none;
}

.course-video.is-loading .course-video__play {
  opacity: 0;
  pointer-events: none;
}

.course-video__play svg {
  width: 52px;
  height: 52px;
  fill: currentColor;
  margin-left: 7px;
}

.course-complete-button {
  margin-top: 18px;
  padding: 13px 28px;
  border: 0;
  border-radius: 8px;
  background: #fa633b;
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 16px;
}

.course-complete-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.course-complete-button.is-completed:disabled {
  cursor: not-allowed;
  background: #9bd2b0;
  opacity: 0.9;
}

.course-complete-button.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: courseSpin 0.8s linear infinite;
}

.course-complete-message {
  min-height: 22px;
  margin: 10px 0 0;
  font-family: "Manrope-SemiBold";
  font-size: 14px;
  color: #64748b;
}

.course-complete-message.is-success {
  color: #15803d;
  font-family: "Manrope-Medium";
}

.course-complete-message.is-error {
  color: #c2410c;
}

.course-completion-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.42);
}

.course-completion-loader > div {
  min-width: 220px;
  padding: 26px 30px;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
}

.course-completion-loader span {
  width: 42px;
  height: 42px;
  display: inline-block;
  border: 4px solid #dbeafe;
  border-top-color: #fa633b;
  border-radius: 50%;
  animation: courseSpin 0.8s linear infinite;
}

.course-completion-loader p {
  margin: 14px 0 0;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 15px;
}

.course-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2100;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 18px;
  border-left: 4px solid #fa633b;
  border-radius: 8px;
  background: #ffffff;
  color: #001e6c;
  font-family: "Manrope-SemiBold";
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 32px));
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

body.course-completion-loading {
  overflow: hidden;
}

@keyframes courseSpin {
  to {
    transform: rotate(360deg);
  }
}

.course-progress {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border-radius: 18px;
  background: #002a9f;
  color: #ffffff;
}

.course-progress strong {
  flex: 0 0 auto;
  font-family: "Manrope-SemiBold";
  font-size: 14px;
}

.course-progress__track {
  height: 12px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff;
}

.course-progress__track span {
  min-width: 34px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: linear-gradient(90deg, #fa633b, #4a3a77);
  color: #ffffff;
  font-family: "Manrope-Bold";
  font-size: 8px;
}

.course-contains {
  max-height: 500px;
  overflow: auto;
  margin-top: 20px;
  padding: 26px 18px;
  border: 1px solid #d7dce9;
  border-radius: 14px;
  background: #f4f4f6;
}

.course-contains::-webkit-scrollbar {
  width: 5px;
}

.course-contains::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(#001e6c, #fa633b);
}

.course-contains h2 {
  margin: 0 0 24px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 20px;
  text-align: left;
}

.course-lesson {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 13px;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.course-lesson:hover,
.course-lesson:focus-visible,
.course-lesson.is-active {
  border-color: rgba(250, 99, 59, 0.38);
  background: #ffffff;
  outline: none;
}

.course-lesson__thumb {
  width: 82px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: #e7ebf4;
}

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

.course-lesson button {
  position: absolute;
  top: 13px;
  left: 27px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #fa633b;
}

.course-lesson button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-left: 3px;
}

.course-lesson h3 {
  margin: 0 0 8px;
  color: #001e6c;
  font-family: "Manrope-SemiBold";
  font-size: 12px;
  line-height: 1.3;
}

.course-lesson p {
  display: flex;
  gap: 18px;
  margin: 0;
  color: #fa633b;
  font-size: 10px;
}

.course-lesson.is-locked {
  opacity: 0.45;
}

.course-lesson.is-locked.is-active,
.course-lesson.is-locked:hover,
.course-lesson.is-locked:focus-visible {
  opacity: 1;
}

.course-upcoming {
  margin: 6px 0 18px;
  color: #001e6c;
  font-family: "Manrope-Medium";
  font-size: 12px;
}

.course-access-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 10px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 11px;
  color: #ffffff;
}

.course-access-card:hover {
  color: #ffffff;
}

.course-access-card.is-locked {
  cursor: not-allowed;
  opacity: 0.48;
}

.course-access-card.is-locked:hover {
  color: #ffffff;
  opacity: 0.48;
}

.course-access-card.is-active {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.course-access-card.webinar {
  background: #fa633b;
}

.course-access-card.quiz {
  background: #001e6c;
}

.course-access-card span {
  grid-row: span 2;
  margin-top: 2px;
}

.course-access-card svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.course-access-card strong {
  font-family: "Manrope-Medium";
  font-size: 16px;
}

.course-access-card small {
  font-size: 12px;
  font-family: "Manrope-Regular";
}

.course-content {
  margin-top: 50px;
}

.course-quiz-panel {
  width: 100%;
  height: 100%;
  padding: 24px;
  background: #f4f4f6;
}

.course-quiz-card {
  height: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 25px 28px;
  border-radius: 16px;
  background: #f4f4f6;
}

.course-quiz-card.is-result {
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 48px 32px;
  text-align: center;
}

.course-quiz-card.is-result h3 {
  margin: 10px 0 8px;
  color: #001e6c;
  font-family: "Manrope-Medium";
  font-size: 24px;
  line-height: 1.25;
}

.course-quiz-card.is-result > p {
  max-width: 520px;
  margin: 0;
  color: #3c4665;
  font-size: 14px;
  line-height: 1.7;
  font-family: "Manrope-Regular";
}

.course-quiz-result-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dbe1ef;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 11px;
}

.course-quiz-result-summary {
  width: min(400px, 100%);
  display: grid;
  grid-template-columns: 92px 1px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  border-radius: 14px;
  background: linear-gradient(90deg, #fa633b, #001e6c);
  padding: 16px;
  color: #ffffff;
  text-align: left;
}

.course-quiz-result-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 56px;
}

.course-quiz-result-score span {
  display: block;
  font-family: "Manrope-Bold";
  font-size: 24px;
  line-height: 1;
}

.course-quiz-result-score span em {
  color: #8cff50;
  font-style: normal;
}

.course-quiz-result-score small {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  line-height: 1;
}

.course-quiz-result-rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 9px;
}

.course-quiz-result-rating small {
  color: #ffffff;
  font-size: 10px;
  line-height: 1.2;
  font-family: "Manrope-Bold";
}

.course-quiz-result-rating small strong {
  color: #8cff50;
  font-family: "Manrope-Bold";
}

.course-quiz-result-divider {
  width: 1px;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.34);
}

.course-quiz-result-progress {
  position: relative;
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff;
}

.course-quiz-result-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #8cff50;
}

.course-quiz-question {
  margin: 0 0 22px;
  color: #001e6c;
}

.course-quiz-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(0, 30, 108, 0.08);
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 12px;
}

.course-quiz-question h3 {
  margin: 0;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 20px;
  line-height: 1.45;
}

.course-quiz-question small {
  display: block;
  margin-top: 8px;
  color: #001e6c;
  font-family: "Manrope-SemiBold";
  font-size: 1.25rem;
}

.course-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.course-quiz-options label {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(0, 30, 108, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: #001e6c;
  font-size: 15px;
  line-height: 1.55;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.course-quiz-options label:hover {
  border-color: rgba(250, 99, 59, 0.65);
  box-shadow: 0 10px 22px rgba(0, 30, 108, 0.08);
  transform: translateY(-1px);
}

.course-quiz-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.course-quiz-options label:has(input:checked) {
  border-color: #fa633b;
  background: #fff7f4;
  box-shadow: 0 12px 24px rgba(250, 99, 59, 0.13);
}

.course-quiz-choice-key {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef2fb;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 13px;
}

.course-quiz-options label:has(input:checked) .course-quiz-choice-key {
  background: #fa633b;
  color: #ffffff;
}

.course-quiz-choice-text {
  min-width: 0;
  color: #001e6c;
  overflow-wrap: anywhere;
  font-family: "Manrope-Regular";
}

.course-quiz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.course-quiz-pages {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 360px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 30, 108, 0.08);
}

.course-quiz-pages__status {
  flex: 1 0 100%;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 12px;
  line-height: 1;
}

.course-quiz-pages__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.course-quiz-pages button {
  width: 10px;
  min-width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #cdd5e6;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 12px;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.course-quiz-pages button.active {
  width: 28px;
  background: #001e6c;
  border-color: #001e6c;
  color: #ffffff;
  box-shadow: 0 7px 14px rgba(0, 30, 108, 0.2);
}

.course-quiz-pages button:not(:disabled):hover {
  border-color: rgba(0, 30, 108, 0.35);
  background: #fa633b;
}

.course-quiz-pages button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.course-quiz-pages .course-quiz-pages__arrow {
  width: 28px;
  height: 28px;
  background: #001e6c;
  border-color: #001e6c;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.course-quiz-pages .course-quiz-pages__arrow:disabled {
  background: #cfd5dd;
  border-color: #cfd5dd;
  color: #ffffff;
  opacity: 1;
}

.course-quiz-pages__ellipsis {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #ffffff;
  color: #5d6680;
  font-family: "Manrope-Bold";
  font-size: 13px;
}

.course-quiz-submit {
  min-width: 150px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 7px;
  background: linear-gradient(90deg, #fa633b, #001e6c);
  color: #ffffff;
  font-family: "Manrope-SemiBold";
  font-size: 11px;
}

.course-quiz-submit svg,
.course-quiz-complete svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-quiz-complete {
  max-width: 310px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0 auto;
  padding: 10px;
  border-radius: 8px;
  background: #001e6c;
  color: #ffffff;
}

.course-quiz-complete div {
  min-width: 56px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fa633b;
  text-align: center;
}

.course-quiz-complete span,
.course-quiz-complete small {
  display: block;
  line-height: 1.1;
}

.course-quiz-complete span {
  font-family: "Manrope-Bold";
  font-size: 13px;
}

.course-quiz-complete small {
  font-size: 8px;
}

.course-quiz-complete p {
  flex: 1;
  margin: 0;
}

.course-quiz-complete p strong {
  display: block;
  font-family: "Manrope-Bold";
  font-size: 13px;
  line-height: 1.2;
}

.course-quiz-complete p small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.course-quiz-total {
  margin: 32px 0 0;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 15px;
}

.course-content h2 {
  margin-bottom: 24px;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 24px;
}

.course-description-label {
  margin-bottom: 8px;
  color: #fa633b;
  font-family: "Manrope-SemiBold";
  font-size: 15px;
}

.course-description {
  max-width: 1240px;
  color: #7887b0;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Manrope-Regular";
}

.course-divider {
  height: 1px;
  margin: 42px 0;
  background: #b7bfd3;
}

.course-content h3 {
  margin-bottom: 22px;
  color: #111111;
  font-family: "Manrope-SemiBold";
  font-size: 18px;
}

.course-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-faq-state {
  margin: 0;
  padding: 22px 24px;
  border-radius: 12px;
  background: #f2f2f4;
  color: #001e6c;
  font-family: "Manrope-Bold";
  font-size: 15px;
}

.course-faq-state.is-error {
  color: #b42318;
}

.course-faq details {
  border-radius: 12px;
  background: #f2f2f4;
  color: #171717;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
  overflow: hidden;
}

.course-faq details.is-open {
  background: #002a9f;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 42, 159, 0.16);
}

.course-faq summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 58px 0 36px;
  font-family: "Manrope-Medium" !important;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}

.course-faq summary::-webkit-details-marker {
  display: none;
}

.course-faq summary::after {
  content: "+";
  position: absolute;
  right: 34px;
  color: currentColor;
  font-family: "Manrope-Bold";
  font-size: 22px;
  transition: transform 0.28s ease;
}

.course-faq details.is-open summary::after {
  content: "-";
  transform: rotate(180deg);
}

.course-faq p {
  max-height: 0;
  margin: 0 36px;
  overflow: hidden;
  color: #536179;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0;
  transition:
    max-height 0.32s ease,
    opacity 0.24s ease,
    margin 0.32s ease,
    color 0.28s ease;
}

.course-faq details.is-open p {
  margin: -10px 36px 28px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Manrope-Regular";
}

.course-faq-answer {
  will-change: max-height, opacity;
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 46px;
}

.course-action {
  min-width: 260px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Manrope-Medium";
  font-size: 18px;
  box-shadow: -0.4rem -0.5rem 0rem #001e6c;
}

.course-action.case-study{
  box-shadow: -0.4rem -0.5rem 0rem #fa633b;

}

.course-action:hover {
  color: #ffffff;
}

.course-action.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.course-action.material {
  background: #fa633b;
  font-family: "Manrope-Medium";
}

.course-action.case-study {
  background: #001e6c;
  font-family: "Manrope-Medium";
}

.course-action span,
.course-action i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
}

.course-action span svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.course-action i {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.course-action i svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-footer {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .course-main {
    padding-top: 1rem;
  }

  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .course-contains {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .course-title-row h1,
  .course-content h2 {
    font-size: 20px;
  }

  .course-title-row {
    flex-direction: column;
  }

  .course-certificate-button {
    width: 100%;
    min-width: 0;
  }

  .course-video {
    border-radius: 16px;
  }

  .course-video__play {
    width: 82px;
    height: 82px;
  }

  .course-video__play svg {
    width: 38px;
    height: 38px;
  }

  .course-progress {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 16px 18px;
  }

  .course-progress__track {
    width: 100%;
    flex: 0 0 12px;
  }

  .course-faq summary {
    min-height: 58px;
    padding-left: 18px;
    font-size: 14px;
  }

  .course-faq p {
    margin-right: 18px;
    margin-left: 18px;
  }

  .course-quiz-card {
    padding: 20px 18px;
  }

  .course-quiz-question h3 {
    font-size: 15px;
  }

  .course-quiz-options label {
    grid-template-columns: 34px 1fr;
    min-height: 50px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .course-quiz-choice-key {
    width: 30px;
    height: 30px;
  }

  .course-quiz-pages {
    width: 100%;
    max-width: none;
  }

  .course-quiz-card.is-result {
    min-height: auto !important;
    padding: 36px 18px;
  }

  .course-quiz-card.is-result h3 {
    font-size: 20px;
  }

  .course-quiz-result-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .course-quiz-result-divider {
    display: none;
  }

  .course-quiz-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-quiz-submit,
  .course-quiz-complete {
    width: 100%;
  }

  .course-action {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
}

.consent-block p {
  font-family: "Manrope-Regular";
}

.consent-block h4 {
  font-family: "Manrope-SemiBold";
}

.signature-grid p {
  font-family: "Manrope-SemiBold";
}

.row.align-items-center.mb-5 {
  margin-bottom: 6rem !important;
}

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

  .trusted-section {
    padding: 2rem 20px 2rem;
  }

  .hero-content {
    text-align: center;
    padding-left: 0rem;
  }

  .navbar .btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  .logo-item {
    min-width: 150px;
  }

  .logo-item img {
    filter: grayscale(0%); /* remove grayscale */
    opacity: 1; /* full visibility */
    max-width: 112px;
    max-height: 52px;
  }

  .logo-slider-wrapper::before,
  .logo-slider-wrapper::after {
    width: 50px; /* reduce fade area */
  }
}

.course-certificate-button img {
  width: 1rem;
}

.trusted-section h4 {
  font-size: 1.75rem;
}

@media (max-width: 767px) {
  /* Your mobile styles */
  .trusted-section h4 {
    font-size: 1.25rem !important;
  }

  .row.align-items-center.mb-5 {
    margin-bottom: 1rem !important;
  }

  .section3-footer {
    margin-top: 2rem !important;
  }

  .section4-desc {
    font-size: 16px !important;
  }

  .section-8 .container {
    padding: 3rem 0 !important;
  }

  .explore-btn-wrap {
    margin-top: 2rem !important;
  }

  .footer-tagline {
    text-align: left !important;
  }
  /* 
  .site-footer{
    padding: 1rem 0.5rem !important;
  } */

  .explore-outline-btn {
    font-size: 7px !important;
    letter-spacing: 0.5px !important;
    padding: 2px 9px !important;
    top: 69% !important;
  }

  .course-contains {
    padding: 26px 8px !important;
  }

  .course-main {
    padding-bottom: 1rem !important;
  }

  .course-quiz-card {
    padding: 0 !important;
  }

  .course-divider {
    padding: 1.5rem 0rem !important;
  }

  .consent-hero__content {
    padding-bottom: 0rem !important;
  }

  .consent-form h2 {
    font-size: 16px !important;
  }

  .consent-hero__content {
    margin-top: 3rem !important;
  }

  .ask-hero__content {
    margin-top: 3rem !important;
  }

  .ask-benefits {
    padding: 1.5rem 0 !important;
  }

  .ask-workspace {
    padding: 56px 12px 56px !important;
  }

  .ask-question-card {
    padding: 24px 14px 22px !important;
  }

  .ask-track-card {
    margin-top: 3rem !important;
  }
  .ask-track-card {
    padding: 24px 12px 22px;
  }

  .ask-track-list article {
    padding: 0.75rem 14px !important;
  }
  .ask-faq-section {
    padding: 2rem 20px 170px;
  }

  .ask-faq-section {
    padding: 2rem 10px 170px !important;
  }

  .article-footer__logo {
    width: 100px;
    height: 100px;
  }

  .article-search {
    max-width: 90%;
  }
}

.course_ul li a {
  color: #001e6c !important;
}

.navbar_course {
  background-color: white !important;
}

.login-field span {
  font-family: "Manrope-Medium";
}

.loginUsername {
  font-family: "Manrope-Regular";
}

.show-password span {
  font-family: "Manrope-Medium";
}

.minutes,
.monthName {
  font-family: "Manrope-Medium";
}
