/*
Theme Name: Digitally Code New Theme
Theme URI: http://digitallycode.com/
Author: HKM
Author URI: http://digitallycode.com/
Description: A custom WordPress theme based on the new Digitally Code.
Version: 1.0.0
Text Domain: digitallycode-new-theme
*/

@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --red: #0936a3;
  --red-dark: #0936a3;
  --black: #1a1a1a;
  --cream: #e0e8f9;
  --gray: #6b6b6b;
  --gray-light: #f4f4f4;
  --border: #e8e8e8;
  --green: #1aa260;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--black);
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.icon-svg {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 6px; /* spacing between icon and text */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-dark);
}
.btn-outline {
  background: #fff;
  color: var(--black);
  border: 1.5px solid #ddd;
}
.btn-outline:hover {
  border-color: var(--black);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--red);
  font-size: 12.5px;
  font-weight: 600;
  /* padding: 6px 14px; */
  border-radius: 20px;
  /* margin-bottom: 10px; */
}
.eyebrow::before {
  content: "●";
  font-size: 8px;
}

/* ===== Topbar & Navbar (Reference Site Parity) ===== */

body {
  padding-top: 116px;
}

@media (max-width: 850px) {
  body {
    padding-top: 102px;
  }
}

/* ===== Top announcement bar ===== */
.topbar {
  box-sizing: border-box;
  z-index: 1001;
  background: #0936a3;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  font-family: "Host Grotesk", sans-serif;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

@media (max-width: 600px) {
  .topbar {
    justify-content: space-between;
    min-height: 38px;
    padding: 0 10px 0 0;
  }
}

.topbar-text {
  color: #fff;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
  font-size: 14px;
  display: flex;
}

.topbar-text:before {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 6px;
  min-width: 6px;
  height: 6px;
}

.topbar-desktop {
  justify-content: center;
  display: flex;
}

.topbar-mobile {
  display: none;
}

@media (max-width: 600px) {
  .topbar-desktop {
    display: none;
  }
  .topbar-mobile {
    display: flex;
    overflow: hidden;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .topbar-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .topbar-text {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .topbar-text {
    font-size: 10px;
  }
}

.topbar-track {
  will-change: transform;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: 12s linear infinite scrollText;
  display: flex;
}

@media (max-width: 480px) {
  .topbar-track {
    gap: 24px;
    animation-duration: 10s;
  }
}

.topbar-btn {
  color: #0936a3;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: none;
  border-radius: 999px;
  flex-shrink: 0;
  padding: 6px 16px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s;
}

.topbar-btn:hover {
  /* background: #e0e8f9; */
}

@media (max-width: 600px) {
  .topbar-btn {
    margin-left: 8px;
    padding: 5px 10px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .topbar-btn {
    padding: 4px 8px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .topbar-btn {
    padding: 4px 7px;
    font-size: 10px;
  }
}

/* ===== Navbar ===== */
.navbar {
  z-index: 1000;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #89898975;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 0 5%;
  font-family: "Host Grotesk", sans-serif;
  display: flex;
  position: fixed;
  top: 42px;
  left: 0;
  outline: none !important;
}

@media (max-width: 1024px) and (min-width: 851px) {
  .navbar {
    padding: 0 24px;
  }
}

@media (max-width: 850px) {
  .navbar {
    min-height: 64px;
    padding: 0 20px;
    top: 38px;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 60px;
    padding: 0 16px;
  }
}

@media (max-width: 390px) {
  .navbar {
    min-height: 58px;
    padding: 0 14px;
  }
}

@media (max-width: 360px) {
  .navbar {
    min-height: 56px;
    padding: 0 12px;
  }
}

@media (max-width: 320px) {
  .navbar {
    min-height: 54px;
    padding: 0 10px;
  }
}

@media (max-width: 260px) {
  .navbar {
    min-height: 52px;
    padding: 0 8px;
  }
}

.nav-left img {
  backface-visibility: hidden;
  background: 0 0;
  width: 150px;
  height: auto;
  display: block;
  transform: translateZ(0);
}

@media (max-width: 1024px) and (min-width: 851px) {
  .nav-left img {
    width: 130px;
  }
}

@media (max-width: 480px) {
  .nav-left img {
    width: 120px;
  }
}

@media (max-width: 390px) {
  .nav-left img {
    width: 110px;
  }
}

@media (max-width: 360px) {
  .nav-left img {
    width: 100px;
  }
}

@media (max-width: 320px) {
  .nav-left img {
    width: 90px;
  }
}

@media (max-width: 260px) {
  .nav-left img {
    width: 75px;
  }
}

.nav-menu {
  align-items: center;
  gap: 40px;
  list-style: none;
  display: flex;
  position: absolute;
  left: 54%;
  transform: translate(-50%);
}

.nav-menu li a .nav-icon {
  /* display: none; */
}

.nav-menu li a {
  cursor: pointer;
  white-space: nowrap;
  color: #0000008d;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  outline: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu li a:hover {
  color: #0936a3;
}

.nav-menu-footer {
  opacity: 0;
  border-top: 0.5px solid #89898933;
  margin-top: 6px;
  padding-top: 12px;
  transition:
    opacity 0.3s,
    transform 0.3s;
  transform: translate(-10px);
}

.nav-menu.active .nav-menu-footer {
  opacity: 1;
  transition-delay: 0.26s;
  transform: translate(0);
}

@media (min-width: 1200px) {
  .nav-menu {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    gap: 18px;
  }
  .nav-menu li a {
    font-size: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 851px) {
  .nav-menu {
    gap: 18px;
    left: 50%;
  }
  .nav-menu li a {
    font-size: 14px;
  }
}

@media (max-width: 850px) {
  .nav-menu li a .nav-icon {
    opacity: 0.7;
    flex-shrink: 0;
    transition: opacity 0.2s;
    display: inline-block;
  }
  .nav-menu li a:hover .nav-icon {
    opacity: 1;
  }
  .nav-menu {
    opacity: 0;
    z-index: 999;
    background: #fff;
    border: 10px solid #89898933;
    border-top: none;
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-height: 0;
    margin-top: 1px;
    padding: 10px 16px 16px;
    transition:
      max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.35s,
      transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      padding 0.42s;
    position: absolute;
    top: 100%;
    overflow: hidden;
    box-shadow: 0 16px 32px #00000014;
    left: 0 !important;
    transform: translateY(-12px) !important;
  }
  .nav-menu.active {
    opacity: 1;
    max-height: 500px;
    padding: 10px 16px 16px;
    transform: translateY(0) !important;
  }
  .nav-menu li {
    opacity: 0;
    width: 100%;
    transition:
      opacity 0.3s,
      transform 0.3s;
    transform: translate(-10px);
  }
  .nav-menu.active li:first-child {
    opacity: 1;
    transition-delay: 60ms;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(2) {
    opacity: 1;
    transition-delay: 0.1s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(3) {
    opacity: 1;
    transition-delay: 0.14s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(4) {
    opacity: 1;
    transition-delay: 0.18s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(5) {
    opacity: 1;
    transition-delay: 0.22s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(6) {
    opacity: 1;
    transition-delay: 0.26s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(7) {
    opacity: 1;
    transition-delay: 0.3s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(8) {
    opacity: 1;
    transition-delay: 0.34s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(9) {
    opacity: 1;
    transition-delay: 0.38s;
    transform: translate(0);
  }
  .nav-menu.active li:nth-child(10) {
    opacity: 1;
    transition-delay: 0.42s;
    transform: translate(0);
  }
  .nav-menu li a {
    color: #333;
    white-space: nowrap;
    border-left: 3px solid #0000;
    border-radius: 10px;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s;
    display: flex;
  }
  .nav-menu li a:hover {
    color: #0936a3;
    background: var(--cream);
    border-left-color: #0936a3;
    padding-left: 18px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    border-radius: 0 0 16px 16px;
    padding: 0 10px;
  }
  .nav-menu.active {
    padding: 8px 10px 14px;
  }
  .nav-menu li a {
    gap: 10px;
    padding: 11px 12px;
    font-size: 14px;
  }
  .nav-menu li a:hover {
    padding-left: 16px;
  }
}

@media (max-width: 390px) {
  .nav-menu li a {
    gap: 9px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .nav-menu li a:hover {
    padding-left: 15px;
  }
}

@media (max-width: 360px) {
  .nav-menu {
    border-radius: 0 0 14px 14px;
  }
  .nav-menu li a {
    gap: 8px;
    padding: 10px;
    font-size: 13px;
  }
  .nav-menu li a:hover {
    padding-left: 14px;
  }
}

@media (max-width: 320px) {
  .nav-menu li a {
    gap: 7px;
    padding: 9px 10px;
    font-size: 12px;
  }
}

@media (max-width: 260px) {
  .nav-menu {
    border-radius: 0 0 12px 12px;
  }
  .nav-menu.active {
    padding: 6px 8px 12px;
  }
  .nav-menu li a {
    border-radius: 8px;
    gap: 6px;
    padding: 8px;
    font-size: 11px;
  }
  .nav-menu li a:hover {
    padding-left: 12px;
  }
}

.nav-right button {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #0936a3;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-right button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .nav-right button {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 850px) {
  .nav-right {
    display: none;
  }
}

.consult-btn {
  color: #fff;
  cursor: pointer;
  z-index: 1;
  background: #0936a3;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}

.consult-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.consult-btn:after {
  content: "";
  z-index: 1;
  border-radius: 8px;
  animation: 2.8s infinite redPulse;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 #0936a399;
}

@media (max-width: 1024px) and (min-width: 851px) {
  .consult-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.consult-btn-mobile {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 13px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition:
    filter 0.2s,
    transform 0.2s;
}

.consult-btn-mobile:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .consult-btn-mobile {
    padding: 12px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .consult-btn-mobile {
    border-radius: 9px;
    padding: 11px;
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .consult-btn-mobile {
    padding: 10px;
    font-size: 12px;
  }
}

@media (max-width: 260px) {
  .consult-btn-mobile {
    border-radius: 8px;
    padding: 9px;
    font-size: 11px;
  }
}

.hamburger {
  cursor: pointer;
  background: 0 0;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  display: none;
}

.hamburger span {
  transform-origin: 50%;
  background: #000;
  border-radius: 2px;
  width: 25px;
  height: 3px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }
  .hamburger.open span:first-child {
    transform: rotate(45deg) translate(5.5px, 5.5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
  }
}

@media (max-width: 390px) {
  .hamburger span {
    width: 22px;
  }
}

@media (max-width: 360px) {
  .hamburger span {
    width: 21px;
    height: 2.5px;
  }
}

@media (max-width: 320px) {
  .hamburger span {
    width: 20px;
  }
}

@media (max-width: 260px) {
  .hamburger span {
    width: 18px;
    height: 2px;
  }
  .hamburger {
    gap: 4px;
  }
}

/* Animations */
@keyframes scrollText {
  0% {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes redPulse {
  0% {
    box-shadow: 0 0 #0936a380;
  }
  70% {
    box-shadow: 0 0 0 14px #0936a300;
  }
  to {
    box-shadow: 0 0 #0936a300;
  }
}

/* ===== Hero ===== */
.hero {
  background: var(--cream);
  padding: 50px 0 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--black);
}
.hero h1 .accent {
  color: var(--red);
  display: block;
}
.hero p.lead {
  margin: 18px 0 26px;
  color: var(--gray);
  font-size: 15.5px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.hero-stats div b {
  display: block;
  font-size: 26px;
  font-weight: 800;
}
.hero-stats div span {
  font-size: 13px;
  color: var(--gray);
}

.hero-media {
  position: relative;
}
.hero-media .photo-frame {
  background: linear-gradient(135deg, #2b2b2b, #000);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/0.78;
  position: relative;
}
.hero-media .photo-frame::after {
  display: none;
}
/* .float-card {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 12.5px;
} */
.float-card {
  z-index: 2;
  will-change: transform;
  background: #fff !important;
  border-radius: 10px;
  padding: 10px 14px !important;
  font-size: 12px;
  line-height: 1.5;
  transition: all 0.3s;
  position: absolute;
  box-shadow: 0 6px 20px #0000001a;
}
.float-card b {
  display: block;
  font-size: 14px;
}
.float-card.reviews {
  top: -18px;
  left: -16px;
}
.float-card.reviews b {
  color: var(--red);
}
.float-card.campus {
  bottom: 90px;
  right: -16px;
}
.float-card.curriculum {
  bottom: -18px;
  left: 30%;
  width: 220px;
}
.float-card .tag-mini {
  display: inline-block;
  background: var(--cream);
  color: var(--red);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-bottom: 5px;
}

/* ===== Partners ===== */
.partners {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}
.partners h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 34px;
}
.partners h2 .accent {
  color: var(--red);
}

.partner-slider {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
  position: relative;
  padding: 10px 0;
  /* Fading gradient effect on the left and right edges */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.partner-row {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
  flex-wrap: nowrap !important;
  padding-right: 24px; /* Ensure uniform gap between tracks */
  animation: scroll-partners 25s linear infinite;
}

@keyframes scroll-partners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.partner-logo {
  flex: 0 0 180px;
  height: 72px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  border-color: #ddd;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.partner-logo img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo:hover img {
  transform: scale(1.05);
}

/* Pause animation on hover */
.partner-slider:hover .partner-row {
  animation-play-state: paused;
}

/* ===== Meet section ===== */
.meet {
  padding: 50px 0 70px;
}
.meet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.meet h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  margin: 10px 0 18px;
}
.meet h2 .accent {
  color: var(--red);
}
.meet p.desc {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 18px;
}
.meet ul.feature-list {
  margin-bottom: 26px;
}
.meet ul.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14.5px;
}
.meet ul.feature-list li::before {
  content: "•";
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: 800;
}
.meet-cta {
  display: flex;
  gap: 14px;
}

.meet-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.meet-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.meet-campus-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.video-card {
  background: #0e0a2e;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.video-thumb {
  background: linear-gradient(160deg, #3a1d6e, #120833);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  position: relative;
}
.video-thumb h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}
.video-thumb h3 .hl {
  color: var(--red);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.35);
}
.play-btn::after {
  content: "▶";
  color: #fff;
  font-size: 16px;
  margin-left: 3px;
}
.video-float {
  position: absolute;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.video-float.top-right {
  top: 14px;
  right: 14px;
  text-align: center;
}
.video-float.bottom-left {
  bottom: -16px;
  left: 18px;
}
.video-meta {
  padding: 18px 24px;
}
.video-meta h4 {
  font-size: 16px;
  font-weight: 700;
}
.video-meta .sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #bbb;
  margin-top: 4px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}
.video-stats {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.video-stats div {
  text-align: center;
}
.video-stats b {
  display: block;
  font-size: 18px;
  font-weight: 800;
}
.video-stats span {
  font-size: 11.5px;
  color: #bbb;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--cream);
  padding: 55px 0;
}
.testimonials .container {
  max-width: 1550px !important;
  width: 95% !important;
}
.gr-bar {
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.gr-bar .stars {
  color: #f5a623;
}
.gr-bar .score {
  font-size: 20px;
  font-weight: 800;
}
.gr-bar small {
  color: var(--gray);
  font-size: 12px;
}
.gr-bar .verified {
  margin-left: auto;
  background: #e8f8ef;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 14px;
}
.test-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 18px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 10px 0; /* Prevents box-shadow clippings */
}
.test-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.test-card {
  flex: 0 0 calc((100% - 2 * 18px) / 3); /* 3 cards visible by default on desktop */
  scroll-snap-align: start;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(9, 54, 163, 0.08);
  box-shadow: 0 10px 30px rgba(9, 54, 163, 0.04);
  position: relative;
  color: var(--black);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}
.test-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(9, 54, 163, 0.08);
  border-color: rgba(9, 54, 163, 0.15);
}
.test-card .quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(9, 54, 163, 0.08);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.test-card:hover .quote-icon {
  color: rgba(9, 54, 163, 0.16);
  transform: scale(1.1);
}
.test-card .stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 14px;
}
.test-card .review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
  flex-grow: 1;
}
.test-card .student-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(9, 54, 163, 0.08);
  padding-top: 16px;
  margin-top: auto;
}
.test-card .student-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
  background: var(--cream);
}
.test-card .student-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.test-card .student-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.test-card .student-course {
  font-size: 11.5px;
  color: var(--red);
  font-weight: 600;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}
.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease,
    transform 0.2s ease;
}
.dots span:hover {
  transform: scale(1.25);
}
.dots span.active {
  background: var(--red);
  width: 20px;
  border-radius: 4px;
}
.view-more {
  text-align: right;
  margin-top: 14px;
}
.view-more a {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

/* Trustindex Google Reviews Overrides */
.trustindex-wrapper {
  display: block;
  width: 100%;
}
pre.ti-widget {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  white-space: normal !important;
  font-family: inherit !important;
  width: 100% !important;
  max-width: 100% !important;
}
.ti-widget.ti-goog {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  overflow: visible !important;
}
.ti-widget.ti-goog,
.ti-widget.ti-goog * {
  font-family: "Outfit", sans-serif !important;
  box-sizing: border-box;
}
.ti-widget.ti-goog .ti-widget-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.ti-widget.ti-goog .ti-header {
  display: none !important;
}
.ti-widget.ti-goog .ti-reviews-container-wrapper {
  margin: 0 45px !important;
  width: auto !important;
  padding: 15px 0 !important;
  overflow: hidden !important;
  align-items: stretch !important;
}

/* Responsive Grid / Column Widths for Slider Cards */
.ti-widget.ti-goog .ti-review-item {
  padding: 0 10px !important;
  width: 33.333% !important;
  max-width: 33.333% !important;
  flex: 0 0 33.333% !important;
  display: flex !important;
  flex-direction: column !important;
}
@media (min-width: 1200px) {
  .ti-widget.ti-goog .ti-review-item {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
}
@media (max-width: 991px) {
  .ti-widget.ti-goog .ti-review-item {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
}
@media (max-width: 576px) {
  .ti-widget.ti-goog .ti-review-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

.ti-widget.ti-goog .ti-review-item .ti-inner {
  border-radius: 16px !important;
  background: #ffffff !important;
  border: 1px solid rgba(9, 54, 163, 0.08) !important;
  box-shadow: 0 10px 30px rgba(9, 54, 163, 0.04) !important;
  padding: 30px 24px !important;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 100% !important;
}
.ti-widget.ti-goog .ti-review-item:hover .ti-inner {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(9, 54, 163, 0.08) !important;
  border-color: rgba(9, 54, 163, 0.15) !important;
}
.ti-widget.ti-goog .ti-review-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  order: 3 !important; /* Move profile to bottom */
  margin-bottom: 0 !important;
  margin-top: 16px !important;
  border-bottom: none !important;
  border-top: 1px solid rgba(9, 54, 163, 0.08) !important;
  padding-top: 16px !important;
  padding-bottom: 0 !important;
}
.ti-widget.ti-goog .ti-profile-img {
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
}
.ti-widget.ti-goog .ti-profile-img img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid var(--cream) !important;
}
.ti-widget.ti-goog .ti-profile-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.ti-widget.ti-goog .ti-profile-details .ti-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  line-height: 1.2 !important;
}
.ti-widget.ti-goog .ti-profile-details .ti-date {
  font-size: 11.5px !important;
  color: var(--gray) !important;
  font-weight: 500 !important;
}
.ti-widget.ti-goog .ti-stars {
  order: 1 !important; /* Move stars to top */
  margin-bottom: 14px !important;
  display: flex !important;
  gap: 3px !important;
}
.ti-widget.ti-goog .ti-stars .ti-star {
  color: #f5a623 !important;
}
.ti-widget.ti-goog .ti-review-content {
  order: 2 !important; /* Text in middle */
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #4a4a4a !important;
  margin-bottom: 20px !important;
  flex-grow: 1 !important;
}
.ti-widget.ti-goog .ti-read-more {
  order: 2 !important;
  color: var(--red) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  display: inline-block !important;
  text-decoration: none !important;
}
.ti-widget.ti-goog .ti-read-more:hover {
  text-decoration: underline !important;
}

/* Arrows Positioned Elegantly Outside Wrapper */
.ti-widget.ti-goog .ti-controls {
  display: block !important;
  width: 100% !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 0 !important;
  margin: 0 !important;
  z-index: 10 !important;
}
.ti-widget.ti-goog .ti-controls .ti-prev {
  left: 0 !important;
  background-color: #ffffff !important;
  border: 1px solid rgba(9, 54, 163, 0.08) !important;
  box-shadow: 0 4px 12px rgba(9, 54, 163, 0.08) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  padding: 0 !important;
  transform: scale(1) !important;
}
.ti-widget.ti-goog .ti-controls .ti-next {
  right: 0 !important;
  background-color: #ffffff !important;
  border: 1px solid rgba(9, 54, 163, 0.08) !important;
  box-shadow: 0 4px 12px rgba(9, 54, 163, 0.08) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  padding: 0 !important;
  transform: scale(1) !important;
}
.ti-widget.ti-goog .ti-controls .ti-prev:hover,
.ti-widget.ti-goog .ti-controls .ti-next:hover {
  background-color: var(--red) !important;
  border-color: var(--red) !important;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2) !important;
  transform: scale(1.1) !important;
}
.ti-widget.ti-goog .ti-controls .ti-prev:before {
  top: 21px !important;
  left: 14px !important;
  background: #4a4a4a !important;
  width: 12px !important;
  height: 2.5px !important;
}
.ti-widget.ti-goog .ti-controls .ti-prev:after {
  top: 13px !important;
  left: 14px !important;
  background: #4a4a4a !important;
  width: 12px !important;
  height: 2.5px !important;
}
.ti-widget.ti-goog .ti-controls .ti-next:before {
  top: 13px !important;
  right: 14px !important;
  background: #4a4a4a !important;
  width: 12px !important;
  height: 2.5px !important;
}
.ti-widget.ti-goog .ti-controls .ti-next:after {
  top: 21px !important;
  right: 14px !important;
  background: #4a4a4a !important;
  width: 12px !important;
  height: 2.5px !important;
}
.ti-widget.ti-goog .ti-controls .ti-prev:hover:before,
.ti-widget.ti-goog .ti-controls .ti-prev:hover:after,
.ti-widget.ti-goog .ti-controls .ti-next:hover:before,
.ti-widget.ti-goog .ti-controls .ti-next:hover:after {
  background: #ffffff !important;
}

.ti-widget.ti-goog .ti-controls-line {
  margin-top: 24px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 7px !important;
  border: none !important;
  background: transparent !important;
  height: auto !important;
}
.ti-widget.ti-goog .ti-controls-line .dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #ddd !important;
  cursor: pointer !important;
  transition:
    background 0.3s ease,
    width 0.3s ease,
    transform 0.2s ease !important;
  border: none !important;
  margin: 0 !important;
  display: inline-block !important;
  float: none !important;
}
.ti-widget.ti-goog .ti-controls-line .dot.active {
  background: var(--red) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

/* ===== Courses ===== */
.courses {
  padding: 60px 0;
}
.courses-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
}
.courses-head h2 {
  font-size: 30px;
  font-weight: 800;
}
.courses-head h2 .accent {
  color: var(--red);
}
.courses-head p {
  color: var(--gray);
  font-size: 14.5px;
  max-width: 560px;
  margin-top: 10px;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.course-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #dfe8ff, #c9d8ff);
  position: relative;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.course-img .cat {
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  align-self: flex-start;
}
.course-img .ai-tag {
  align-self: flex-end;
  background: #1a1a2e;
  color: #fff;
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 8px;
}
.course-img .trend {
  background: var(--red);
  color: #fff;
}
.course-body {
  padding: 20px;
}
.course-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.course-body p {
  color: var(--gray);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.course-rating {
  color: #f5a623;
  font-size: 13px;
  margin-bottom: 14px;
}
.course-rating span {
  color: var(--gray);
  font-size: 12.5px;
}
.course-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 14px;
}
.course-meta div {
  font-size: 11.5px;
  color: var(--gray);
  text-align: left;
}
.course-meta div b {
  display: block;
  font-size: 13.5px;
  color: var(--black);
  margin-top: 2px;
}
.course-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-foot .price {
  font-size: 13px;
  font-weight: 700;
}
.course-foot .price small {
  display: block;
  font-weight: 400;
  color: var(--gray);
  font-size: 11px;
}
.course-foot .btn {
  padding: 10px 18px;
  font-size: 13px;
}

/* ===== FAQ ===== */
.faq {
  padding: 60px 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.faq-cats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.faq-cats li:hover {
  background: var(--gray-light);
}
.faq-cats li.active {
  background: var(--cream);
  border-color: #f3c4c4;
  color: var(--red);
}
.faq-cats li.active:hover {
  background: var(--cream);
}
.faq-cats li span {
  background: var(--gray-light);
  border-radius: 8px;
  font-size: 11.5px;
  padding: 2px 8px;
  color: var(--gray);
}
.faq h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 22px;
}
.faq h2 .accent {
  color: var(--red);
}

/* Accordion layout */
.faq-accordion-item {
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.faq-accordion-item.active {
  border-color: #f3c4c4;
  box-shadow: 0 4px 12px rgba(223, 26, 68, 0.05);
}
.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.faq-question .arrow {
  font-size: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.faq-accordion-item.active .faq-question .arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
  padding: 0 20px;
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}
.faq-accordion-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
  padding-top: 10px;
}

/* ===== CTA ===== */
.cta {
  margin: 0 auto 60px;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 18px;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}
.cta h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}
.cta p {
  opacity: 0.9;
  margin-bottom: 26px;
  font-size: 14.5px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.cta .btn-outline {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.cta .btn-outline.alt {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
  .cta {
    margin: 20px;
    max-width: 1200px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 18px;
    text-align: center;
    padding: 30px;
    color: #fff;
  }
  .cta h2 {
    font-size: 24px;
  }
  .cta p {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ===== Footer ===== */

/* ===== Blog Events Section ===== */
.events-section {
  background: #fff;
  padding: 70px;
  font-family: "Host Grotesk", sans-serif;
}

.events-top {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.events-tag {
  color: #0936a3;
  background: var(--cream);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.events-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1s infinite blink;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.events-top h1 {
  margin: 10px 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
}

.events-desc {
  color: #555;
  margin-top: 6px;
  line-height: 1.7;
}

.events-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
}

.events-card {
  width: 100%;
  height: 100%;
  min-height: 429px;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.events-card:hover {
  transform: translateY(-5px);
}

.events-img {
  width: 100%;
  height: 217px;
  position: relative;
  overflow: hidden;
}

.events-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.events-read-time {
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 11px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #333;
}

.events-body {
  padding: 20px;
}

.events-category {
  color: #0936a3;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

.events-body h3 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.events-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.events-footer {
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  display: flex;
}

.events-footer span {
  color: #666;
}

.events-footer span:last-child {
  color: #0936a3;
  font-weight: 600;
}

.events-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #0936a3 0%, #0936a3 100%);
  border-radius: 24px;
  margin-top: 80px;
  padding: 60px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.events-cta h3 {
  color: #fff;
  margin-bottom: 12px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.events-cta p {
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.events-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0936a3;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  height: 48px;
  padding: 0 22px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}

.events-cta button:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
}

/* Media Queries for Events Section */
@media (max-width: 1024px) {
  .events-section {
    padding: 50px 30px;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-card {
    width: 100%;
    height: auto;
  }
  .events-top h1 {
    font-size: 38px;
  }
  .events-tag {
    margin-left: 0;
  }
  .events-desc {
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 50px 24px;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .events-top h1 {
    font-size: 40px;
  }
  .events-desc {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .events-section {
    padding: 40px 20px;
  }
  .events-top h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .events-section {
    padding: 30px 14px;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-card {
    width: 100%;
    height: auto;
  }
  .events-top {
    align-items: flex-start;
  }
  .events-tag {
    margin-left: 0;
  }
  .events-top h1 {
    margin-top: 6px;
    margin-left: 0;
    font-size: 24px;
  }
  .events-desc {
    margin-top: 6px;
    margin-left: 0;
    font-size: 13px;
  }
  .events-img {
    height: 180px;
  }
  .events-body h3 {
    font-size: 17px;
  }
  .events-body p {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .events-section {
    padding: 24px 10px;
  }
  .events-top h1 {
    font-size: 20px;
  }
  .events-img {
    height: 160px;
  }
  .events-body h3 {
    font-size: 15px;
  }
}

/* End of Blog Events Section */
/* ===== Site Footer ===== */
.site-footer {
  color: #fff;
  background: #000;
  font-family: "Host Grotesk", sans-serif;
}

.footer-container {
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
}

.footer-WhyChooseUs img {
  width: 174px;
  margin-bottom: -51px;
}

.footer-WhyChooseUs p {
  color: #ccc;
  margin-top: 80px;
  font-size: 14px;
  line-height: 1.6;
  margin-right: 28px;
}

.footer-links h3,
.footer-courses h3,
.footer-info h3 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.footer-links ul,
.footer-courses ul {
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-courses li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-courses a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.footer-links a:hover,
.footer-courses a:hover {
  color: #0936a3;
}

.footer-info p {
  color: #ccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-social {
  gap: 12px;
  margin-top: 10px;
  display: flex;
}

.footer-social a {
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s;
  display: flex;
}

.footer-social a img {
  object-fit: contain;
  width: 28px;
  height: 28px;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-bottom-bar {
  border-top: 1px solid #333;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  display: flex;
}

.footer-bottom-bar p {
  color: #aaa;
  font-size: 13px;
  margin: 0;
}

.footer-policy {
  gap: 20px;
  display: flex;
}

.footer-policy a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
}

.footer-policy a:hover {
  color: #0936a3;
}

.footer-item {
  color: #ddd;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
}

.footer-item img {
  object-fit: contain;
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 24px;
  }
  .footer-bottom-bar {
    text-align: center;
    flex-direction: column;
    gap: 10px;
    padding: 15px 24px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hero-inner,
  .meet-inner {
    grid-template-columns: 1fr;
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-card {
    flex: 0 0 calc((100% - 1 * 18px) / 2); /* 2 cards visible on tablet */
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
  .test-card {
    flex: 0 0 100%; /* 1 card visible on mobile */
  }
  .hero h1 {
    font-size: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .courses-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Added Styles for Premium Assets Integration ===== */
.hero-media .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-social img {
  transition: transform 0.2s ease;
}
.footer-social a:hover img {
  transform: scale(1.2);
}

/* ===== Sub-page Specific Styles ===== */
.page-banner {
  background: var(--cream);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-banner h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 14px;
}
.page-banner h1 .accent {
  color: var(--red);
}
.page-banner p {
  color: var(--gray);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Header Active Link Styling */
nav ul li a.active {
  color: var(--red);
  font-weight: 700;
}

/* Contact Page Styles */
.contact-page {
  font-family:
    Host Grotesk,
    sans-serif;
}
.contact-heroe {
  background: #fff;
  padding: 60px 0 0;
  font-family:
    Host Grotesk,
    sans-serif;
}
.contact-heroe .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 40px;
}
.breadcrumb {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}
.breadcrumb span {
  color: #0936a3;
}
.contact-tag {
  color: #0936a3;
  background: #e0e8f9;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}
.contact-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 1s infinite blink;
}
@keyframes blink {
  50% {
    opacity: 0.3;
  }
}
.hero-row {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}
.heroe-left h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
}
.hero-desc {
  color: #666;
  max-width: 600px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.hero-icons {
  flex-shrink: 0;
  gap: 10px;
  display: flex;
}
.hero-icons a {
  color: #fff;
  background: #0936a3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
}
.hero-icons a:hover {
  background: #275fdb;
  transform: translateY(-2px);
}
.contact-box {
  background: #e0e8f9;
  margin-top: 0;
  padding: 40px;
}
.contact-info {
  gap: 30px;
  max-width: 1200px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.info-card {
  background: #fff;
  border-radius: 12px;
  flex: 1;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  display: flex;
  box-shadow: 0 2px 8px #0000000d;
}
.info-icon {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  display: flex;
}
.info-icon img {
  object-fit: contain;
  width: 44px;
  height: 44px;
}
.info-text span {
  color: #888;
  margin-bottom: 2px;
  font-size: 12px;
  display: block;
}
.info-text strong {
  color: #111;
  white-space: normal;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.5;
  display: block;
}
.contact-main {
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.contact-form {
  flex-direction: column;
  flex: 1;
  gap: 12px;
  max-width: 380px;
  margin-top: 30px;
  display: flex;
}
.contact-form input,
.contact-form textarea {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 100%;
  padding: 14px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
}
.contact-form input {
  height: 48px;
}
.contact-form textarea {
  resize: none;
  height: 120px;
}
.contact-form button {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}
.contact-form button:hover {
  background: #275fdb;
}
.contact-map {
  flex: 2;
  margin-top: 30px;
}
.contact-map iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
  height: 440px;
}
.faq-section {
  background: #fff;
  padding: 80px 20px;
}
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-tag {
  color: #0936a3;
  background: #e0e8f9;
  border-radius: 20px;
  padding: 6px 16px 6px 22px;
  font-size: 13px;
  display: inline-block;
  position: relative;
}
.faq-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 1s infinite blink;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.faq-header h2 {
  margin-top: 12px;
  font-size: 42px;
  font-weight: 900;
}
.faq-header span {
  color: #0936a3;
}
.faq-list {
  width: 100%;
  max-width: 1030px;
  margin: 40px auto 0;
}
.faq-box {
  margin-bottom: 12px;
}
.faq-questions {
  cursor: pointer;
  background: #e0e8f9;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  padding: 12px 20px;
  transition: background 0.3s;
  display: flex;
}
.faq-questions:hover {
  background: #f9e3e3;
}
.faq-icon {
  color: #111;
  flex-shrink: 0;
  font-size: 14px;
}
.faq-questions p {
  text-align: left;
  color: #000;
  flex: 1;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.faq-arrow {
  flex-shrink: 0;
  font-size: 14px;
  transition: all 0.3s;
}
.faq-arrow.rotate {
  transform: rotate(180deg);
}
.faq-answer {
  background: #fff;
  border-radius: 12px;
  max-height: 0;
  margin-top: 6px;
  padding: 0 18px;
  transition: all 0.35s;
  overflow: hidden;
}
.faq-answer.show {
  max-height: 200px;
  padding: 15px 18px;
}
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #0936a3 0%, #0936a3 100%);
  border-radius: 20px;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 60px 20px;
}
.contact-cta h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
}
.contact-cta p {
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}
.contact-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0936a3;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
  padding: 14px 28px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.contact-cta button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px #00000026;
}
.custom-select {
  width: 100%;
  position: relative;
}
.select-box {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 14px;
  font-size: 15px;
  display: flex;
}
.select-dropdown {
  z-index: 99;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  width: 100%;
  max-height: 240px;
  position: absolute;
  top: 62px;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 8px 25px #00000014;
}
.select-option {
  cursor: pointer;
  padding: 12px 15px;
  transition: all 0.2s;
}
.select-option:hover {
  background: #f5f5f5;
}
@media (max-width: 1024px) {
  .contact-heroe .container {
    padding: 0 30px;
  }
  .heroe-left h1 {
    font-size: 38px;
  }
  .contact-box {
    padding: 30px;
  }
  .contact-map iframe {
    height: 380px;
  }
  .faq-header h2 {
    font-size: 36px;
  }
  .contact-cta h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .contact-heroe .container {
    padding: 0 20px;
  }
  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-lefte h1 {
    font-size: 30px;
  }
  .info-card {
    padding: 14px 16px;
  }
  .info-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
  }
  .info-icon img {
    border-radius: 12px;
    width: 52px;
    height: 52px;
  }
  .contact-box {
    padding: 20px;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  .contact-main {
    flex-direction: column;
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
  .contact-map {
    width: 100%;
  }
  .contact-map iframe {
    height: 300px;
  }
  .faq-header h2 {
    font-size: 28px;
  }
  .faq-questions p {
    font-size: 14px;
  }
  .contact-cta {
    border-radius: 16px;
    margin: 30px 16px;
    padding: 40px 20px;
  }
  .contact-cta h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .contact-heroe {
    padding: 60px;
  }
  .heroe-left h1 {
    font-size: 24px;
  }
  .hero-desc {
    font-size: 13px;
  }
  .info-card {
    padding: 12px 14px;
  }
  .info-icon {
    border-radius: 8px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
  .info-icon img {
    width: 42px;
    height: 42px;
  }
  .info-text span {
    font-size: 11px;
  }
  .info-text strong {
    white-space: normal;
    word-break: break-word;
    font-size: 13px;
    line-height: 1.4;
  }
  .contact-box {
    padding: 16px;
  }
  .faq-header h2 {
    font-size: 24px;
  }
  .faq-questions {
    padding: 0 10px;
  }
  .faq-questions p {
    font-size: 13px;
  }
  .contact-cta h2 {
    font-size: 20px;
  }
  .contact-cta button {
    width: 100%;
    padding: 12px 20px;
  }
  .contact-info {
    gap: 8px;
  }
}
@media (max-width: 360px) {
  .hero-lefte h1 {
    font-size: 20px;
  }
  .contact-cta h2 {
    font-size: 18px;
  }
  .faq-questions p {
    font-size: 12px;
  }
  .info-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }
  .info-icon img {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 1020px) and (min-width: 760px) {
  .contact-cta {
    box-sizing: border-box;
    border-radius: 18px;
    width: calc(100% - 40px);
    margin: 40px auto 50px;
    padding: 50px 28px;
    overflow: hidden;
  }
  .contact-cta h2 {
    text-align: center;
    font-size: 30px;
    line-height: 1.3;
  }
  .contact-cta p {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
  }
  .contact-cta button {
    min-width: 220px;
    height: 48px;
    margin-top: 20px;
    font-size: 14px;
  }
}

/* Why Choose Us & Verification Styles */
.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: -30px auto 50px;
  position: relative;
  z-index: 10;
}
.stat-card-premium {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.stat-card-premium b {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.stat-card-premium span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}
.why-features {
  padding: 60px 0;
}
.section-title-center {
  text-align: center;
  margin-bottom: 40px;
}
.section-title-center h2 {
  font-size: 32px;
  font-weight: 800;
}
.section-title-center p {
  color: var(--gray);
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 15px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.why-card .icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--cream);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Faculty Section */
.faculty-section {
  padding: 60px 0;
  background: var(--gray-light);
}
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.faculty-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.faculty-avatar {
  aspect-ratio: 1;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  color: var(--red);
  background: linear-gradient(135deg, var(--cream), #fca5a5);
}
.faculty-info {
  padding: 18px;
  text-align: center;
}
.faculty-info h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.faculty-info p {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.5;
}

/* Verification Card */
.verification-section {
  padding: 60px 0;
}
.verification-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px dashed var(--red);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(226, 59, 59, 0.05);
}
.verification-container h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.verification-container p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 24px;
}
.verification-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 24px;
}
.verification-form .form-control {
  flex: 1;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
}
.verification-form .btn {
  white-space: nowrap;
}
.verification-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.verification-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}
.verification-step .num {
  background: var(--red);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.verification-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 0;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.blog-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--cream), #fed7d7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--red);
  font-size: 20px;
}
.blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11.5px;
  font-weight: 700;
}
.blog-meta-tags .tag {
  background: var(--cream);
  color: var(--red);
  padding: 3px 8px;
  border-radius: 6px;
}
.blog-meta-tags .read-time {
  color: var(--gray);
}
.blog-body h3 {
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-body h3 a:hover {
  color: var(--red);
}
.blog-body p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-size: 12px;
  color: var(--gray);
}
.blog-footer .date {
  font-weight: 600;
}
.blog-footer .read-more {
  color: var(--red);
  font-weight: 700;
}
.blog-footer .read-more:hover {
  text-decoration: underline;
}

/* Responsiveness adjustments */
@media (max-width: 900px) {
  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .stats-grid-4 {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .faculty-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .verification-form {
    flex-direction: column;
  }
}

/* ===== Courses Page Styles (Migration Parity) ===== */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.careere {
  max-width: 1260px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family:
    Host Grotesk,
    sans-serif;
}
.careere-mini-title {
  color: #0936a3;
  margin-bottom: 15px;
  margin-left: 5px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.careere-top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  display: flex;
}
.careere-left {
  flex: 1;
  min-width: 0;
  max-width: 700px;
}
.careere-right {
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 39px;
  min-width: 0;
  margin-top: 50px;
  display: flex;
}
.careere-right img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  height: 240px;
  margin: 0;
  display: block;
}
.careere-buttons {
  gap: 30px;
  margin-top: 20px;
  display: flex;
}
.btne {
  cursor: pointer;
  border-radius: 12px;
  height: 54px;
  padding: 0 20px;
  font-family:
    Host Grotesk,
    sans-serif;
}
.primary {
  color: #fff;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  width: 262px;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
}
.secondary2 {
  background: #fff;
  border: 1px solid #ccc;
  width: 233px;
}
.program-count {
  margin: 20px 3px 20px;
  font-size: 34px;
  font-weight: 800;
}
.program-count span {
  color: #0936a3;
}
.right-filter {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  font-family:
    Host Grotesk,
    sans-serif;
  display: flex;
}
.careere-filters {
  gap: 4px;
  margin-top: 48px;
  display: flex;
}
.careere-filters button {
  cursor: pointer;
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 16px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-weight: 500;
  transition:
    background 0.15s,
    color 0.15s;
}
.careere-filters .active {
  color: #fff;
  background: #0936a3;
  border: none;
}
.careere-tag {
  color: #0936a3;
  background: var(--cream);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 16px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}
.careere-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1s infinite blink;
}
@keyframes blink {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.careere-top h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
}
.careere-top h1 span {
  color: #0936a3;
}
.careere-desc {
  color: #666;
  max-width: 600px;
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.6;
}
.careere-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 0;
  display: grid;
}
.careere-card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 17px;
  flex-direction: column;
  width: 100%;
  max-width: 393px;
  height: 510px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 12px #0000000f;
}
.careere-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px #0000001f;
}
.card-image {
  border-radius: 16px 16px 0 0;
  height: 260px;
  position: relative;
  overflow: hidden;
}
.img-shimmer {
  z-index: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) 0
    0/200% 100%;
  border-radius: 16px 16px 0 0;
  animation: 1.2s infinite shimmer;
  position: absolute;
  inset: 0;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.card-image img {
  object-fit: cover;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
  display: block;
}
.careere-card:hover {
  transform: translateY(-6px);
}
.card-top {
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  display: flex;
}
.tage {
  background: #ffffffe6;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
}
.demand {
  color: #0936a3;
  background: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}
.demand:empty {
  display: none;
}
.ai-badge {
  color: #fff;
  background: #4f46e5;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.card-body1 {
  flex-grow: 1;
  padding: 0 10px;
}
.card-body1 h3 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: 800;
}
.card-desc {
  color: #444;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}
.card-rating {
  color: #fbbf24;
  margin-top: -13px;
  margin-bottom: 15px;
  font-size: 14px;
}
.card-rating span {
  color: #666;
}
.card-info {
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
  padding: 15px 0;
  display: flex;
}
.card-info div {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  display: flex;
}
.card-info div:not(:last-child) {
  border-right: 1px solid #eee;
  margin-right: 10px;
  padding-right: 10px;
}
.card-info span {
  color: #888;
  font-size: 13px;
}
.card-info strong {
  color: #111;
  font-size: 16px;
  font-weight: 700;
}
.card-info strong.green {
  color: #16a34a;
}
.card-footer2 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 15px 20px;
  display: flex;
}
.salary {
  font-size: 19px;
  font-weight: 900;
}
.salary-sub {
  color: #888;
  font-size: 12px;
}
.enroll-btn {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
}
.enroll-btn:hover {
  background: #275fdb;
  transform: translateY(-2px);
}
.careere-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #0936a3 0%, #0936a3 100%);
  border-radius: 24px;
  margin-top: 80px;
  padding: 60px 20px;
}
.careere-cta h2 {
  color: #fff;
  margin-bottom: 12px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 32px;
  font-weight: 800;
}
.careere-cta p {
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 14px;
  line-height: 1.6;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0936a3;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  height: 48px;
  padding: 0 22px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}
.cta-btn:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .careere {
    margin-top: 0;
    padding: 30px 20px;
  }
  .careere-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .careere-left {
    max-width: 100%;
  }
  .careere-top h2 {
    font-size: 36px;
  }
  .careere-right {
    flex-flow: wrap;
    gap: 20px;
    width: 100%;
  }
  .careere-right img {
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
    max-width: 460px;
    height: 220px;
    margin: 0;
  }
  .careere-filters {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
  }
  .careere-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }
  .primary,
  .secondary2 {
    width: auto;
  }
  .careere-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .careere-card {
    max-width: 100%;
    height: auto;
  }
  .program-count {
    margin-top: 20px;
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .careere {
    margin-top: 0;
    padding: 24px 16px;
  }
  .careere-top h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .careere-desc {
    font-size: 14px;
  }
  .careere-right img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    margin: 0;
  }
  .careere-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .primary,
  .secondary2,
  .btne {
    width: 100%;
  }
  .careere-filters {
    flex-wrap: wrap;
    gap: 1px;
  }
  .careere-filters button {
    padding: 6px 12px;
    font-size: 13px;
  }
  .careere-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .careere-card {
    max-width: 100%;
    height: auto;
  }
  .card-image {
    height: 200px;
  }
  .card-info div {
    min-width: 0;
  }
  .card-info span {
    white-space: nowrap;
    font-size: 12px;
  }
  .card-info strong {
    font-size: 14px;
  }
  .card-body1 h3 {
    font-size: 20px;
  }
  .card-desc {
    font-size: 13px;
  }
  .salary {
    font-size: 17px;
  }
  .enroll-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .program-count {
    margin-top: 16px;
    font-size: 24px;
  }
  .careere-cta {
    border-radius: 16px;
    margin-top: 40px;
    padding: 40px 16px;
  }
  .careere-cta h2 {
    font-size: 24px;
  }
  .careere-cta p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .careere {
    padding: 20px 0;
  }
  .careere-top {
    padding: 0 12px;
  }
  .careere-top h2 {
    font-size: 22px;
  }
  .careere-desc {
    font-size: 13px;
  }
  .careere-right img {
    height: 160px;
  }
  .program-count {
    margin-top: 14px;
    padding: 0 12px;
    font-size: 20px;
  }
  .right-filter {
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
    overflow-x: auto;
  }
  .right-filter::-webkit-scrollbar {
    display: none;
  }
  .careere-filters button {
    white-space: nowrap;
  }
  .careere-grid {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 16px 12px 24px;
    display: flex;
    overflow-x: auto;
  }
  .careere-grid::-webkit-scrollbar {
    display: none;
  }
  .careere-card {
    scroll-snap-align: center;
    opacity: 0.78;
    flex: 0 0 78vw;
    max-width: 78vw;
    height: auto;
    min-height: 460px;
    transition:
      transform 0.35s,
      opacity 0.35s,
      box-shadow 0.35s;
    transform: scale(0.93);
    box-shadow: 0 4px 16px #00000014;
  }
  .careere-card.mobile-active {
    opacity: 1;
    border-color: #0936a340;
    transform: scale(1);
    box-shadow: 0 16px 40px #0936a32e;
  }
  .careere-grid:has(.careere-card:only-child) {
    justify-content: center;
  }
  .card-image {
    height: 190px;
  }
  .card-body1 {
    padding: 17px 12px;
  }
  .card-body1 h3 {
    margin: 8px 0 4px;
    font-size: 16px;
  }
  .card-desc {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
  }
  .card-rating {
    margin-top: 0;
    font-size: 12px;
  }
  .card-info {
    padding: 10px 0;
  }
  .card-info div {
    padding: 0 4px;
  }
  .card-info div:not(:last-child) {
    margin-right: 0;
    padding-right: 4px;
  }
  .card-info span {
    white-space: nowrap;
    font-size: 10px;
  }
  .card-info strong {
    word-break: break-word;
    font-size: 12px;
  }
  .card-footer2 {
    margin-top: -10px;
    padding: 10px 12px;
  }
  .salary {
    font-size: 15px;
  }
  .salary-sub {
    font-size: 11px;
  }
  .enroll-btn {
    padding: 9px 16px;
    font-size: 13px;
  }
  .tage {
    padding: 3px 10px;
    font-size: 11px;
  }
  .demand {
    padding: 3px 8px;
    font-size: 11px;
  }
  .ai-badge {
    padding: 4px 10px;
    font-size: 11px;
    bottom: 8px;
    right: 8px;
  }
  .careere-cta {
    border-radius: 16px;
    margin-top: 30px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 30px 14px;
  }
  .careere-cta h2 {
    font-size: 20px;
  }
  .careere-cta p {
    font-size: 12px;
  }
  .cta-btn {
    height: 42px;
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .careere-card {
    flex: 0 0 84vw;
    max-width: 84vw;
    min-height: 440px;
  }
  .card-image {
    height: 170px;
  }
  .card-body1 h3 {
    font-size: 15px;
  }
  .careere-cta h2,
  .program-count {
    font-size: 18px;
  }
  .right-filter {
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
@media (min-width: 1025px) and (max-width: 1300px) {
  .careere {
    padding: 30px 24px;
  }
  .careere-top {
    align-items: flex-start;
    gap: 24px;
  }
  .careere-top h2 {
    font-size: 38px;
    line-height: 1.25;
  }
  .careere-right img {
    max-width: 360px;
    height: 220px;
  }
  .careere-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .careere-card {
    max-width: 100%;
  }
  .right-filter {
    gap: 8px;
  }
  .careere-filters button {
    padding: 7px 12px;
    font-size: 13px;
  }
}

/* ===== Why Choose Us Page Styles - Hero (Migration Parity) ===== */
.ws-hero-wrapper {
  background: 0 0;
  justify-content: center;
  width: 100%;
  display: flex;
}
.ws-hero {
  background: 0 0;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  font-family:
    Host Grotesk,
    sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}
.ws-left {
  z-index: 1;
  flex: 1;
  max-width: 500px;
  position: relative;
}
.ws-breadcrumb {
  color: #666;
  margin-bottom: 20px;
  font-size: 13px;
}
.ws-breadcrumb span {
  color: #0936a3;
  font-weight: 600;
}
.ws-tag {
  color: #0936a3;
  background: var(--cream);
  border: 1px solid #0936a333;
  border-radius: 20px;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}
.ws-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 1s infinite ws-blink;
}
@keyframes ws-blink {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.ws-left h1 {
  color: #111;
  letter-spacing: -0.5px;
  margin-top: -10px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
}
.ws-left h1 span {
  color: #0936a3;
}
.ws-desc {
  color: #555;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
}
.ws-btn {
  cursor: pointer;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  padding: 13px 22px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
}
.ws-btn:hover {
  color: #0936a3;
  border-color: #0936a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #0936a31f;
}
.ws-right {
  z-index: 1;
  flex: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 580px;
  height: 480px;
  display: grid;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#0000, #000 12% 88%, #0000);
  mask-image: linear-gradient(#0000, #000 12% 88%, #0000);
}
.ws-col {
  flex-direction: column;
  padding: 8px;
  display: flex;
  overflow: visible;
}
.ws-track {
  will-change: transform;
  flex-direction: column;
  gap: 14px;
  display: flex;
}
.ws-track--up {
  transition: animation-play-state 0.4s;
  animation: 40s linear infinite ws-scrollUp;
}
.ws-track--down {
  transition: animation-play-state 0.4s;
  animation: 40s linear infinite ws-scrollDown;
}
.ws-track--slow {
  transition: animation-play-state 0.4s;
  animation: 40s linear infinite ws-scrollUp;
}
.ws-col:hover .ws-track--up,
.ws-col:hover .ws-track--down,
.ws-col:hover .ws-track--slow {
  animation-play-state: paused;
}
@keyframes ws-scrollUp {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes ws-scrollDown {
  0% {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.ws-card {
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  transform-style: preserve-3d;
  -webkit-backdrop-filter: blur(12px);
  background: #ffffff0f;
  border: 1px solid #ffffff2e;
  border-radius: 20px;
  flex-shrink: 0;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s;
  position: relative;
  overflow: hidden;
  transform: perspective(600px) rotateX(4deg) rotateY(-6deg);
  box-shadow:
    0 8px 32px #cfcece59,
    0 2px 8px #9f9e9e94,
    inset 0 1px #ffffff26;
}
.ws-card:before {
  content: "";
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(#ffffff24, #0000);
  border-radius: 20px 20px 0 0;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.ws-card:after {
  content: "";
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(#0000 40%, #0000001a 60%, #0000008c 100%),
    linear-gradient(135deg, #ffffff12 0%, #0000 55%);
  border-radius: 20px;
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px #ffffff14,
    inset 0 1px #ffffff2e;
}
.ws-card img {
  object-fit: cover;
  object-position: top;
  filter: brightness(0.9) contrast(1.05) saturate(1.1);
  border-radius: 12px;
  width: 100%;
  height: 190px;
  transition:
    transform 0.4s,
    filter 0.4s;
  display: block;
}
@media (max-width: 1024px) {
  .ws-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 0;
    padding: 40px 20px;
    overflow: hidden;
  }
  .ws-left {
    width: 100%;
    max-width: 100%;
  }
  .ws-breadcrumb {
    font-size: 12px;
  }
  .ws-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  .ws-left h1 {
    margin-top: 0;
    font-size: 32px;
    line-height: 1.3;
  }
  .ws-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
  }
  .ws-btn {
    margin-top: 20px;
    font-size: 13px;
  }
  .ws-right {
    width: 100%;
    max-width: 100%;
    height: 200px;
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
    mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
  }
  .ws-col:nth-child(2),
  .ws-col:nth-child(3) {
    display: none !important;
  }
  .ws-col {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .ws-track--up,
  .ws-track--down,
  .ws-track--slow {
    gap: 14px;
    width: max-content;
    flex-direction: row !important;
    animation: 20s linear infinite ws-mobileScroll !important;
    display: flex !important;
  }
  .ws-col:hover .ws-track--up,
  .ws-col:hover .ws-track--down,
  .ws-col:hover .ws-track--slow {
    animation-play-state: paused;
  }
  @keyframes ws-mobileScroll {
    0% {
      transform: translate(0);
    }
    to {
      transform: translate(-50%);
    }
  }
  .ws-card {
    border-radius: 14px;
    flex-shrink: 0;
    width: 140px;
  }
  .ws-card img {
    border-radius: 14px;
    height: 175px;
  }
}
@media (max-width: 480px) {
  .ws-hero {
    padding: 32px 16px;
  }
  .ws-left h1 {
    font-size: 24px;
  }
  .ws-desc {
    font-size: 13px;
  }
  .ws-right,
  .ws-col {
    height: 175px;
  }
  .ws-card {
    width: 120px;
  }
  .ws-card img {
    height: 150px;
  }
}
@media (max-width: 360px) {
  .ws-hero {
    padding: 24px 12px;
  }
  .ws-left h1 {
    font-size: 20px;
  }
  .ws-desc {
    font-size: 12px;
  }
  .ws-right,
  .ws-col {
    height: 160px;
  }
  .ws-card {
    width: 108px;
  }
  .ws-card img {
    height: 135px;
  }
}
.stats-bar {
  background: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-family:
    Host Grotesk,
    sans-serif;
  display: flex;
}
.stats-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 95%;
  max-width: 1240px;
  display: flex;
}
.stat-item {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-width: 230px;
  display: flex;
  position: relative;
}
.iconn-box {
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  display: flex;
  box-shadow: 0 4px 10px #0000001a;
}
.iconn-box img,
.iconn-box svg {
  object-fit: contain;
  width: 30px;
  height: 30px;
}
.iconn-box i {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.stat-text {
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.stat-number {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  display: block;
}
.stat-text p {
  color: #666;
  white-space: nowrap;
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .stats-inner {
    gap: 16px;
    padding: 0 30px;
  }
  .stat-item {
    min-width: 200px;
  }
  .stat-number {
    font-size: 22px;
  }
  .stat-text p {
    font-size: 13px;
  }
  .iconn-box {
    width: 55px;
    height: 55px;
  }
  .iconn-box img,
  .iconn-box svg {
    width: 26px;
    height: 26px;
  }
  .iconn-box i {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .stats-bar {
    padding: 30px 0;
  }
  .stats-inner {
    justify-content: center;
    gap: 20px;
  }
  .stat-item {
    flex: 0 0 calc(50% - 20px);
    justify-content: flex-start;
  }
  .stat-item:after {
    display: none;
  }
  .stat-number {
    font-size: 20px;
  }
  .stat-text p {
    white-space: normal;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .stats-bar {
    padding: 10px 0;
  }
  .stats-inner {
    gap: 18px;
    padding: 0 16px;
  }
  .stat-item {
    flex: 0 0 100%;
    justify-content: flex-start;
  }
  .iconn-box {
    width: 66px;
    height: 69px;
  }
  .iconn-box img,
  .iconn-box svg {
    width: 32px;
    height: 32px;
  }
  .iconn-box i {
    font-size: 32px;
  }
  .stat-number {
    font-size: 20px;
  }
  .stat-text p {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .stats-inner {
    gap: 14px;
    padding: 0 12px;
  }
  .iconn-box {
    width: 42px;
    height: 42px;
  }
  .iconn-box img,
  .iconn-box svg {
    width: 18px;
    height: 18px;
  }
  .iconn-box i {
    font-size: 18px;
  }
  .stat-number {
    font-size: 16px;
  }
  .stat-text p {
    font-size: 11px;
  }
}
.wh-section {
  background: #fff;
  padding: 40px;
  font-family:
    Host Grotesk,
    sans-serif;
  overflow: hidden;
}
.wh-header {
  text-align: center;
  margin-bottom: 60px;
}
.wh-tag {
  color: #0936a3;
  background: #e0e8f9;
  border-radius: 999px;
  margin-bottom: 12px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}
.wh-header h2 {
  color: #111;
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
}
.wh-header h2 span {
  color: #0936a3;
}
.wh-desc {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}
.wh-layout {
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.wh-col {
  flex-direction: column;
  flex: 1;
  gap: 16px;
  max-width: 351px;
  display: flex;
}
.wh-box {
  will-change: transform;
  background: #e0e8f9;
  border-radius: 40px;
  width: 351px;
  height: 140px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
}
.wh-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0936a31f;
}
.wh-box-inner {
  box-sizing: border-box;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 16px 20px;
  display: flex;
}
.left-inner {
  flex-direction: row-reverse;
}
.right-inner {
  flex-direction: row;
}
.bottom-inner {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.wh-icon-wrap {
  background: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  box-shadow: 0 2px 8px #00000014;
}
.wh-icon-wrap img {
  object-fit: contain;
  width: 36px;
  height: 36px;
}
.wh-text h3 {
  color: #111;
  text-align: left;
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.wh-text p {
  color: #555;
  text-align: left;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.left-text {
  text-align: right;
}
.right-text {
  text-align: left;
}
.wh-center {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
.wh-outer-ring {
  border: 2px dashed #0936a34d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
  display: flex;
}
.wh-inner-ring {
  border: 2px solid #0936a326;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  display: flex;
}
.wh-circle {
  color: #fff;
  background: linear-gradient(135deg, #0936a3, #0936a3);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  display: flex;
  box-shadow:
    0 0 0 12px #0936a31a,
    0 8px 32px #0936a34d;
}
.wh-circle span {
  opacity: 1;
  font-size: 45px;
  font-weight: 500;
}
.wh-circle strong {
  font-size: 35px;
  font-weight: 900;
}
@keyframes rotateSlow {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.wh-bottom {
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  display: flex;
}
.wh-box-bottom {
  flex: 0 0 260px;
  width: 100%;
  max-width: 260px;
}
@media (max-width: 1200px) {
  .wh-box {
    width: 100%;
  }
  .wh-col {
    max-width: 300px;
  }
  .wh-layout {
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .wh-section {
    padding: 60px 24px;
  }
  .wh-header h2 {
    font-size: 34px;
  }
  .wh-col {
    max-width: 260px;
  }
  .wh-outer-ring {
    width: 180px;
    height: 180px;
  }
  .wh-inner-ring {
    width: 145px;
    height: 145px;
  }
  .wh-circle {
    width: 110px;
    height: 110px;
  }
  .wh-circle span {
    font-size: 14px;
  }
  .wh-circle strong {
    font-size: 15px;
  }
  .wh-box {
    height: auto;
    min-height: 120px;
  }
  .wh-box-bottom {
    flex: 0 0 260px;
    width: 100%;
    max-width: 260px;
    min-height: 120px;
  }
}
@media (max-width: 768px) {
  .wh-section {
    padding: 50px 16px;
  }
  .wh-header {
    margin-bottom: 30px;
  }
  .wh-header h2 {
    font-size: 28px;
  }
  .wh-desc {
    font-size: 13px;
  }
  .wh-layout {
    flex-direction: column;
    gap: 12px;
  }
  .wh-col {
    width: 100%;
    max-width: 100%;
  }
  .wh-box {
    border-radius: 20px;
    width: 100%;
    height: auto;
    min-height: 90px;
  }
  .wh-center {
    order: -1;
    margin-bottom: 8px;
  }
  .wh-outer-ring {
    width: 150px;
    height: 150px;
  }
  .wh-inner-ring {
    width: 120px;
    height: 120px;
  }
  .wh-circle {
    width: 90px;
    height: 90px;
  }
  .wh-circle span {
    font-size: 12px;
  }
  .wh-circle strong {
    font-size: 14px;
  }
  .wh-box-inner {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  .wh-icon-wrap {
    order: 1;
  }
  .wh-text {
    order: 2;
    text-align: left !important;
  }
  .left-text,
  .right-text {
    text-align: left !important;
  }
  .wh-bottom {
    margin-top: 12px;
  }
  .wh-box-bottom {
    flex: unset;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    min-height: 90px;
  }
  .wh-box-bottom .wh-bottom .wh-box {
    width: 100%;
    min-height: 90px;
  }
}
@media (max-width: 480px) {
  .wh-section {
    padding: 30px 12px;
  }
  .wh-header h2 {
    font-size: 22px;
  }
  .wh-desc {
    font-size: 12px;
  }
  .wh-layout {
    gap: 10px;
  }
  .wh-box-inner {
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 14px !important;
  }
  .wh-icon-wrap {
    border-radius: 10px;
    order: 1;
    width: 44px;
    min-width: 44px;
    height: 44px;
  }
  .wh-icon-wrap img {
    width: 26px;
    height: 26px;
  }
  .wh-text {
    order: 2;
    text-align: left !important;
  }
  .wh-text h3 {
    font-size: 12px;
  }
  .wh-text p {
    font-size: 10px;
  }
  .wh-outer-ring {
    width: 130px;
    height: 130px;
  }
  .wh-inner-ring {
    width: 105px;
    height: 105px;
  }
  .wh-circle {
    width: 80px;
    height: 80px;
  }
  .wh-circle span {
    font-size: 11px;
  }
  .wh-circle strong {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .wh-section {
    padding: 24px 10px;
  }
  .wh-header h2 {
    font-size: 18px;
  }
  .wh-box-inner {
    gap: 8px !important;
    padding: 10px 12px !important;
  }
  .wh-icon-wrap {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }
  .wh-icon-wrap img {
    width: 22px;
    height: 22px;
  }
  .wh-text h3 {
    font-size: 11px;
  }
  .wh-text p {
    font-size: 9px;
  }
  .wh-outer-ring {
    width: 110px;
    height: 110px;
  }
  .wh-inner-ring {
    width: 88px;
    height: 88px;
  }
  .wh-circle {
    width: 66px;
    height: 66px;
  }
  .wh-circle span {
    font-size: 10px;
  }
  .wh-circle strong {
    font-size: 11px;
  }
}
.wa-section {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  font-family:
    Host Grotesk,
    sans-serif;
}
.wa-header {
  margin-bottom: 50px;
}
.wa-header h2 {
  color: #111;
  text-align: center;
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
}
.wa-header h2 span {
  color: #0936a3;
}
.wa-desc {
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 10px auto 0;
  font-size: 15px;
  line-height: 1.7;
}
.wa-row {
  align-items: flex-start;
  gap: 30px;
  display: flex;
  position: relative;
}
.wa-card-left {
  color: #fff;
  background: #0936a3;
  border-radius: 20px;
  flex-direction: column;
  flex: 1.1;
  align-self: flex-end;
  gap: 24px;
  padding: 40px 36px;
  display: flex;
}
.wa-card-left p {
  opacity: 0.96;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.wa-line {
  background: #ffffff80;
  border-radius: 2px;
  width: 60px;
  height: 3px;
}
.wa-btn {
  color: #0936a3;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  width: fit-content;
  padding: 13px 26px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
}
.wa-btn:hover {
  background: #e0e8f9;
  transform: translateY(-2px);
}
.wa-right-col {
  flex-direction: column;
  flex: 1;
  align-items: flex-end;
  gap: 0;
  display: flex;
}
.wa-card-small {
  color: #fff;
  background: #0936a3;
  border-radius: 12px;
  align-self: flex-end;
  width: fit-content;
  margin-bottom: 16px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
}
.wa-card-small p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.wa-card-right {
  color: #fff;
  background: #0936a3;
  border-radius: 20px;
  width: 100%;
  margin-left: 30px;
  padding: 36px 32px;
}
.wa-card-right p {
  opacity: 0.96;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .wa-section {
    padding: 60px 30px;
  }
  .wa-header h2 {
    font-size: 38px;
  }
  .wa-card-right {
    margin-left: 16px;
  }
}
@media (max-width: 768px) {
  .wa-section {
    padding: 50px 20px;
  }
  .wa-header h2 {
    font-size: 28px;
  }
  .wa-desc {
    font-size: 14px;
  }
  .wa-row {
    flex-direction: column;
    gap: 16px;
  }
  .wa-card-left {
    padding: 28px 24px;
  }
  .wa-card-right {
    margin-left: 0;
    padding: 28px 24px;
  }
  .wa-card-small {
    align-self: flex-start;
  }
  .wa-card-left p,
  .wa-card-right p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .wa-section {
    padding: 40px 16px;
  }
  .wa-header h2 {
    font-size: 22px;
  }
  .wa-card-left {
    gap: 18px;
    padding: 22px 18px;
  }
  .wa-card-right {
    padding: 22px 18px;
  }
  .wa-card-left p,
  .wa-card-right p {
    font-size: 13px;
  }
  .wa-btn {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 360px) {
  .wa-header h2 {
    font-size: 19px;
  }
  .wa-card-left p,
  .wa-card-right p {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-btn {
    transition: none;
  }
}

/* ===== Why Choose Us Page Styles - Reviews (Migration Parity) ===== */
.reviews {
  box-sizing: border-box;
  background: #e0e8f9;
  max-width: 100vw;
  font-family:
    Host Grotesk,
    sans-serif;
  overflow: hidden;
}
.reviews-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 73px;
}
.reviews-top {
  box-sizing: border-box;
  background: #fff;
  border-radius: 14px;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 25px;
  display: flex;
  box-shadow: 0 1px 6px #00000008;
}
.left-section {
  align-items: center;
  gap: 30px;
  display: flex;
}
.google-brand {
  align-items: center;
  gap: 8px;
  display: flex;
}
.google-brand img {
  width: 35px;
  height: auto;
}
.google-brand .g-text {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}
.rating-info {
  align-items: center;
  gap: 12px;
  display: flex;
}
.rating-info h3 {
  margin: 0;
  font-size: 39px;
  font-weight: 800;
}
.stars-wrapper {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.starss {
  color: #fbbf24;
  font-size: 16px;
  display: flex;
}
.stars-wrapper p {
  color: #666;
  white-space: nowrap;
  margin: 0;
  font-size: 14px;
}
.divider {
  background: #e0e0e0;
  width: 1px;
  height: 35px;
}
.center h4 {
  color: #000;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.center p {
  color: #888;
  margin: 2px 0 0;
  font-size: 12px;
}
.right {
  color: #16a34a;
  background: #e6f9f0;
  border-radius: 50px;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}
.reviews-wrapper {
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  cursor: grab;
  width: 100%;
  height: 520px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.reviews-wrapper:before,
.reviews-wrapper:after {
  content: "";
  z-index: 5;
  pointer-events: none;
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
}
.reviews-wrapper:before {
  background: linear-gradient(90deg, #fcecec 0%, #fcececb3 50%, #fcecec00 100%);
  width: 120px;
  left: 0;
}
.reviews-wrapper:after {
  background: linear-gradient(
    270deg,
    #fcecec 0%,
    #fcececb3 50%,
    #fcecec00 100%
  );
  width: 120px;
  right: 0;
}
.reviews-row {
  will-change: transform;
  gap: 25px;
  width: max-content;
  display: flex;
}
.review-card {
  cursor: pointer;
  flex: 0 0 300px;
  height: 500px;
  position: relative;
}
.media-box {
  background: #111;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cover-layer {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.35s,
    visibility 0.35s;
}
.is-playing .cover-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.thumb {
  object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}
.review-tags {
  z-index: 4;
  justify-content: space-between;
  display: flex;
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
}
.course {
  color: #fff;
  background: #0936a3;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.badge {
  color: #fff;
  background: #16a34a;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.overlay {
  z-index: 3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}
.play-btn {
  color: #fff;
  cursor: pointer;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  background: #0936a3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 16px;
  transition: transform 0.2s;
  display: flex;
  position: relative;
}
/* .play-btn:hover {
    transform: scale(1.1);
} */
.play-btn:before {
  content: "";
  z-index: -1;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: 1.5s infinite ripple;
  position: absolute;
}
@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(1.8);
  }
}
.review-content {
  color: #fff;
  z-index: 4;
  box-sizing: border-box;
  background: linear-gradient(#0000, #000000e6);
  width: 100%;
  padding: 20px;
  position: absolute;
  bottom: 0;
}
.review-content p {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}
.review-user {
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  display: flex;
}
.review-user strong {
  font-size: 13px;
  display: block;
}
.review-user span {
  color: #ccc;
  font-size: 11px;
  display: block;
}
.avatar-img {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.stars.small {
  color: #fbbf24;
  gap: 2px;
  font-size: 12px;
  display: flex;
}
.videoes {
  z-index: 10;
  border: none;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.video-close-btn {
  z-index: 11;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: #000000bf;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 15px;
  transition: background 0.2s;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}
.video-close-btn:hover,
.video-close-btn:active {
  background: #0936a3;
}
.dots-row {
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  display: flex;
}
.dot {
  cursor: pointer;
  background: #ccc;
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 0;
  transition:
    background 0.3s,
    width 0.3s;
}
.dot.active {
  background: #0936a3;
  border-radius: 10px;
  width: 28px;
}
.view-more {
  text-align: right;
  margin-top: 20px;
}
.view-more a {
  color: #0936a3;
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 1441px) {
  .reviews {
    padding: 0;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .reviews {
    padding: 0;
  }
  .review-card {
    flex: 0 0 280px;
    height: 460px;
  }
  .reviews-wrapper {
    height: 490px;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .reviews {
    padding: 0;
  }
  .reviews-top {
    gap: 12px;
    padding: 14px 18px;
  }
  .left-section {
    gap: 16px;
  }
  .divider {
    display: none;
  }
  .center h4 {
    font-size: 14px;
  }
  .right {
    margin-left: 0;
  }
  .reviews-wrapper {
    height: 420px;
  }
  .reviews-row {
    gap: 18px;
  }
  .reviews-container {
    padding: 60px 30px;
  }
  .review-card {
    flex: 0 0 240px;
    height: 400px;
  }
}
@media (max-width: 600px) {
  .reviews {
    padding: 0;
  }
  .reviews-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }
  .left-section {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .google-brand img {
    width: 26px;
  }
  .reviews-container {
    padding: 30px 16px;
  }
  .google-brand .g-text {
    font-size: 14px;
  }
  .rating-info h3 {
    font-size: 26px;
  }
  .starss {
    font-size: 13px;
  }
  .stars-wrapper p {
    font-size: 11px;
  }
  .divider {
    display: none;
  }
  .center {
    width: 100%;
  }
  .center h4 {
    white-space: normal;
    font-size: 13px;
    line-height: 1.4;
  }
  .center p {
    font-size: 11px;
  }
  .right {
    margin-left: 0;
    padding: 5px 12px;
    font-size: 11px;
    display: flex;
  }
  .reviews-wrapper {
    height: 420px;
    margin-top: 20px;
  }
  .reviews-row {
    gap: 14px;
  }
  .review-card {
    flex: 0 0 72vw;
    height: 400px;
  }
  .reviews-wrapper:before,
  .reviews-wrapper:after {
    background: linear-gradient(90deg, #fcecec 0%, #fcecec00 100%);
    width: 30px;
  }
  .reviews-wrapper:after {
    background: linear-gradient(270deg, #fcecec 0%, #fcecec00 100%);
  }
}
@media (max-width: 480px) {
  .reviews {
    padding: 0;
  }
  .reviews-container {
    padding: 24px 12px;
  }
  .rating-info h3 {
    font-size: 22px;
  }
  .reviews-wrapper {
    height: 400px;
  }
  .review-card {
    flex: 0 0 75vw;
    height: 380px;
  }
  .reviews-top .right {
    display: none !important;
  }
  .center h4 {
    white-space: normal;
    word-wrap: break-word;
    font-size: 12px;
    overflow: visible;
  }
  .reviews-wrapper:before,
  .reviews-wrapper:after {
    width: 20px;
  }
}
@media (max-width: 360px) {
  .reviews {
    padding: 0;
  }
  .rating-info h3 {
    font-size: 20px;
  }
  .review-card {
    flex: 0 0 80vw;
    height: 360px;
  }
  .reviews-wrapper {
    height: 375px;
  }
  .reviews-top .right {
    display: none !important;
  }
  .reviews-wrapper:before,
  .reviews-wrapper:after {
    width: 15px;
  }
}
@media (max-width: 260px) {
  .reviews {
    padding: 0;
  }
  .rating-info h3 {
    font-size: 18px;
  }
  .review-card {
    flex: 0 0 90vw;
    height: 340px;
  }
  .reviews-wrapper {
    height: 355px;
  }
  .google-brand .g-text {
    font-size: 12px;
  }
  .center h4 {
    font-size: 11px;
  }
}
@media (max-width: 1024px) {
  .review-tags {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 6px;
  }
  .course,
  .badge {
    white-space: nowrap;
    padding: 3px 8px;
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .course,
  .badge {
    padding: 3px 7px;
    font-size: 10px;
  }
}

/* ===== Why Choose Us Page Styles - Placement & Mentors (Migration Parity) ===== */
.placement-section {
  background-color: #e0e8f9;
  width: 100%;
  height: auto;
  padding: 30px 0;
  display: block;
  overflow: hidden;
}
.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.se-sectionn-label {
  color: #0936a3;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
}
.header-main {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  display: flex;
}
.text-content {
  flex: 1;
  min-width: 300px;
}
.placement-header h2 {
  color: #000;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
}
.placement-header h2 span {
  color: #0936a3;
}
.header-desc {
  color: #000;
  opacity: 0.5;
  width: 100%;
  max-width: 695px;
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
}
.trust-badges {
  flex-direction: column;
  flex-shrink: 0;
  gap: 12px;
  margin-top: 75px;
  display: flex;
}
.badge-item {
  background: #fff;
  border-radius: 50px;
  align-items: center;
  gap: 6px;
  width: 200px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  box-shadow: 0 4px 10px #0000000d;
}
.badge1-item {
  background: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 190px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 10px #0000000d;
}
.red-text {
  color: #0936a3;
}
.wc-network-scroll {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  padding: 10px 0;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
}
.wc-scroll-row {
  width: 100%;
  overflow: hidden visible;
}
.wc-scroll-track {
  will-change: transform;
  align-items: center;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
  display: flex;
}
.wc-scroll-row:first-child .wc-scroll-track {
  animation: 30s linear infinite wcScrollLeft;
}
.wc-scroll-row:nth-child(2) .wc-scroll-track {
  animation: 30s linear infinite wcScrollRight;
}
@media (min-width: 1025px) {
  .wc-network-scroll:hover .wc-scroll-track {
    animation-play-state: paused;
  }
}
@keyframes wcScrollLeft {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
@keyframes wcScrollRight {
  0% {
    transform: translate(-50%);
  }
  to {
    transform: translate(0);
  }
}
.wc-company-card {
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 80px;
  padding: 0 16px;
  transition: transform 0.35s;
  display: flex;
}
.wc-company-card:hover {
  z-index: 20;
  transform: scale(1.05);
  box-shadow: 0 5px 15px #0000001f;
}
.wc-company-logo {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 52px;
  transition: transform 0.3s;
}
.wc-company-card:hover .wc-company-logo {
  transform: scale(1.03);
}
.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  display: grid;
}
.stat-box {
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 160px;
  padding: 20px;
  transition: all 0.35s;
  display: flex;
}
.stat-box:hover {
  z-index: 5;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px #0000001f;
}
.s-icon {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  display: flex;
}
.s-icon img {
  object-fit: contain;
  width: 32px;
  height: 32px;
}
.s-number {
  color: #0936a3;
  font-size: 32px;
  font-weight: 900;
}
.s-label {
  color: #666;
  margin-top: 4px;
  font-size: 16px;
}
.placement-cta {
  color: #fff;
  box-sizing: border-box;
  background: linear-gradient(135deg, #0936a3 0%, #991b1b 100%);
  border-radius: 12px;
  align-items: flex-start;
  width: 100%;
  min-height: 201px;
  margin-top: 20px;
  padding: 26px 50px;
  display: flex;
}
.cta-content h3 {
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 36px;
  font-weight: 800;
}
.cta-content p {
  opacity: 0.9;
  max-width: 800px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}
.cta-actions {
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
}
.btn-enroll,
.btn-view {
  cursor: pointer;
  border-radius: 10px;
  width: 220px;
  height: 54px;
  margin-top: -20px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-enroll {
  color: #0936a3;
  background: #fff;
  border: none;
}
.btn-view {
  color: #fff;
  background: #ffffff1a;
  border: 1px solid #fff6;
}
.btn-enroll:hover,
.btn-view:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px #0003;
}
.b-icon {
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 24px;
  margin-right: 8px;
  display: inline-flex;
}
.b-icon img {
  object-fit: contain;
  width: 20px;
  height: 15px;
}
@media (max-width: 1024px) {
  .placement-header h2 {
    font-size: 42px;
  }
  .header-desc {
    max-width: 100%;
    font-size: 16px;
  }
  .trust-badges {
    margin-top: 30px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .placement-cta {
    padding: 24px 30px;
  }
  .cta-content h3 {
    font-size: 28px;
  }
  .wc-scroll-track {
    gap: 16px;
    animation: none !important;
  }
  .wc-company-card {
    width: 190px;
    height: 75px;
  }
  .wc-company-logo {
    max-height: 48px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .header-main {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .text-content {
    width: 100%;
    min-width: 100%;
  }
  .placement-header h2 {
    font-size: 34px;
  }
  .header-desc {
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 14px;
  }
  .trust-badges {
    flex-flow: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 0;
  }
  .badge-item,
  .badge1-item {
    width: auto;
    margin-left: 0;
    font-size: 13px;
  }
  .wc-company-card {
    width: 160px;
    height: 68px;
  }
  .wc-company-logo {
    max-height: 64px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stat-box {
    min-height: 135px;
  }
  .s-number {
    font-size: 26px;
  }
  .s-label {
    font-size: 14px;
  }
  .placement-cta {
    padding: 20px;
  }
  .cta-content h3 {
    font-size: 24px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .cta-actions {
    flex-direction: column;
  }
  .btn-enroll,
  .btn-view {
    width: 100%;
    height: 48px;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .placement-section {
    padding: 24px 0;
  }
  .container {
    padding: 0 14px;
  }
  .placement-header h2 {
    font-size: 26px;
  }
  .header-desc {
    font-size: 13px;
    line-height: 1.6;
  }
  .trust-badges {
    flex-direction: column;
    width: 100%;
  }
  .badge-item,
  .badge1-item {
    width: fit-content;
    max-width: 100%;
    padding: 6px 12px;
    font-size: 12px;
  }
  .wc-network-scroll {
    gap: 14px;
  }
  .wc-scroll-track {
    gap: 12px;
  }
  .wc-company-card {
    width: 135px;
    height: 58px;
    padding: 0 10px;
  }
  .wc-company-logo {
    max-height: 46px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-box {
    min-height: 115px;
  }
  .s-number {
    font-size: 22px;
  }
  .s-label {
    font-size: 12px;
  }
  .placement-cta {
    padding: 18px 16px;
  }
  .cta-content h3 {
    font-size: 20px;
  }
  .cta-content p {
    font-size: 13px;
  }
  .btn-enroll,
  .btn-view {
    height: 44px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  .placement-header h2 {
    font-size: 22px;
  }
  .wc-company-card {
    width: 120px;
    height: 52px;
  }
  .wc-company-logo {
    max-height: 42px;
  }
  .stat-box {
    min-height: 105px;
  }
  .s-number {
    font-size: 20px;
  }
  .s-label {
    font-size: 11px;
  }
  .cta-content h3 {
    font-size: 18px;
  }
}
.mentors {
  box-sizing: border-box;
  background: #e0e8f9;
  width: 100%;
  padding: 60px 50px;
  font-family:
    Host Grotesk,
    sans-serif;
  overflow: hidden;
}
.mentors-container {
  max-width: 1260px;
  margin: 0 auto;
}
.mentors-top {
  margin-bottom: 40px;
}
.mentors-tag {
  color: #0936a3;
  background: #fff;
  border-radius: 20px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}
.mentors-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 1s infinite blink;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
.mentors-top h2 {
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
}
.mentors-top h2 span {
  color: #0936a3;
}
.mentors-desc {
  color: #666;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.6;
}
.mentors-filters {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}
.mentors-filters button {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.mentors-filters button:hover {
  background: #f5d5d5;
}
.mentors-filters .active {
  color: #fff;
  background: #0936a3;
}
.mentors-layout {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  display: grid;
}
.mentor-card {
  will-change: transform;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  overflow: hidden;
}
.mentor-card:hover {
  transform: translateY(-6px);
}
.mentor-img-wrap {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
}
.mentor-img-wrap img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  display: block;
}
.mentor-content {
  flex-direction: column;
  flex: 1;
  padding: 16px;
  display: flex;
}
.mentor-role {
  color: #0936a3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
}
.mentor-content h3 {
  color: #111;
  flex-shrink: 0;
  margin: 8px 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}
.mentor-content p {
  color: #555;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}
.mentor-tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  display: flex;
}
.mentor-tags span {
  color: #0936a3;
  white-space: nowrap;
  background: #e0e8f9;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
}
.mentor-featured {
  height: 100%;
}
.mentor-featured .mentor-img-wrap img {
  height: 440px;
}
.mentors-carousel-wrap {
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  height: 100%;
  display: flex;
}
.mentors-carousel-viewport {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  flex: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000 0%, #000 5% 95%, #0000 100%);
  mask-image: linear-gradient(90deg, #0000 0%, #000 5% 95%, #0000 100%);
}
.mentors-carousel-viewport:active {
  cursor: grabbing;
}
.mentors-carousel-track {
  will-change: transform;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  height: auto;
  display: flex;
}
.mentor-carousel-card {
  flex: 0 0 260px;
  height: 100%;
}
.mentor-carousel-card .mentor-img-wrap img {
  height: 280px;
}
.mentor-dots {
  flex-shrink: 0;
  justify-content: center;
  gap: 8px;
  display: flex;
}
.mentor-dot {
  cursor: pointer;
  background: #ccc;
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 0;
  transition:
    background 0.3s,
    width 0.3s;
}
.mentor-dot.active {
  background: #0936a3;
  border-radius: 10px;
  width: 28px;
}
@media (min-width: 1441px) {
  .mentor-featured .mentor-img-wrap img {
    height: 480px;
  }
  .mentor-carousel-card {
    flex: 0 0 300px;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 320px;
  }
}
@media (min-width: 1301px) and (max-width: 1440px) {
  .mentor-featured .mentor-img-wrap img {
    height: 460px;
  }
  .mentor-carousel-card {
    flex: 0 0 280px;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 300px;
  }
}
@media (min-width: 1025px) and (max-width: 1300px) {
  .mentors {
    padding: 50px 30px;
  }
  .mentors-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .mentor-featured .mentor-img-wrap img {
    height: 380px;
  }
  .mentor-carousel-card {
    flex: 0 0 240px;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 240px;
  }
  .mentor-content h3 {
    font-size: 16px;
  }
  .mentor-content p {
    font-size: 13px;
  }
  .mentor-tags span {
    padding: 4px 10px;
    font-size: 11px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mentor-carousel-card {
    flex: 0 0 280px;
  }
  .mentor-img-wrap {
    aspect-ratio: 3/4;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    object-position: center top;
    height: 280px;
  }
}
@media (max-width: 768px) {
  .mentors {
    padding: 40px 20px;
  }
  .mentors-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mentors-top h2 {
    font-size: 26px;
  }
  .mentor-featured .mentor-img-wrap img {
    height: 320px;
  }
  .mentors-carousel-viewport {
    height: auto;
    min-height: 520px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .mentor-carousel-card {
    flex: 0 0 72vw;
    height: auto;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 400px;
  }
}
@media (min-width: 481px) and (max-width: 600px) {
  .mentors-carousel-viewport {
    height: auto;
    min-height: 490px;
  }
  .mentor-carousel-card {
    flex: 0 0 68vw;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 330px;
  }
}
@media (max-width: 480px) {
  .mentors {
    padding: 30px 16px;
  }
  .mentors-carousel-viewport {
    height: auto;
    min-height: 460px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .mentors-top h2 {
    font-size: 22px;
  }
  .mentor-content h3 {
    font-size: 16px;
  }
  .mentor-content p {
    font-size: 13px;
  }
  .mentor-tags span {
    font-size: 11px;
  }
  .mentor-featured .mentor-img-wrap img {
    height: 280px;
  }
  .mentors-carousel-viewport {
    height: auto;
    min-height: 460px;
  }
  .mentor-carousel-card {
    flex: 0 0 76vw;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 280px;
  }
}
@media (max-width: 360px) {
  .mentors-top h2 {
    font-size: 19px;
  }
  .mentor-content h3 {
    font-size: 14px;
  }
  .mentors-carousel-viewport {
    height: auto;
    min-height: 420px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .mentor-content p {
    font-size: 12px;
  }
  .mentor-featured .mentor-img-wrap img {
    height: 240px;
  }
  .mentors-carousel-viewport {
    height: auto;
    min-height: 420px;
  }
  .mentor-carousel-card {
    flex: 0 0 80vw;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 360px;
  }
}
@media (max-width: 260px) {
  .mentors {
    padding: 20px 10px;
  }
  .mentors-top h2 {
    font-size: 16px;
  }
  .mentors-desc {
    font-size: 12px;
  }
  .mentors-filters button {
    padding: 5px 10px;
    font-size: 11px;
  }
  .mentor-featured .mentor-img-wrap img {
    height: 200px;
  }
  .mentor-content h3 {
    font-size: 13px;
  }
  .mentor-content p {
    font-size: 11px;
  }
  .mentor-tags span {
    padding: 3px 8px;
    font-size: 10px;
  }
  .mentors-carousel-viewport {
    height: auto;
    min-height: 380px;
  }
  .mentor-carousel-card {
    flex: 0 0 85vw;
  }
  .mentor-carousel-card .mentor-img-wrap img {
    height: 208px;
  }
  .mentor-dot {
    width: 8px;
    height: 8px;
  }
  .mentor-dot.active {
    width: 22px;
  }
}
.wc-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  font-family:
    Host Grotesk,
    sans-serif;
}
.wc-header {
  text-align: center;
  margin-bottom: 60px;
}
.wc-badge {
  color: #0936a3;
  background: var(--cream);
  border-radius: 20px;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}
.wc-dot {
  background: #0936a3;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 1.2s infinite wcBlink;
}
@keyframes wcBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
.wc-title {
  margin: 15px 0;
  font-size: 48px;
  font-weight: 900;
}
.wc-title span {
  color: #0936a3;
}
.wc-desc {
  color: #666;
  max-width: 720px;
  margin: auto;
  font-size: 15px;
}
.wc-grid {
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  display: grid;
}
.wc-main,
.wc-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #f3f4f6;
}
.wc-bg-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.wc-main .wc-bg-img {
  position: absolute;
  top: 0;
  left: 0;
}
.wc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 54, 163, 0.85) 0%,
    rgba(9, 54, 163, 0) 80%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.wc-card-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wc-main:hover .wc-bg-img,
.wc-card:hover .wc-bg-img {
  transform: scale(1.06);
}
.wc-main:hover .wc-overlay,
.wc-card:hover .wc-overlay {
  opacity: 1;
}
.wc-main:hover .wc-card-title,
.wc-card:hover .wc-card-title {
  transform: translateY(0);
}
.wc-main {
  height: 100%;
}
.wc-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wc-card {
  aspect-ratio: 4 / 3;
}

@media (max-width: 1024px) {
  .wc-section {
    padding: 60px 20px;
  }
  .wc-title {
    font-size: 38px;
  }
  .wc-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .wc-section {
    padding: 50px 16px;
  }
  .wc-header {
    margin-bottom: 40px;
  }
  .wc-title {
    font-size: 30px;
  }
  .wc-desc {
    font-size: 14px;
  }
  .wc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .wc-main {
    aspect-ratio: 16 / 10;
  }
  .wc-right {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .wc-section {
    padding: 30px 14px;
  }
  .wc-header {
    margin-bottom: 24px;
  }
  .wc-title {
    margin: 10px 0;
    font-size: 22px;
  }
  .wc-desc {
    font-size: 13px;
  }
  .wc-badge {
    padding: 5px 12px;
    font-size: 12px;
  }
  .wc-grid {
    gap: 14px;
  }
  .wc-main {
    aspect-ratio: 4 / 3;
  }
  .wc-right {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 360px) {
  .wc-section {
    padding: 24px 10px;
  }
  .wc-title {
    font-size: 19px;
  }
}
.placemente-cta {
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  background: linear-gradient(90deg, #0936a3 0%, #0936a3 100%);
  border-radius: 20px;
  max-width: 1210px;
  margin: 60px auto;
  padding: 60px 20px;
  font-family:
    Host Grotesk,
    sans-serif;
  overflow: hidden;
}
.cta-content h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
}
.cta-content p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}
.cta-actions {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  display: flex;
}
.cta-actions button {
  cursor: pointer;
  box-sizing: border-box;
  border: none;
  border-radius: 14px;
  margin-top: 10px;
  padding: 12px 22px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-enroll {
  color: #0936a3;
  background: #fff;
}
.btne-view {
  color: #fff;
  background: #ffffff26;
  border: 1px solid #ffffff80;
}
.cta-actions button:hover {
  transform: translateY(-2px);
}
@media (max-width: 1300px) {
  .placemente-cta {
    margin: 50px 20px;
    padding: 50px 30px;
  }
  .cta-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .placemente-cta {
    border-radius: 16px;
    margin: 40px 16px;
    padding: 40px 20px;
  }
  .cta-content h3 {
    font-size: 24px;
  }
  .cta-content p {
    font-size: 13px;
  }
  .cta-actions {
    flex-flow: wrap;
    justify-content: center;
    gap: 12px;
  }
  .cta-actions button {
    width: auto;
    min-width: 180px;
  }
}
@media (max-width: 480px) {
  .placemente-cta {
    border-radius: 14px;
    margin: 30px 12px;
    padding: 30px 16px;
  }
  .cta-content h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  .cta-content p {
    font-size: 12px;
    line-height: 1.5;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-actions button {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    padding: 12px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .placemente-cta {
    margin: 24px 8px;
    padding: 24px 12px;
  }
  .cta-content h3 {
    font-size: 17px;
  }
  .cta-content p {
    font-size: 11px;
  }
  .cta-actions button {
    padding: 10px;
    font-size: 13px;
  }
}
@media (max-width: 260px) {
  .placemente-cta {
    border-radius: 10px;
    margin: 16px 4px;
    padding: 18px 8px;
  }
  .cta-content h3 {
    font-size: 14px;
  }
  .cta-content p {
    font-size: 10px;
  }
  .cta-actions {
    gap: 8px;
  }
  .cta-actions button {
    border-radius: 10px;
    width: 100%;
    padding: 8px;
    font-size: 11px;
  }
}
.wcert-section {
  background: #fff;
  padding: 80px 40px;
  font-family:
    Host Grotesk,
    sans-serif;
  overflow: hidden;
}
.wcert-header {
  text-align: center;
  margin-bottom: 60px;
}
.wcert-header h2 {
  color: #111;
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
}
.wcert-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}
.wcert-cards {
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.wcert-card {
  will-change: transform;
  cursor: pointer;
  background: #e0e8f9;
  border-radius: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 8px 32px #0000001a;
}
.wcert-card img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: block;
}
.wcert-card:hover {
  box-shadow: 0 16px 48px #0936a326;
  z-index: 10 !important;
}
.wcert-far-left {
  z-index: 1;
  opacity: 0.85;
  width: 160px;
  height: 280px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-12deg);
}
.wcert-far-left:hover {
  transform: translateY(-55%) rotate(-8deg) scale(1.04);
}
.wcert-near-left {
  z-index: 2;
  opacity: 0.92;
  width: 250px;
  height: 380px;
  top: 50%;
  left: 130px;
  transform: translateY(-50%) rotate(-6deg);
}
.wcert-near-left:hover {
  transform: translateY(-55%) rotate(-3deg) scale(1.04);
}
.wcert-center {
  z-index: 5;
  opacity: 1;
  width: 300px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 40px #0936a32e;
}
.wcert-center:hover {
  transform: translate(-50%, -54%) scale(1.04);
}
.wcert-near-right {
  z-index: 2;
  opacity: 0.92;
  width: 250px;
  height: 380px;
  top: 50%;
  right: 130px;
  transform: translateY(-50%) rotate(6deg);
}
.wcert-near-right:hover {
  transform: translateY(-55%) rotate(3deg) scale(1.04);
}
.wcert-far-right {
  z-index: 1;
  opacity: 0.85;
  width: 160px;
  height: 280px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(12deg);
}
.wcert-far-right:hover {
  transform: translateY(-55%) rotate(8deg) scale(1.04);
}
.wcert-popup-overlay {
  z-index: 99999;
  background: #000000d1;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: 0.3s fadePopup;
  display: flex;
  position: fixed;
  inset: 0;
}
.wcert-popup-content {
  justify-content: center;
  align-items: center;
  animation: 0.3s zoomPopup;
  display: inline-flex;
  position: relative;
}
.wcert-popup-image {
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  max-width: min(90vw, 700px);
  max-height: 85vh;
  display: block;
  box-shadow: 0 20px 60px #0006;
  width: auto !important;
  height: auto !important;
}
.wcert-close-btn {
  color: #fff;
  cursor: pointer;
  z-index: 2;
  background: #0936a3;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 26px;
  line-height: 1;
  transition: transform 0.3s;
  display: flex;
  position: absolute;
  top: -14px;
  right: -14px;
}
.wcert-close-btn:hover {
  transform: rotate(90deg);
}
@keyframes fadePopup {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomPopup {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .wcert-section {
    padding: 60px 30px;
  }
  .wcert-header h2 {
    font-size: 34px;
  }
  .wcert-cards {
    max-width: 900px;
    height: 360px;
  }
  .wcert-far-left {
    width: 140px;
    height: 240px;
  }
  .wcert-near-left {
    width: 170px;
    height: 290px;
    left: 110px;
  }
  .wcert-center {
    width: 200px;
    height: 330px;
  }
  .wcert-near-right {
    width: 170px;
    height: 290px;
    right: 110px;
  }
  .wcert-far-right {
    width: 140px;
    height: 240px;
  }
  .wcert-popup-image {
    max-width: min(88vw, 600px);
    max-height: 82vh;
  }
}
@media (max-width: 768px) {
  .wcert-section {
    padding: 50px 20px;
  }
  .wcert-header h2 {
    font-size: 28px;
  }
  .wcert-header p {
    font-size: 13px;
  }
  .wcert-cards {
    max-width: 100%;
    height: 300px;
  }
  .wcert-far-left {
    width: 100px;
    height: 170px;
    left: 0;
    transform: translateY(-50%) rotate(-10deg);
  }
  .wcert-far-left:hover {
    transform: translateY(-55%) rotate(-7deg) scale(1.04);
  }
  .wcert-near-left {
    width: 145px;
    height: 230px;
    left: 68px;
    transform: translateY(-50%) rotate(-5deg);
  }
  .wcert-near-left:hover {
    transform: translateY(-55%) rotate(-3deg) scale(1.04);
  }
  .wcert-center {
    width: 175px;
    height: 270px;
  }
  .wcert-center:hover {
    transform: translate(-50%, -54%) scale(1.04);
  }
  .wcert-near-right {
    width: 145px;
    height: 230px;
    right: 68px;
    transform: translateY(-50%) rotate(5deg);
  }
  .wcert-near-right:hover {
    transform: translateY(-55%) rotate(3deg) scale(1.04);
  }
  .wcert-far-right {
    width: 100px;
    height: 170px;
    right: 0;
    transform: translateY(-50%) rotate(10deg);
  }
  .wcert-far-right:hover {
    transform: translateY(-55%) rotate(7deg) scale(1.04);
  }
  .wcert-popup-overlay {
    padding: 16px;
  }
  .wcert-popup-content {
    max-width: 94vw;
  }
  .wcert-popup-image {
    border-radius: 12px;
    max-width: 90vw;
    max-height: 80vh;
  }
  .wcert-close-btn {
    width: 34px;
    height: 34px;
    font-size: 20px;
    top: -12px;
    right: -12px;
  }
}
@media (max-width: 480px) {
  .wcert-section {
    padding: 40px 12px;
  }
  .wcert-header h2 {
    font-size: 24px;
  }
  .wcert-cards {
    height: 260px;
  }
  .wcert-far-left {
    width: 80px;
    height: 145px;
    left: 0;
    transform: translateY(-50%) rotate(-10deg);
  }
  .wcert-near-left {
    width: 118px;
    height: 200px;
    left: 52px;
    transform: translateY(-50%) rotate(-5deg);
  }
  .wcert-center {
    width: 148px;
    height: 235px;
  }
  .wcert-near-right {
    width: 118px;
    height: 200px;
    right: 52px;
    transform: translateY(-50%) rotate(5deg);
  }
  .wcert-far-right {
    width: 80px;
    height: 145px;
    right: 0;
    transform: translateY(-50%) rotate(10deg);
  }
}
@media (max-width: 360px) {
  .wcert-section {
    padding: 36px 10px;
  }
  .wcert-header h2 {
    font-size: 22px;
  }
  .wcert-header p {
    font-size: 12px;
    line-height: 1.5;
  }
  .wcert-cards {
    height: 240px;
  }
  .wcert-far-left {
    width: 70px;
    height: 130px;
    left: 0;
    transform: translateY(-50%) rotate(-10deg);
  }
  .wcert-near-left {
    width: 105px;
    height: 180px;
    left: 42px;
    transform: translateY(-50%) rotate(-5deg);
  }
  .wcert-center {
    width: 135px;
    height: 210px;
  }
  .wcert-near-right {
    width: 105px;
    height: 180px;
    right: 42px;
    transform: translateY(-50%) rotate(5deg);
  }
  .wcert-far-right {
    width: 70px;
    height: 130px;
    right: 0;
    transform: translateY(-50%) rotate(10deg);
  }
  .wcert-popup-image {
    border-radius: 10px;
    max-width: 92vw;
    max-height: 78vh;
  }
  .wcert-close-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
    top: -10px;
    right: -10px;
  }
}
.cv-section {
  box-sizing: border-box;
  background: #fff;
  padding: 80px 24px;
  font-family:
    Host Grotesk,
    sans-serif;
}
.cv-container {
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}
.cv-left {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 24px;
  overflow: hidden;
}
.cv-header {
  color: #fff;
  background: #0936a3;
  padding: 32px 36px;
}
.cv-header h2 {
  color: #fff;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  display: flex;
}
.cv-header-icon-inline {
  flex-shrink: 0;
  font-size: 22px;
}
.cv-header p {
  opacity: 0.9;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.cv-box {
  padding: 32px 36px 28px;
}
.cv-box-label {
  letter-spacing: 0.08em;
  color: #555;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
}
.cv-otp-wrapper {
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}
.cv-otp-group {
  flex-direction: column;
  gap: 8px;
  display: flex;
}
.cv-group-label {
  letter-spacing: 0.07em;
  color: #aaa;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.cv-otp-row {
  gap: 10px;
  display: flex;
}
.cv-otp-sep {
  color: #ccc;
  flex-shrink: 0;
  padding-bottom: 8px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.cv-otp-input {
  text-align: center;
  color: #0936a3;
  box-sizing: border-box;
  caret-color: #0936a3;
  background: #fff;
  border: 2px solid #0936a3;
  border-radius: 14px;
  outline: none;
  width: 68px;
  height: 68px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 28px;
  font-weight: 700;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.cv-otp-input::placeholder {
  color: #ddd;
  font-size: 18px;
}
.cv-otp-input:focus {
  border-color: #b90e0e;
  box-shadow: 0 0 0 4px #0936a31f;
}
.cv-otp-input.cv-otp-err {
  color: #0936a3;
  background: var(--cream);
  border-color: #0936a3;
}
.cv-otp-input.cv-otp-ok {
  color: #17a34a;
  background: #f0fdf4;
  border-color: #17a34a;
}
.cv-error-msg {
  color: #0936a3;
  background: var(--cream);
  border: 1px solid #fcc;
  border-radius: 10px;
  margin: 12px 0 0;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
}
.cv-btn-verify {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  margin-top: 22px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
}
.cv-btn-verify:hover:not(:disabled) {
  background: #c41818;
  transform: translateY(-1px);
}
.cv-btn-verify:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.cv-result {
  border-top: 1px solid #e8f5ec;
}
.cv-result-top {
  background: #e8f7ed;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 36px;
  display: flex;
}
.cv-check-icon {
  color: #17a34a;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 28px;
}
.cv-result-top h3 {
  color: #14532d;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
}
.cv-result-top p {
  color: #166534;
  margin: 0;
  font-size: 13px;
}
.cv-result-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px 36px 20px;
  display: grid;
}
.cv-result-cell {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 14px 16px;
}
.cv-cell-full {
  grid-column: span 1;
}
.cv-cell-label {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}
.cv-cell-label svg {
  color: #0936a3;
  font-size: 12px;
}
.cv-result-cell strong {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  display: block;
}
.cv-status-yes {
  color: #16a34a;
}
.cv-status-no {
  color: #0936a3;
}
.cv-internship-section {
  padding: 0 36px 24px;
}
.cv-internship-title {
  letter-spacing: 0.07em;
  color: #aaa;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
}
.cv-internship-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}
.cv-intern-date {
  grid-area: 2/1;
}
.cv-another-wrap {
  grid-area: 2/2;
  align-items: stretch;
  display: flex;
}
.cv-btn-another {
  color: #0936a3;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #0936a3;
  border-radius: 12px;
  justify-content: right;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 64px;
  padding: 14px 16px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}
.cv-btn-another:hover {
  color: #fff;
  background: #0936a3;
  transform: translateY(-1px);
}
.cv-btn-another svg {
  flex-shrink: 0;
  font-size: 16px;
}
.cv-right {
  flex-direction: column;
  gap: 20px;
  display: flex;
}
.cv-info-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 24px;
  padding: 28px 30px;
}
.cv-card-title-row {
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  display: flex;
}
.cv-card-title-icon {
  color: #0936a3;
  font-size: 18px;
}
.cv-info-card h3 {
  color: #111;
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}
.cv-steps {
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.cv-steps li {
  align-items: flex-start;
  gap: 14px;
  display: flex;
}
.cv-step-num {
  color: #fff;
  background: #0936a3;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}
.cv-steps li strong {
  color: #111;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  display: block;
}
.cv-steps li p {
  color: #666;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.cv-trust-list {
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.cv-trust-list li {
  color: #444;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
}
.cv-check-li {
  color: #17a34a;
  flex-shrink: 0;
  font-size: 15px;
}
@media (max-width: 1200px) {
  .cv-container {
    grid-template-columns: 1.4fr 1fr;
  }
}
@media (max-width: 992px) {
  .cv-section {
    padding: 64px 20px;
  }
  .cv-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .cv-section {
    padding: 50px 16px;
  }
  .cv-header {
    padding: 26px 24px;
  }
  .cv-header h2 {
    font-size: 20px;
  }
  .cv-box {
    padding: 26px 24px 22px;
  }
  .cv-otp-input {
    width: 58px;
    height: 60px;
    font-size: 24px;
  }
  .cv-result-top {
    padding: 18px 24px;
  }
  .cv-result-grid {
    gap: 12px;
    padding: 18px 24px 16px;
  }
  .cv-internship-section {
    padding: 0 24px 20px;
  }
  .cv-info-card {
    padding: 24px 22px;
  }
}
@media (max-width: 600px) {
  .cv-result-grid {
    grid-template-columns: 1fr;
  }
  .cv-cell-full {
    grid-column: span 1;
  }
  .cv-internship-grid {
    grid-template-columns: 1fr;
  }
  .cv-intern-date,
  .cv-another-wrap {
    grid-area: auto/1;
  }
  .cv-btn-another {
    min-height: 52px;
  }
}
@media (max-width: 480px) {
  .cv-section {
    padding: 40px 12px;
  }
  .cv-header {
    padding: 20px 18px;
  }
  .cv-header h2 {
    font-size: 17px;
  }
  .cv-box {
    padding: 22px 18px 18px;
  }
  .cv-otp-wrapper,
  .cv-otp-row {
    gap: 8px;
  }
  .cv-otp-input {
    border-radius: 12px;
    width: 52px;
    height: 54px;
    font-size: 22px;
  }
  .cv-otp-sep {
    font-size: 26px;
  }
  .cv-btn-verify {
    height: 50px;
    font-size: 15px;
  }
  .cv-result-top {
    padding: 16px 18px;
  }
  .cv-result-grid {
    gap: 10px;
    padding: 14px 18px;
  }
  .cv-internship-section {
    padding: 0 18px 18px;
  }
  .cv-info-card {
    border-radius: 18px;
    padding: 20px 16px;
  }
}
@media (max-width: 360px) {
  .cv-section {
    padding: 32px 10px;
  }
  .cv-header h2 {
    font-size: 15px;
  }
  .cv-header p {
    font-size: 12px;
  }
  .cv-otp-row {
    gap: 6px;
  }
  .cv-otp-input {
    border-radius: 10px;
    width: 46px;
    height: 48px;
    font-size: 18px;
  }
  .cv-otp-sep {
    font-size: 22px;
  }
  .cv-btn-verify {
    border-radius: 12px;
    height: 46px;
    font-size: 14px;
  }
  .cv-box-label {
    font-size: 11px;
  }
  .cv-result-cell strong {
    font-size: 13px;
  }
  .cv-cell-label {
    font-size: 10px;
  }
  .cv-info-card h3 {
    font-size: 15px;
  }
  .cv-steps li strong {
    font-size: 13px;
  }
  .cv-steps li p,
  .cv-trust-list li {
    font-size: 12px;
  }
}

/* Fix for Next.js image components inline opacity:0 */
.course-img {
  opacity: 1 !important;
}

/* ===== Common Overlay and Floating Buttons Styles ===== */
.floating-buttons {
  z-index: 999;
  flex-direction: column;
  gap: 14px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 18px;
}
.call-btn,
.whatsapp-btn {
  background: 0 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  transition: transform 0.3s;
  display: flex;
}
.call-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.08);
}
.call-btn img,
.whatsapp-btn img {
  object-fit: contain;
  width: 80%;
  height: 80%;
}
@media (max-width: 768px) {
  .floating-buttons {
    gap: 10px;
    bottom: 16px;
    right: 12px;
  }
  .call-btn,
  .whatsapp-btn {
    width: 54px;
    height: 54px;
  }
}

.popup-overlay {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
  background: #00000073;
  justify-content: center;
  align-items: center;
  font-family:
    Host Grotesk,
    sans-serif;
  display: flex;
  position: fixed;
  inset: 0;
}
.popup-box {
  background: #fff;
  border-radius: 18px;
  width: 380px;
  padding: 28px;
  animation: 0.3s popupAnim;
  position: relative;
  box-shadow: 0 20px 60px #00000026;
}
@keyframes popupAnim {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.close-btn {
  cursor: pointer;
  background: 0 0;
  border: none;
  font-size: 20px;
  position: absolute;
  top: 12px;
  right: 16px;
}
.popup-tag {
  color: #0936a3;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
}
.popup-title {
  font-size: 24px;
  font-weight: 700;
}
.popup-desc {
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
}
.popup-form {
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  display: flex;
}
.popup-input {
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 14px;
  transition: all 0.2s;
}
.popup-input:focus {
  border-color: #0936a3;
  box-shadow: 0 0 0 2px #0936a31a;
}
.submit-btn {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 12px;
  width: 100%;
  height: 50px;
  margin-top: 5px;
  font-weight: 600;
}
.submit-btn:hover {
  background: #c51616;
}
.popup-footer {
  text-align: center;
  color: #777;
  margin-top: 10px;
  font-size: 12px;
}
.custom-select {
  position: relative;
}
.select-box {
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family:
    Host Grotesk,
    sans-serif;
  display: flex;
}
.select-box:hover {
  border-color: #0936a3;
}
.select-box.error {
  background: var(--cream);
  border-color: #0936a3;
}
.select-dropdown {
  z-index: 1000;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-height: 220px;
  font-family:
    Host Grotesk,
    sans-serif;
  position: absolute;
  top: 55px;
  overflow-y: auto;
  box-shadow: 0 15px 40px #0000001f;
}
.select-option {
  cursor: pointer;
  padding: 12px 14px;
  font-size: 14px;
}
.select-option:hover {
  color: #0936a3;
  background: #f5f5f5;
}
.success-box {
  text-align: center;
  padding: 40px 25px;
  font-family:
    Host Grotesk,
    sans-serif;
}
.success-icon {
  color: #fff;
  background: #0936a3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  font-size: 32px;
  display: flex;
  box-shadow: 0 10px 25px #0936a34d;
}
.success-box h2 {
  color: #111;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
}
.success-box p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}
.success-btn {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 14px;
  transition: all 0.3s;
}
.success-btn:hover {
  background: #c41616;
  transform: translateY(-2px);
}
.error-text {
  color: #0936a3;
  margin-top: 4px;
  margin-bottom: 6px;
  font-family:
    Host Grotesk,
    sans-serif;
  font-size: 13px;
}
.select-dropdown::-webkit-scrollbar {
  width: 8px;
}
.select-dropdown::-webkit-scrollbar-track {
  background: #f3f3f3;
  border-radius: 10px;
}
.select-dropdown::-webkit-scrollbar-thumb {
  background: #0936a3;
  border-radius: 10px;
}
.select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #c51616;
}
.select-dropdown {
  scrollbar-width: thin;
  scrollbar-color: #0936a3 #f3f3f3;
}

.ty-overlay {
  z-index: 9999;
  background: #00000073;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}
.ty-box {
  text-align: center;
  background: #fff0f0;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  width: 300px;
  min-height: 302px;
  padding: 32px 24px 28px;
  display: flex;
  position: relative;
}
.ty-close {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
  box-shadow: 0 2px 8px #0000001f;
}
.ty-icon {
  margin-bottom: 16px;
}
.ty-circle {
  background: #e53935;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  box-shadow: 0 0 0 10px #ffcdd2;
}
.ty-circle svg {
  width: 40px;
  height: 40px;
}
.ty-title {
  color: #111;
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
}
.ty-title span {
  color: #e53935;
}
.ty-divider {
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  display: flex;
}
.ty-divider span {
  background: #ccc;
  border-radius: 2px;
  width: 40px;
  height: 2px;
  display: block;
}
.ty-heart {
  color: #e53935;
  font-size: 14px;
  background: 0 0 !important;
  width: auto !important;
  height: auto !important;
}
.ty-msg {
  color: #444;
  margin: 2px 0;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== Course Detail Page Specific Styles ===== */

.course-details .faq-sections {
  margin-top: 50px;
  padding: 0 20px;
  font-family: "Host Grotesk", sans-serif;
}

.course-details .faq-tag {
  color: #0936a3;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 12px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
}

.course-details .faq-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 1s infinite blink;
  position: static;
}

.course-details .faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.course-details .faq-header h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
}

.course-details .faq-header h2 span {
  color: #0936a3;
}

.course-details .faq-list {
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Host Grotesk", sans-serif;
  display: flex;
}

.course-details .faq-questions {
  cursor: pointer;
  background: var(--cream);
  border-radius: 12px;
  align-items: center;
  gap: 20px;
  min-height: 60px;
  padding: 18px 20px;
  font-family: "Host Grotesk", sans-serif;
  display: flex;
}

.course-details .faq-questions p {
  color: #111;
  flex: 1;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.course-details .faq-arrow {
  color: #111;
  flex-shrink: 0;
  font-size: 14px;
  transition: transform 0.3s;
}

.course-details .faq-arrow.rotate {
  transform: rotate(180deg);
}

.course-details .faq-answer {
  max-height: 0;
  transition: all 0.3s;
  overflow: hidden;
}

.course-details .faq-answer.show {
  max-height: 200px;
  padding: 10px 20px 10px;
  font-family: "Host Grotesk", sans-serif;
}

.course-curriculum {
  background: var(--cream);
  padding: 80px 20px;
  font-family: "Host Grotesk", sans-serif;
}

.curriculum-header {
  max-width: 1240px;
  margin: auto auto 40px;
}

.course-details .mini-tag {
  color: #0936a3;
  margin-bottom: 0;
  font-size: 13px;
}

.curriculum-header h2 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 45px;
  font-weight: 900;
}

.curriculum-header span {
  color: #0936a3;
}

.course-curriculum .desc {
  color: #666;
  width: 750px;
  margin-top: 0;
}

.curriculum-wrapper {
  align-items: stretch;
  gap: 40px;
  max-width: 1240px;
  margin: auto;
  display: flex;
}

.curriculum-left {
  flex: 1;
  min-width: 0;
}

.faq-questione {
  cursor: pointer;
  background: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 20px;
  height: 49px;
  margin-bottom: 17px;
  padding: 0 18px;
  display: flex;
}

.course-curriculum .number {
  color: #0936a3;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-size: 12px;
  display: flex;
}

.faq-questione p {
  flex: 1;
  font-size: 16px;
}

.faq-questione .icon {
  background: #f5f5f5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.curriculum-right {
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  flex-shrink: 0;
  width: 447px;
  display: flex;
  overflow: hidden;
}

.curriculum-right .tope {
  color: #fff;
  background: linear-gradient(135deg, #0936a3, #0936a3);
  height: 162px;
  padding: 20px;
  line-height: 0.8;
}

.curriculum-right .tope h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.curriculum-right .tope span {
  font-size: 13px;
  line-height: 1;
}

.curriculum-right .list {
  padding: 20px;
}

.curriculum-right .list p {
  margin-bottom: 10px;
  font-size: 14px;
}

.curriculum-right input,
.curriculum-right select {
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: calc(100% - 40px);
  height: 40px;
  margin: 10px 20px;
  padding: 0 15px;
  background-color: #fff;
  color: #111;
  font-family: "Host Grotesk", sans-serif;
  font-size: 14px;
}

.download-btn {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  width: calc(100% - 40px);
  height: 44px;
  margin: 10px 20px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 600;
  transition: all 0.3s;
}

.download-btn:hover {
  background: #275fdb;
}

.curriculum-right small {
  text-align: center;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

.curriculum-right .list-item {
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  display: flex;
}

.check-icon {
  color: #20b823;
  background: #dcfce7;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.curriculum-right .list-item p {
  color: #111;
  font-size: 14px;
}

.faq-answer-content ul {
  margin-left: 20px;
  padding-left: 15px;
  list-style: outside;
}

.faq-answer-content li {
  margin-bottom: 6px;
}

.course-details .contact-cta {
  text-align: center;
  background: linear-gradient(135deg, #0936a3, #0936a3);
  border-radius: 20px;
  max-width: 1240px;
  margin: 80px auto;
  padding: 50px 40px;
  font-family: "Host Grotesk", sans-serif;
}

.course-details .contact-cta h2 {
  color: #fff;
  word-break: break-word;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 800;
}

.course-details .contact-cta p {
  color: #ffffffd9;
  max-width: 750px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

.course-details .contact-cta button {
  color: #0936a3;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.course-details .contact-cta button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #00000026;
}

/* Hero Section Styles */
.course-heroo-section {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1240px;
  margin: auto;
  padding: 40px 0;
  font-family: "Host Grotesk", sans-serif;
  display: flex;
}

.course-heroo-left {
  flex: 1;
  max-width: 600px;
}

.course-breadcrumb {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

.course-breadcrumb a {
  color: #000;
  text-decoration: none;
}

.course-breadcrumb span {
  color: #0936a3;
}

.course-heroo-tag {
  color: #0936a3;
  background: var(--cream);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  padding: 6px 16px;
  font-size: 13px;
  display: inline-flex;
}

.course-heroo-tag:before {
  content: "";
  background: #0936a3;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 1s infinite blink;
}

.course-heroo-left h1 {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.2;
}

.course-heroo-left h1 span {
  color: #0936a3;
}

.course-heroo-desc {
  color: #666;
  margin-top: 17px;
  font-size: 15px;
  line-height: 1.6;
}

.course-heroo-badges {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.course-heroo-badges span {
  background: var(--cream);
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  display: flex;
}

.course-heroo-badges span i {
  background: var(--cream);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.course-heroo-badges .purple {
  color: #6d28d9;
  background: #f3e8ff;
}

.course-heroo-badges .purple i {
  background: #6d28d9;
}

.course-heroo-buttons {
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
  display: flex;
}

.course-primary-btn {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  width: 262px;
  height: 54px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
}

.course-primary-btn:hover {
  background: #275fdb;
  transform: translateY(-2px);
}

.course-secondarye-btn {
  color: #111;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  height: 55px;
  padding: 15px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
}

.course-secondarye-btn:hover {
  color: #0936a3;
  border-color: #0936a3;
}

.course-heroo-right {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 420px;
  display: flex;
  position: relative;
}

.course-hero-img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
  .course-details {
    font-family: "Host Grotesk", sans-serif;
  }
  .curriculum-header h2 {
    font-size: 38px;
  }
  .curriculum-right {
    width: 360px;
  }
  .course-details .contact-cta {
    margin: 60px 20px;
  }
  .course-details .faq-header h2 {
    font-size: 32px;
  }
  .course-heroo-section {
    gap: 30px;
    padding: 40px 4%;
  }
  .course-heroo-left h1 {
    font-size: 36px;
  }
  .course-heroo-right {
    width: 360px;
  }
  .course-hero-img {
    max-height: 320px;
  }
}

@media (min-width: 1020px) and (max-width: 1300px) {
  .curriculum-wrapper {
    gap: 24px;
  }
  .curriculum-right {
    width: 360px;
  }
  .course-details .faq-header {
    text-align: center;
  }
  .course-details .faq-tag {
    margin: 0 auto 12px;
  }
  .course-details .faq-header h2 {
    margin: 0;
    font-size: 34px;
  }
}

@media (min-width: 481px) and (max-width: 780px) {
  .course-details .faq-tag {
    margin-left: 0;
  }
  .course-details .faq-header h2 {
    text-align: center;
    margin-left: 0;
    font-size: 34px;
    line-height: 1.3;
  }
  .course-details .faq-list {
    max-width: 100%;
  }
  .course-details .faq-questions {
    padding: 16px;
  }
  .course-details .faq-questions p {
    font-size: 15px;
    line-height: 1.5;
  }
  .curriculum-header h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  .course-curriculum .desc {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
  }
  .course-heroo-section {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 30px 20px;
  }
  .course-heroo-left {
    width: 100%;
    max-width: 100%;
  }
  .course-heroo-left h1 {
    font-size: 34px;
    line-height: 1.3;
  }
  .course-heroo-desc {
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    max-width: 100%;
  }
  .course-heroo-right {
    width: 100%;
    max-width: 520px;
  }
  .course-hero-img {
    border-radius: 14px;
    max-height: 300px;
  }
  .course-heroo-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  p,
  h1,
  h2,
  h3,
  span {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .curriculum-wrapper {
    flex-direction: column;
  }
  .curriculum-right {
    width: 100%;
  }
  .curriculum-header h2 {
    font-size: 30px;
  }
  .course-details .faq-header h2 {
    font-size: 26px;
  }
  .course-details .faq-questions p {
    font-size: 14px;
  }
  .course-details .contact-cta {
    border-radius: 16px;
    margin: 40px 16px;
    padding: 40px 20px;
  }
  .course-details .contact-cta h2 {
    font-size: 24px;
  }
  .course-heroo-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 20px;
  }
  .course-heroo-left {
    max-width: 100%;
  }
  .course-heroo-left h1 {
    font-size: 30px;
  }
  .course-heroo-right {
    display: none;
  }
  .course-hero-img {
    border-radius: 14px;
    max-height: 280px;
  }
  .course-primary-btn {
    width: 100%;
  }
  .course-heroo-buttons {
    flex-direction: column;
  }
  .course-secondarye-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .course-curriculum {
    padding: 40px 14px;
  }
  .curriculum-header h2 {
    font-size: 22px;
  }
  .course-curriculum .desc {
    width: 100%;
    margin-top: 0;
    font-size: 13px;
  }
  .faq-questione {
    gap: 10px;
    height: auto;
    margin-bottom: 10px;
    padding: 10px 12px;
  }
  .faq-questione p {
    font-size: 13px;
  }
  .curriculum-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .curriculum-right {
    width: 100%;
  }
  .curriculum-right .tope {
    height: auto;
    padding: 16px;
  }
  .curriculum-right .list p {
    font-size: 13px;
  }
  .download-btn {
    height: 40px;
    font-size: 14px;
  }
  .course-details .faq-sections {
    padding: 20px 14px;
  }
  .course-details .faq-tag {
    margin-bottom: -10px;
    margin-left: 0;
  }
  .course-details .faq-header h2 {
    text-align: center;
    margin-left: 0;
    font-size: 24px;
  }
  .course-details .faq-list {
    gap: 10px;
  }
  .course-details .faq-questions {
    border-radius: 10px;
    gap: 10px;
    min-height: auto;
    padding: 12px 14px;
  }
  .course-details .faq-questions p {
    font-size: 13px;
    line-height: 1.4;
  }
  .course-details .faq-arrow {
    font-size: 12px;
  }
  .course-details .contact-cta {
    border-radius: 14px;
    margin: 30px 10px;
    padding: 30px 16px;
  }
  .course-details .contact-cta h2 {
    font-size: 18px;
  }
  .course-details .contact-cta p {
    font-size: 13px;
  }
  .course-details .contact-cta button {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
  .course-heroo-section {
    flex-direction: column;
    gap: 16px;
    padding: 20px 15px;
    overflow: hidden;
  }
  .course-heroo-left {
    max-width: 100%;
  }
  .course-heroo-left h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  .course-heroo-desc {
    font-size: 13px;
    line-height: 1.5;
  }
  .course-heroo-badges {
    gap: 6px;
  }
  .course-heroo-badges span {
    padding: 4px 10px;
    font-size: 11px;
  }
  .course-heroo-buttons {
    gap: 10px;
    margin-top: 15px;
  }
  .course-primary-btn,
  .course-secondarye-btn {
    width: 100%;
    height: 46px;
    font-size: 14px;
  }
  .course-heroo-right {
    display: none;
  }
  .course-hero-img {
    object-fit: cover;
    border-radius: 12px;
    max-height: 200px;
  }
}

@media (max-width: 360px) {
  .curriculum-header h2 {
    font-size: 20px;
  }
  .course-details .contact-cta h2 {
    font-size: 16px;
  }
  .course-details .faq-questions p {
    font-size: 12px;
  }
  .course-details .faq-header h2 {
    font-size: 20px;
  }
  .course-heroo-left h1 {
    font-size: 20px;
  }
  .course-hero-img {
    max-height: 160px;
  }
}

/* === Inline styles moved from index.html === */
.curriculum-highlight {
  color: var(--red);
}

.campus-video-bg {
  background: url("assets/campus.webp") center/cover no-repeat;
}

.z-index-1 {
  z-index: 1;
}

.gr-logo-text {
  font-size: 22px;
}

.cursor-pointer {
  cursor: pointer;
}

.course-img-graphic-design {
  background: url("assets/graphic-designer.16mx49_xc48zr.webp") center/cover
    no-repeat;
}

.course-img-video-editing {
  background: url("assets/video-editing.12moz6j122.~u.webp") center/cover
    no-repeat;
}

.course-img-tally {
  background: url("assets/telly.0icsx1m~qv1xh.webp") center/cover no-repeat;
}

.faq-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-cat-icon {
  width: 20px;
  height: 20px;
}

.visibility-hidden {
  visibility: hidden;
}

#video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-video-container {
  width: 100%;
  height: 100%;
}

/* ===== Blog Detail Page Styles ===== */
.bd-wrapper {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px;
  font-family: "Host Grotesk", "Segoe UI", Arial, sans-serif;
}
.bd-breadcrumb {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bd-breadcrumb a {
  color: var(--gray);
  transition: color 0.2s;
}
.bd-breadcrumb a:hover {
  color: var(--red);
}
.bd-breadcrumb .bd-active {
  color: var(--black);
  font-weight: 600;
}
.bd-container {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 40px;
}
.bd-main {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.bd-category-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 16px;
}
.bd-main h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--black);
}
.bd-meta {
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 500;
}
.bd-hero-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
.bd-hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.bd-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.bd-content p {
  margin-bottom: 20px;
}
.bd-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 36px 0 16px;
  color: var(--black);
  line-height: 1.3;
}
.bd-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--black);
}
.bd-content ul {
  margin: 0 0 24px 20px;
  list-style-type: disc;
}
.bd-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.bd-content a.blog-course-link {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}
.bd-content a.blog-course-link:hover {
  color: var(--red);
  opacity: 0.85;
}
.bd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.bd-sidebar-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}
.bd-sidebar-box h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 10px;
  color: var(--black);
}
.bd-sidebar-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bd-sidebar-box li a {
  font-size: 14.5px;
  font-weight: 600;
  color: #444;
  transition: color 0.2s;
  display: block;
}
.bd-sidebar-box li a:hover {
  color: var(--red);
}
.bd-recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.bd-recent-post:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bd-recent-post img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}
.bd-recent-post p {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
  margin: 0;
  flex: 1;
  transition: color 0.2s;
}
.bd-recent-post:hover p {
  color: var(--red);
}
.bd-ctaa {
  background: linear-gradient(135deg, #0936a3 0%, #275fdb 100%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}
.bd-ctaa h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
.bd-ctaa p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
  color: #fff;
}
.bd-ctaa button {
  background: #fff;
  color: var(--red);
  border: none;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.bd-ctaa button:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .bd-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .bd-main h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .bd-wrapper {
    margin: 20px auto 40px;
  }
  .bd-main h1 {
    font-size: 24px;
  }
  .bd-content {
    font-size: 15px;
  }
  .bd-ctaa {
    padding: 30px 20px;
  }
  .bd-ctaa h3 {
    font-size: 22px;
  }
}

/* Consultation Popup Modal Styles */
.consultation-overlay {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
  animation: fadeIn 0.3s ease;
}
.consultation-box {
  background: #fff;
  border-radius: 24px;
  width: 420px;
  max-width: 90%;
  padding: 35px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  border-top: 8px solid #0936a3;
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Host Grotesk", sans-serif;
}
.consultation-close {
  cursor: pointer;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all 0.2s ease;
  color: #333;
}
.consultation-close:hover {
  background: #e53935;
  color: #fff;
}
.consultation-title {
  color: #111;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
}
.consultation-title span {
  color: #0936a3;
}
.consultation-subtitle {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}
.consultation-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.consultation-form-wrapper input,
.consultation-form-wrapper select {
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  background-color: #fff;
  color: #111;
  font-family: "Host Grotesk", sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.consultation-form-wrapper input:focus,
.consultation-form-wrapper select:focus {
  border-color: #0936a3;
  outline: none;
}
.consultation-form-wrapper button {
  color: #fff;
  cursor: pointer;
  background: #0936a3;
  border: none;
  border-radius: 10px;
  /* width: 100%; */
  height: 48px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}
.consultation-form-wrapper button:hover {
  background: #275fdb;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   Who Benefits Section & Hire Developer Section (Static Mockups)
   ========================================================================== */

.who-benefits-section {
  background-color: #f8fafc;
  padding: 80px 20px;
  font-family: "Host Grotesk", sans-serif;
}

.who-benefits-container {
  max-width: 1240px;
  margin: 0 auto;
}

.who-benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.who-benefits-tag {
  background-color: #fef3c7;
  color: #d97706;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 15px;
}

.who-benefits-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.who-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.08),
    0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border-color: #3b82f6;
}

.benefit-card.active {
  border: 2px solid #3b82f6;
  box-shadow:
    0 10px 15px -3px rgba(59, 130, 246, 0.08),
    0 4px 6px -2px rgba(59, 130, 246, 0.04);
}

.use-case-num {
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
}

.benefit-card.active .use-case-num {
  color: #2563eb;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Hire Developer Section */
.hire-developer-section {
  background: #eef4fc;
  padding: 80px 20px;
  font-family: "Host Grotesk", sans-serif;
  overflow: hidden;
}

.hire-developer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hire-developer-left {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.developer-showcase-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.developer-showcase-img:hover {
  transform: scale(1.03);
}

.hire-developer-right {
  flex: 1.2;
}

.hire-developer-tag {
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.hire-developer-right h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.hire-developer-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin: 0;
}

/* Responsiveness for new sections */
@media (max-width: 1024px) {
  .who-benefits-header h2 {
    font-size: 32px;
  }
  .who-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hire-developer-container {
    gap: 40px;
  }
  .hire-developer-right h2 {
    font-size: 32px;
  }
  .hire-developer-right p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .who-benefits-section,
  .hire-developer-section {
    padding: 60px 20px;
  }
  .who-benefits-header h2 {
    font-size: 26px;
  }
  .who-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hire-developer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hire-developer-left {
    max-width: 100%;
  }
  .developer-showcase-img {
    max-width: 320px;
  }
  .hire-developer-right h2 {
    font-size: 26px;
  }
  .hire-developer-right p {
    text-align: justify;
    text-align-last: center;
  }
}

.footer-logo {
  background: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

/* Custom Premium Toast Notification System */
#dc-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  width: calc(100% - 48px);
  pointer-events: none;
}

@media (max-width: 576px) {
  #dc-toast-container {
    top: 16px;
    right: 50%;
    transform: translateX(50%);
    max-width: 90%;
  }
}

.dc-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.98);
  border-left: 5px solid #0936a3;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  color: #2d3748;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

.dc-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dc-toast.hide {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.2s ease-in;
}

.dc-toast.success {
  border-left-color: #22c55e;
}

.dc-toast.error {
  border-left-color: #ef4444;
}

.dc-toast.info {
  border-left-color: #3b82f6;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.dc-toast.success .toast-icon {
  color: #22c55e;
}

.dc-toast.error .toast-icon {
  color: #ef4444;
}

.dc-toast.info .toast-icon {
  color: #3b82f6;
}

.toast-message {
  flex-grow: 1;
}

.toast-close {
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin-left: 16px;
  line-height: 1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  color: #4a5568;
}
