@charset "UTF-8";
/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #475569; }

p, .paragraph {
  font-weight: 400;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif; }

h1, h2, h3, h4, h5, h6 {
  color: #111827;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2; }

h1, .h1 {
  font-size: 60px; }
  @media (max-width: 575px) {
    h1, .h1 {
      font-size: 45px; } }
h2, .h2 {
  font-size: 40px; }
  @media (max-width: 575px) {
    h2, .h2 {
      font-size: 30px; } }
h3, .h3 {
  font-size: 25px; }
  @media (max-width: 575px) {
    h3, .h3 {
      font-size: 20px; } }
h4, .h4 {
  font-size: 20px; }
  @media (max-width: 575px) {
    h4, .h4 {
      font-size: 18px; } }
h5, .h5 {
  font-size: 18px; }
  @media (max-width: 575px) {
    h5, .h5 {
      font-size: 16px; } }
h6, .h6 {
  font-size: 16px; }
  @media (max-width: 575px) {
    h6, .h6 {
      font-size: 14px; } }
/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
  white-space: nowrap; }
  .btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: transform .2s ease-in-out;
    transform-origin: top;
    transform: scaleY(0); }
  .btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
    outline: 0;
    box-shadow: none !important; }
    .btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
      transform: scaleY(1);
      transform-origin: bottom; }

.btn-sm {
  font-size: 14px;
  padding: 10px 35px; }

.btn-xs {
  font-size: 12px;
  padding: 5px 15px; }

.btn-primary {
  color: #fff;
  background-color: #4147F4; }
  .btn-primary::before {
    background-color: #fff; }
  .btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
    color: #4147F4 !important;
    background-color: #1118f1 !important;
    border-color: #1118f1 !important; }

.btn-outline-primary {
  color: #4147F4;
  background-color: transparent;
  border: 1px solid #4147F4; }
  .btn-outline-primary::before {
    background-color: #fff; }
  .btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
    color: #4147F4 !important;
    background-color: #4147F4 !important;
    border-color: #4147F4 !important; }

.btn-light {
  color: #4147F4;
  background-color: #fff;
  border: 1px solid #fff; }
  .btn-light::before {
    background-color: #4147F4; }
  .btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
    color: #fff !important;
    background-color: #fff !important;
    border: 1px solid #fff !important; }

body {
  background-color: #FFFFFF;
  overflow-x: hidden; }

::selection {
  background: #7176f7;
  color: #fff; }

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFDC11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center; }

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

img {
  vertical-align: middle;
  border: 0; }

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

a {
  color: inherit; }

a,
button,
select {
  cursor: pointer;
  transition: .2s ease; }
  a:focus,
  button:focus,
  select:focus {
    outline: 0; }

a:hover {
  color: #4147F4; }

a.text-primary:hover {
  color: #4147F4 !important; }

a.text-light:hover {
  color: #4147F4 !important; }

h4 {
  transition: .2s ease; }

a h4:hover {
  color: #4147F4; }

.slick-slide {
  outline: 0; }

.section {
  padding-top: 90px;
  padding-bottom: 90px; }
  .section-sm {
    padding-top: 40px;
    padding-bottom: 40px; }
  .section-title {
    margin-bottom: 30px; }

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.border-primary {
  border-color: #E5E7EB !important; }

/* overlay */
.overlay {
  position: relative; }
  .overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #070817;
    opacity: .8; }

.outline-0 {
  outline: 0 !important; }

.d-unset {
  display: unset !important; }

.bg-primary {
  background: #4147F4 !important; }

.bg-secondary {
  background: #070817 !important; }

.bg-gray {
  background: #F3F4F6; }

.text-primary {
  color: #4147F4 !important; }

.text-color {
  color: #475569; }

.text-light {
  color: #64748B !important; }

.text-lighten {
  color: #d6d6e0 !important; }

.text-muted {
  color: #b5b5b7 !important; }

.text-dark {
  color: #111827 !important; }

.font-secondary {
  font-family: "Montserrat", sans-serif; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-60 {
  margin-bottom: 60px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-80 {
  margin-bottom: 80px !important; }

.mb-90 {
  margin-bottom: 90px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.pl-150 {
  padding-left: 150px; }

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

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden; } }

.vertical-align-middle {
  vertical-align: middle; }

.icon-md {
  font-size: 36px; }

/* page title */
.page-title-section {
  padding: 200px 0 80px; }

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px; }
  .custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    transform: translateY(-50%); }

/* /page title */
.list-styled {
  padding-left: 25px; }
  .list-styled li {
    position: relative;
    margin-bottom: 15px; }
    .list-styled li::before {
      position: absolute;
      content: "";
      height: 10px;
      width: 10px;
      border-radius: 50%;
      background: #4147F4;
      left: -25px;
      top: 5px; }

textarea.form-control {
  height: 200px;
  padding: 20px; }

#map_canvas {
  height: 500px; }

.post-thumb-sm {
  max-width: 100px;
  max-height: 100px;
  object-fit: cover; }

/* pagination */
.pagination {
  justify-content: center; }
  .pagination .page-item {
    margin: 0 10px; }
    .pagination .page-item.active .page-link {
      background: #4147F4;
      color: #fff;
      border-color: #4147F4; }
    .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
      border-radius: 0; }
    .pagination .page-item .page-link {
      color: #475569; }

.content * {
  margin-bottom: 20px; }

.content a {
  text-decoration: underline; }

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-bottom: 10px; }

.content ol {
  padding-left: 20px; }

.content ul {
  padding-left: 0; }
  .content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    list-style-type: none; }
    .content ul li::before {
      position: absolute;
      content: "\e65d";
      font-family: "themify";
      font-size: 14px;
      left: 0;
      top: 1px;
      color: #4147F4;
      transition: .3s ease; }

.content table {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6; }
  .content table th,
  .content table td {
    padding: .75rem;
    vertical-align: top;
    border: 1px solid #dee2e6; }
  .content table thead {
    background: #f1f5f9; }
  .content table tbody {
    background: #F8FAFC; }
    .content table tbody td {
      text-align: left !important; }

.content blockquote p {
  margin-bottom: 0;
  color: #475569;
  font-style: italic !important; }

.content pre {
  padding: 10px 20px;
  background: #F8FAFC; }

.teacher-thumb-sm {
  height: 85px;
  width: 85px;
  object-fit: cover; }

.top-header {
  font-size: 12px;
  transition: transform .2s ease;
  transform-origin: top;
  font-weight: 600; }
  .top-header.hide {
    transform: scaleY(0);
    transform-origin: top; }

.navigation {
  background: linear-gradient(to right, transparent 50%, #4147F4 50%);
  transition: .2s ease; }
  @media (max-width: 991px) {
    .navigation {
      background: #070817; }
      .navigation .navbar-brand {
        padding: 12px 0; } }
@media (max-width: 991px) {
  .navbar-collapse {
    background: #070817; } }

.navbar-nav {
  padding-left: 50px;
  background: #4147F4; }
  @media (max-width: 991px) {
    .navbar-nav {
      padding-left: 0;
      background: #070817; } }
.nav-bg {
  background-color: #070817; }

.nav-item {
  margin: 0 15px;
  position: relative; }
  .nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 600; }
  .nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease; }
  .nav-item:hover::before, .nav-item.active::before {
    transform: scaleY(1);
    transform-origin: bottom; }

.navbar-dark .navbar-nav .nav-link {
  color: #fff; }

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff; }

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff; }

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px; }
  @media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 20px; } }
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d; }

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0); }

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #4147F4;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff; }
  @media (max-width: 991px) {
    .navbar .dropdown-menu {
      display: none;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transform-origin: unset; } }
  .navbar .dropdown-menu.show {
    visibility: hidden; }
    @media (max-width: 991px) {
      .navbar .dropdown-menu.show {
        visibility: visible;
        display: block; } }
.navbar .dropdown-item {
  position: relative;
  color: #111827;
  transition: .2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif; }
  @media (max-width: 991px) {
    .navbar .dropdown-item {
      text-align: center; } }
  .navbar .dropdown-item:not(:last-child) {
    margin-bottom: 10px; }
  .navbar .dropdown-item:hover {
    color: #4147F4;
    background: transparent; }

.hero-section {
  padding: 250px 0 290px; }

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent; }
  .hero-slider .prevArrow:focus,
  .hero-slider .nextArrow:focus {
    outline: 0; }
  .hero-slider .prevArrow:hover,
  .hero-slider .nextArrow:hover {
    color: #4147F4; }

.hero-slider .prevArrow {
  right: 60px; }

.hero-slider .nextArrow {
  right: 0; }

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0; }
  .hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px; }
    .hero-slider .slick-dots li.slick-active button {
      background: #4147F4; }
    .hero-slider .slick-dots li button {
      color: transparent;
      padding: 0;
      overflow: hidden;
      height: 10px;
      width: 10px;
      background: rgba(255, 255, 255, 0.5);
      border: 0;
      outline: 0; }

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #4147F4;
  display: inline-block; }

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%; }
  @media (max-width: 1400px) {
    .feature-blocks {
      padding-right: 10%; } }
  @media (max-width: 1200px) {
    .feature-blocks {
      padding-right: 50px;
      padding-left: 50px;
      padding-top: 30px; }
      .feature-blocks h3 {
        font-size: 20px; } }
  @media (max-width: 991px) {
    .feature-blocks {
      margin-top: 0;
      padding: 50px; }
      .feature-blocks h3 {
        font-size: 25px; } }
/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px; }

.flex-basis-33 {
  flex-basis: 33.3333%; }

.hover-shadow {
  transition: .3s ease; }
  .hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15); }

/* /course */
/* success story */
.success-video {
  min-height: 300px; }
  .success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
    @media (max-width: 767px) {
      .success-video .play-btn {
        left: 50%;
        transform: translate(-50%, -50%); } }
.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #4147F4;
  color: #fff;
  font-size: 20px;
  text-align: center; }
  .play-btn i {
    line-height: 80px; }
  .play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: .3s ease;
    transition-delay: .2s; }
  .play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    transform: translate(-50%, -50%);
    background: #4147F4;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: .3s ease; }
  .play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s; }
  .play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease; }

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #4147F4;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase; }
  .card-date span {
    font-size: 40px; }

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0; }

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #4147F4 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1; }
  .newsletter-block {
    padding-left: 50px; }
    @media (max-width: 575px) {
      .newsletter-block {
        padding-left: 15px; } }
.input-wrapper {
  position: relative; }
  .input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%); }
    @media (max-width: 575px) {
      .input-wrapper button {
        position: static;
        transform: translateY(-10px);
        width: 100%;
        outline: 5px solid #fff;
        outline-offset: -5px; } }
.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px; }
  .form-control:focus {
    border-color: #4147F4;
    box-shadow: none; }

.newsletter-block .form-control {
  height: 80px;
  padding-right: 160px; }
  @media (max-width: 575px) {
    .newsletter-block .form-control {
      padding-right: 25px; } }
.bg-footer {
  background-color: #182b45; }

.logo-footer {
  margin-top: -20px;
  display: inline-block; }

.footer {
  border-color: #494a43 !important;
  padding-top: 275px;
  color: #8996a7; }
  .footer a {
    color: #8996a7;
    text-transform: capitalize; }
    .footer a:hover {
      text-decoration: underline;
      color: #fff; }

.copyright p {
  color: #8996a7;
  text-transform: capitalize; }

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease; }
  .filter-controls li.active {
    font-weight: 600;
    color: #4147F4; }
  .filter-controls li:hover {
    color: #4147F4; }

.tag-list a {
  display: block;
  padding: 5px 10px;
  background: #F8FAFC;
  color: #475569; }
  .tag-list a:hover {
    background-color: #4147F4;
    color: #fff; }

.media a:hover h5 {
  color: #4147F4;
  transition: 0.3s; }

/* Azania Secondary School - reference blue/white/dark design */
body {
  background: #ffffff;
  color: #111827; }

/* Header / navbar like reference video */
.top-header {
  background: #ffffff !important;
  border-bottom: 1px solid #EEF2FF; }

.top-header a,
.top-header span,
.top-header strong {
  color: #111827 !important; }

.navigation,
.navbar,
.navbar-dark {
  background: #ffffff !important; }

.navigation {
  box-shadow: 0 8px 24px rgba(65, 71, 244, 0.1);
  border-bottom: 1px solid #EEF2FF; }

.navbar .nav-link {
  color: #111827 !important;
  font-weight: 700;
  letter-spacing: 0.2px; }

.navbar .nav-link:hover,
.navbar .nav-item.active .nav-link {
  color: #4147F4 !important; }

.dropdown-menu {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12); }

.dropdown-item:hover {
  background: #EEF2FF;
  color: #4147F4 !important; }

/* Logo */
.navbar-brand img {
  max-height: 74px;
  width: auto; }

.logo-footer img {
  max-height: 90px;
  width: auto; }

/* Hero: clean, light, blue emphasis */
.hero-section,
.hero-slider {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.88) 46%, rgba(238, 242, 255, 0.78) 100%), url("/images/banner/banner-1.jpg") center center/cover no-repeat !important; }

.hero-slider .slick-slide {
  background-color: transparent !important; }

.hero-slider h1,
.hero-section h1 {
  color: #111827 !important;
  text-shadow: none !important;
  max-width: 840px; }

.hero-slider p,
.hero-section p {
  color: #475569 !important;
  max-width: 760px;
  font-weight: 500; }

/* Buttons */
.btn-primary,
.bg-primary {
  background: #4147F4 !important;
  border-color: #4147F4 !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(65, 71, 244, 0.22); }

.btn-primary:hover {
  background: #3037D8 !important;
  border-color: #3037D8 !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(65, 71, 244, 0.32); }

.btn-outline-primary {
  color: #4147F4 !important;
  border-color: #4147F4 !important;
  border-radius: 999px; }

.btn-outline-primary:hover {
  background: #4147F4 !important;
  color: #ffffff !important; }

/* Sections */
.section {
  background: #ffffff; }

.banner-feature {
  background: #F8FAFC !important; }

.section.bg-primary,
section.bg-primary {
  background: #EEF2FF !important;
  color: #111827 !important; }

.section.bg-primary h1,
.section.bg-primary h2,
.section.bg-primary h3,
.section.bg-primary h4,
.section.bg-primary p,
section.bg-primary h1,
section.bg-primary h2,
section.bg-primary h3,
section.bg-primary h4,
section.bg-primary p {
  color: #111827 !important; }

/* Icons and small accents */
.text-primary,
a.text-primary:hover,
.feature-icon,
.card i,
.ti-book,
.ti-blackboard,
.ti-agenda,
.ti-write {
  color: #4147F4 !important; }

.border-primary {
  border-color: #4147F4 !important; }

/* Cards: modern white cards */
.card,
.hover-shadow {
  background: #ffffff !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 18px !important;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }

.card:hover,
.hover-shadow:hover {
  transform: translateY(-5px);
  border-color: rgba(65, 71, 244, 0.3) !important;
  box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12) !important; }

.card-body {
  background: #ffffff;
  position: relative;
  z-index: 2; }

.card-title,
.card-title a {
  color: #111827 !important; }

.card-title a:hover {
  color: #4147F4 !important; }

/* Page title */
.page-title-section,
.page-title {
  background: linear-gradient(90deg, rgba(65, 71, 244, 0.88), rgba(99, 102, 241, 0.62)), url("/images/backgrounds/page-title.jpg") center center/cover no-repeat !important; }

.page-title-section h1,
.page-title h1 {
  color: #ffffff !important; }

/* Events date badge fix */
.card-img {
  position: relative;
  overflow: hidden; }

.card-date {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 20 !important;
  min-width: 76px;
  max-width: 88px;
  padding: 10px 8px !important;
  border-radius: 16px !important;
  background: #4147F4 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(65, 71, 244, 0.3);
  text-align: center; }

.card-date span,
.card-date h3,
.card-date p {
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.15; }

.card-date span {
  font-size: 26px !important;
  font-weight: 800; }

.event .card-body,
section .card-body {
  padding-top: 24px; }

/* Section title accent */
.section-title {
  position: relative; }

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  margin-top: 14px;
  background: #4147F4; }

/* Footer like reference video */
.bg-footer,
.copyright {
  background: #070817 !important; }

.bg-footer,
.bg-footer p,
.bg-footer li,
.bg-footer a,
.copyright,
.copyright p,
.copyright a {
  color: rgba(255, 255, 255, 0.88) !important; }

.bg-footer h4 {
  color: #ffffff !important; }

.bg-footer a:hover,
.copyright a:hover {
  color: #818CF8 !important; }

/* Blue footer contact card */
.azania-footer-contact-card {
  background: #4147F4;
  border-radius: 18px;
  padding: 28px 34px;
  margin-bottom: 60px;
  box-shadow: 0 24px 50px rgba(65, 71, 244, 0.26); }

.azania-footer-contact-card,
.azania-footer-contact-card p,
.azania-footer-contact-card a,
.azania-footer-contact-card strong {
  color: #ffffff !important; }

.azania-contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 999px;
  background: #ffffff;
  color: #4147F4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 22px; }

.azania-footer-contact-item {
  display: flex;
  align-items: center;
  padding: 10px 0; }

/* ===== AZANIA JS POLISH STYLES START ===== */
/* Navbar scroll polish */
.navigation {
  transition: box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease; }

.navigation.azania-nav-scrolled {
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14) !important; }

/* Scroll reveal animations */
.azania-js-ready .azania-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease, border-color 0.25s ease; }

.azania-js-ready .azania-reveal.azania-reveal-visible {
  opacity: 1;
  transform: translateY(0); }

/* Hero entrance */
.azania-hero-animate {
  animation: azaniaHeroIn 0.75s ease both; }

@keyframes azaniaHeroIn {
  from {
    opacity: 0;
    transform: translateY(22px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

/* Back to top button */
.azania-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #4147F4;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  z-index: 9999;
  box-shadow: 0 16px 36px rgba(65, 71, 244, 0.28); }

.azania-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

.azania-back-to-top:hover {
  background: #3037D8; }

/* More attractive card image behavior */
.card img {
  transition: transform 0.35s ease; }

.card:hover img {
  transform: scale(1.04); }

/* Softer mobile animation */
@media (max-width: 767px) {
  .azania-js-ready .azania-reveal {
    transform: translateY(14px); }
  .azania-back-to-top {
    right: 16px;
    bottom: 18px;
    width: 44px;
    height: 44px; } }

/* Respect accessibility settings */
@media (prefers-reduced-motion: reduce) {
  .azania-reveal,
  .azania-hero-animate,
  .card img,
  .azania-back-to-top,
  .navigation {
    animation: none !important;
    transition: none !important;
    transform: none !important; } }

/* ===== AZANIA JS POLISH STYLES END ===== */
/* ===== AZANIA EXTRA EXPERIENCE STYLES START ===== */
/* Page fade */
body {
  opacity: 0;
  transition: opacity 0.35s ease; }

body.azania-page-loaded {
  opacity: 1; }

/* Reading progress */
.azania-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #4147F4, #0EA5E9);
  z-index: 10000;
  box-shadow: 0 6px 16px rgba(65, 71, 244, 0.25); }

/* Active menu */
.navbar .azania-active-link {
  color: #4147F4 !important; }

.navbar .azania-active-link::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  margin-top: 5px;
  border-radius: 999px;
  background: #4147F4; }

/* Button ripple */
.btn {
  position: relative;
  overflow: hidden; }

.azania-ripple {
  position: absolute;
  border-radius: 999px;
  transform: scale(0);
  animation: azaniaRipple 0.65s ease-out;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none; }

@keyframes azaniaRipple {
  to {
    transform: scale(2.8);
    opacity: 0; } }

/* Card tilt */
.azania-tilt-card {
  transform-style: preserve-3d;
  will-change: transform; }

/* Floating quick links */
.azania-quick-links {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 9998; }

.azania-quick-toggle {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: #4147F4;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(65, 71, 244, 0.3);
  transition: transform 0.25s ease, background 0.25s ease; }

.azania-quick-links.is-open .azania-quick-toggle {
  transform: rotate(45deg);
  background: #3037D8; }

.azania-quick-menu {
  position: absolute;
  left: 0;
  bottom: 68px;
  width: 190px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease; }

.azania-quick-links.is-open .azania-quick-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

.azania-quick-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #111827;
  font-weight: 700;
  text-decoration: none; }

.azania-quick-menu a:hover {
  background: #EEF2FF;
  color: #4147F4; }

/* Avoid conflict with back-to-top button on small screens */
@media (max-width: 767px) {
  .azania-quick-links {
    left: 16px;
    bottom: 18px; }
  .azania-quick-toggle {
    width: 48px;
    height: 48px;
    font-size: 28px; }
  .azania-quick-menu {
    width: 170px; } }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body,
  .azania-reading-progress,
  .azania-quick-toggle,
  .azania-quick-menu,
  .azania-ripple,
  .azania-tilt-card {
    transition: none !important;
    animation: none !important;
    transform: none !important; } }

/* ===== AZANIA EXTRA EXPERIENCE STYLES END ===== */
/* ===== AZANIA ASSISTANT STYLES START ===== */
.azania-quick-links {
  display: none !important; }

.azania-assistant {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 10001;
  font-family: inherit; }

.azania-assistant-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  height: 58px;
  padding: 0 18px 0 12px;
  border: 0;
  border-radius: 999px;
  background: #4147F4;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(65, 71, 244, 0.34);
  transition: transform 0.25s ease, background 0.25s ease; }

.azania-assistant-toggle:hover {
  transform: translateY(-3px);
  background: #3037D8; }

.azania-assistant-icon {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 999px;
  background: #ffffff;
  color: #4147F4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.5px; }

.azania-assistant-label {
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap; }

.azania-assistant-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.22);
  animation: azaniaAssistantPulse 1.8s infinite; }

@keyframes azaniaAssistantPulse {
  0% {
    transform: scale(0.86);
    opacity: 0.8; }
  70% {
    transform: scale(1.2);
    opacity: 0; }
  100% {
    opacity: 0; } }

.azania-assistant-hint {
  position: absolute;
  left: 0;
  bottom: 74px;
  width: 190px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease; }

.azania-assistant.show-hint:not(.hint-hidden) .azania-assistant-hint {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

.azania-assistant-hint strong {
  display: block;
  color: #111827;
  font-size: 14px; }

.azania-assistant-hint span {
  display: block;
  color: #4147F4;
  font-weight: 800;
  font-size: 13px;
  margin-top: 2px; }

.azania-assistant-panel {
  position: absolute;
  left: 0;
  bottom: 78px;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom left;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease; }

.azania-assistant.is-open .azania-assistant-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1); }

.azania-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  background: linear-gradient(135deg, #4147F4 0%, #6366F1 100%);
  color: #ffffff; }

.azania-assistant-header strong {
  display: block;
  font-size: 18px;
  color: #ffffff; }

.azania-assistant-header small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.84); }

.azania-assistant-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer; }

.azania-assistant-messages {
  height: 270px;
  overflow-y: auto;
  padding: 18px;
  background: #F8FAFC; }

.azania-bot-message,
.azania-user-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5; }

.azania-bot-message {
  background: #ffffff;
  color: #111827;
  border: 1px solid #E5E7EB;
  border-bottom-left-radius: 6px; }

.azania-user-message {
  margin-left: auto;
  background: #4147F4;
  color: #ffffff;
  border-bottom-right-radius: 6px; }

.azania-assistant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 118px;
  overflow-y: auto;
  padding: 14px 16px 0;
  background: #ffffff; }

.azania-assistant-chips button {
  border: 1px solid #E0E7FF;
  background: #EEF2FF;
  color: #4147F4;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer; }

.azania-assistant-chips button:hover {
  background: #4147F4;
  color: #ffffff; }

.azania-assistant-form {
  display: flex;
  gap: 8px;
  padding: 14px 16px 16px;
  background: #ffffff; }

.azania-assistant-form input {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 12px 14px;
  outline: none;
  font-size: 14px; }

.azania-assistant-form input:focus {
  border-color: #4147F4;
  box-shadow: 0 0 0 4px rgba(65, 71, 244, 0.1); }

.azania-assistant-form button {
  border: 0;
  border-radius: 999px;
  background: #4147F4;
  color: #ffffff;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer; }

.azania-assistant-form button:hover {
  background: #3037D8; }

@media (max-width: 767px) {
  .azania-assistant {
    left: 16px;
    bottom: 18px; }
  .azania-assistant-toggle {
    min-width: 58px;
    width: 58px;
    padding: 0;
    justify-content: center; }
  .azania-assistant-label {
    display: none; }
  .azania-assistant-icon {
    width: 40px;
    height: 40px; }
  .azania-assistant-panel {
    width: calc(100vw - 32px);
    bottom: 74px; }
  .azania-assistant-messages {
    height: 235px; }
  .azania-assistant-hint {
    width: 170px; } }

/* ===== AZANIA ASSISTANT STYLES END ===== */
/* ===== AZANIA BRAND SOCIAL ICONS START ===== */
.azania-social-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }

.azania-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.16); }

/* Facebook official blue */
.azania-social-facebook {
  color: #1877F2 !important; }

/* Instagram gradient */
.azania-social-instagram {
  color: #ffffff !important;
  background: radial-gradient(circle at 30% 110%, #FEDA75 0%, #FA7E1E 24%, #D62976 50%, #962FBF 72%, #4F5BD5 100%) !important; }

/* X / Twitter current icon */
.azania-social-x {
  color: #ffffff !important;
  background: #000000 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important; }

.azania-social-x::before {
  content: "X"; }

/* LinkedIn official blue */
.azania-social-linkedin {
  color: #0A66C2 !important; }

/* YouTube red */
.azania-social-youtube {
  color: #FF0000 !important; }

/* Email */
.azania-social-email {
  color: #4147F4 !important; }

/* Make footer social icons remain brand-colored even on dark footer */
.bg-footer .azania-social-icon,
.copyright .azania-social-icon {
  color: inherit !important; }

.bg-footer .azania-social-facebook,
.copyright .azania-social-facebook {
  color: #1877F2 !important;
  background: #ffffff !important; }

.bg-footer .azania-social-instagram,
.copyright .azania-social-instagram {
  color: #ffffff !important; }

.bg-footer .azania-social-linkedin,
.copyright .azania-social-linkedin {
  color: #0A66C2 !important;
  background: #ffffff !important; }

.bg-footer .azania-social-youtube,
.copyright .azania-social-youtube {
  color: #FF0000 !important;
  background: #ffffff !important; }

.bg-footer .azania-social-email,
.copyright .azania-social-email {
  color: #4147F4 !important;
  background: #ffffff !important; }

/* ===== AZANIA BRAND SOCIAL ICONS END ===== */
/* ===== CURRENT INSTAGRAM ICON START ===== */
.azania-social-instagram-current {
  position: relative !important;
  color: transparent !important;
  background: radial-gradient(circle at 30% 107%, #FEDA75 0%, #FEDA75 8%, #FA7E1E 28%, #D62976 55%, #962FBF 78%, #4F5BD5 100%) !important;
  overflow: hidden; }

.azania-social-instagram-current::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  border-radius: 6px;
  box-sizing: border-box; }

.azania-social-instagram-current::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 7px -7px 0 -3px #ffffff; }

.bg-footer .azania-social-instagram-current,
.copyright .azania-social-instagram-current {
  color: transparent !important;
  background: radial-gradient(circle at 30% 107%, #FEDA75 0%, #FEDA75 8%, #FA7E1E 28%, #D62976 55%, #962FBF 78%, #4F5BD5 100%) !important; }

/* ===== CURRENT INSTAGRAM ICON END ===== */
/* ===== FIX INSTAGRAM ICON ALIGNMENT START ===== */
.azania-social-instagram-current {
  top: 2px !important;
  vertical-align: middle !important; }

.copyright .list-inline-item,
.bg-footer .list-inline-item,
.top-header .list-inline-item {
  vertical-align: middle !important; }

.copyright .list-inline-item a,
.bg-footer .list-inline-item a,
.top-header .list-inline-item a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important; }

/* ===== FIX INSTAGRAM ICON ALIGNMENT END ===== */
/* ===== AZANIA SEARCH BAR ONLY STYLES START ===== */
.azania-home-search {
  position: relative;
  z-index: 30;
  margin-top: -42px;
  padding-bottom: 44px; }

.azania-home-search-box {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.13); }

.azania-search-title {
  text-align: center;
  margin-bottom: 18px; }

.azania-search-title span {
  display: inline-flex;
  background: #EEF2FF;
  color: #4147F4;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px; }

.azania-search-title strong {
  display: block;
  color: #111827;
  font-size: 23px;
  line-height: 1.25; }

.azania-search-form {
  position: relative;
  max-width: 820px;
  margin: 0 auto; }

.azania-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 2px solid #E0E7FF;
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }

.azania-search-input-wrap:focus-within {
  background: #ffffff;
  border-color: #4147F4;
  box-shadow: 0 0 0 5px rgba(65, 71, 244, 0.1); }

.azania-search-icon {
  color: #4147F4;
  font-size: 24px;
  font-weight: 900; }

.azania-search-input-wrap input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-size: 16px;
  font-weight: 700; }

.azania-search-input-wrap input::placeholder {
  color: #94A3B8; }

.azania-search-input-wrap button {
  border: 0;
  border-radius: 999px;
  background: #4147F4;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(65, 71, 244, 0.24);
  transition: background 0.25s ease, transform 0.25s ease; }

.azania-search-input-wrap button:hover {
  background: #3037D8;
  transform: translateY(-1px); }

.azania-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.17);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 80; }

.azania-search-suggestions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

.azania-search-suggestion {
  display: block;
  padding: 13px 15px;
  border-radius: 15px;
  text-decoration: none !important;
  transition: background 0.2s ease; }

.azania-search-suggestion:hover {
  background: #EEF2FF; }

.azania-search-suggestion strong {
  display: block;
  color: #111827;
  font-size: 15px; }

.azania-search-suggestion span {
  display: block;
  margin-top: 3px;
  color: #4147F4;
  font-size: 13px;
  font-weight: 700; }

.azania-search-no-result {
  padding: 16px;
  color: #64748B;
  font-weight: 700; }

@media (max-width: 991px) {
  .azania-home-search {
    margin-top: 0;
    padding-top: 24px; } }

@media (max-width: 575px) {
  .azania-home-search-box {
    padding: 18px;
    border-radius: 24px; }
  .azania-search-title strong {
    font-size: 19px; }
  .azania-search-input-wrap {
    border-radius: 22px;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 12px; }
  .azania-search-icon {
    display: none; }
  .azania-search-input-wrap input {
    flex: 1 0 100%;
    padding: 7px 4px; }
  .azania-search-input-wrap button {
    width: 100%; } }

/* ===== AZANIA SEARCH BAR ONLY STYLES END ===== */
/* ===== AZANIA WHY CHOOSE STYLES START ===== */
.azania-why-choose {
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
  padding-top: 72px;
  padding-bottom: 78px; }

.azania-section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px; }

.azania-section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #EEF2FF;
  color: #4147F4;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px; }

.azania-section-heading h2 {
  color: #111827;
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 14px; }

.azania-section-heading p {
  color: #64748B;
  font-size: 16px;
  line-height: 1.7;
  margin: 0; }

.azania-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; }

.azania-why-card {
  position: relative;
  display: block;
  min-height: 238px;
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 26px;
  text-decoration: none !important;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }

.azania-why-card::before {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.08);
  transition: transform 0.28s ease, background 0.28s ease; }

.azania-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(65, 71, 244, 0.35);
  box-shadow: 0 26px 70px rgba(65, 71, 244, 0.15); }

.azania-why-card:hover::before {
  transform: scale(1.28);
  background: rgba(65, 71, 244, 0.13); }

.azania-why-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #EEF2FF;
  color: #4147F4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 22px;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease; }

.azania-why-card:hover .azania-why-icon {
  background: #4147F4;
  color: #ffffff;
  transform: rotate(-4deg) scale(1.05); }

.azania-why-card h3 {
  position: relative;
  z-index: 2;
  color: #111827;
  font-size: 20px;
  line-height: 1.28;
  margin-bottom: 10px; }

.azania-why-card p {
  position: relative;
  z-index: 2;
  color: #64748B;
  font-size: 15px;
  line-height: 1.65;
  margin: 0; }

.azania-why-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 38px; }

.azania-why-actions .btn {
  min-width: 170px; }

@media (max-width: 991px) {
  .azania-section-heading h2 {
    font-size: 30px; }
  .azania-why-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 575px) {
  .azania-why-choose {
    padding-top: 52px;
    padding-bottom: 58px; }
  .azania-section-heading h2 {
    font-size: 25px; }
  .azania-why-grid {
    grid-template-columns: 1fr; }
  .azania-why-card {
    min-height: auto;
    padding: 26px 22px; }
  .azania-why-actions {
    flex-direction: column; }
  .azania-why-actions .btn {
    width: 100%; } }

/* ===== AZANIA WHY CHOOSE STYLES END ===== */
/* ===== AZANIA INFORMATION FOR STYLES START ===== */
.azania-info-for {
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.07), transparent 32%), linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
  padding-top: 72px;
  padding-bottom: 78px; }

.azania-info-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px; }

.azania-info-header span {
  display: inline-flex;
  background: #EEF2FF;
  color: #4147F4;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px; }

.azania-info-header h2 {
  color: #111827;
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 12px; }

.azania-info-header p {
  color: #64748B;
  font-size: 16px;
  line-height: 1.7;
  margin: 0; }

.azania-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px; }

.azania-info-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 26px;
  padding: 26px 20px;
  min-height: 310px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }

.azania-info-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.08);
  transition: transform 0.28s ease, background 0.28s ease; }

.azania-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(65, 71, 244, 0.34);
  box-shadow: 0 28px 70px rgba(65, 71, 244, 0.14); }

.azania-info-card:hover::before {
  transform: scale(1.25);
  background: rgba(65, 71, 244, 0.13); }

.azania-info-card.is-featured {
  background: linear-gradient(135deg, #4147F4 0%, #3037D8 100%);
  border-color: #4147F4; }

.azania-info-card.is-featured::before {
  background: rgba(255, 255, 255, 0.14); }

.azania-info-icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #EEF2FF;
  color: #4147F4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px; }

.azania-info-card.is-featured .azania-info-icon {
  background: #ffffff;
  color: #4147F4; }

.azania-info-card h3 {
  position: relative;
  z-index: 2;
  color: #111827;
  font-size: 19px;
  line-height: 1.28;
  margin-bottom: 10px; }

.azania-info-card p {
  position: relative;
  z-index: 2;
  color: #64748B;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px; }

.azania-info-card.is-featured h3,
.azania-info-card.is-featured p {
  color: #ffffff; }

.azania-info-card.is-featured p {
  color: rgba(255, 255, 255, 0.84); }

.azania-info-links {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin-top: auto; }

.azania-info-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
  color: #4147F4;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease; }

.azania-info-links a::after {
  content: "→";
  margin-left: 8px; }

.azania-info-links a:hover {
  background: #4147F4;
  color: #ffffff;
  transform: translateX(2px); }

.azania-info-card.is-featured .azania-info-links a {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff; }

.azania-info-card.is-featured .azania-info-links a:hover {
  background: #ffffff;
  color: #4147F4; }

@media (max-width: 1199px) {
  .azania-info-grid {
    grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 767px) {
  .azania-info-header h2 {
    font-size: 28px; }
  .azania-info-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 575px) {
  .azania-info-for {
    padding-top: 52px;
    padding-bottom: 58px; }
  .azania-info-grid {
    grid-template-columns: 1fr; }
  .azania-info-card {
    min-height: auto; } }

/* ===== AZANIA INFORMATION FOR STYLES END ===== */
/* ===== AZANIA FINAL VIDEO REVIEW FIXES START ===== */
/* Make School Info dropdown label visible on all pages */
.navbar .nav-item.dropdown > .nav-link,
.navbar .nav-link.dropdown-toggle,
.navbar .dropdown-toggle {
  color: #111827 !important;
  opacity: 1 !important;
  visibility: visible !important; }

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

.dropdown-menu {
  z-index: 10020 !important; }

/* Prevent sticky navbar from visually covering section headings */
.azania-home-search,
.azania-why-choose,
.azania-resources-hub,
.azania-info-for {
  scroll-margin-top: 150px; }

/* Give homepage custom sections a little more breathing room */
.azania-why-choose,
.azania-info-for,
.azania-resources-hub {
  padding-top: 84px !important; }

/* Hide broken scholarship/joining image if old theme image is missing */
img[alt="scholarship news"],
.scholarship img[alt="scholarship news"] {
  display: none !important; }

/* Keep floating buttons clean above page content */
.azania-assistant,
.azania-back-to-top {
  z-index: 10030 !important; }

/* ===== AZANIA FINAL VIDEO REVIEW FIXES END ===== */
/* ===== AZANIA CUSTOM 404 PAGE START ===== */
.azania-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.12), transparent 34%), linear-gradient(135deg, #ffffff 0%, #EEF2FF 55%, #ffffff 100%); }

.azania-404-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #E0E7FF;
  border-radius: 34px;
  padding: 54px 40px;
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.14); }

.azania-404-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #EEF2FF;
  color: #4147F4;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 1000;
  margin-bottom: 20px; }

.azania-404-card h1 {
  color: #111827;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 14px; }

.azania-404-card p {
  color: #64748B;
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 28px; }

.azania-404-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px; }

@media (max-width: 575px) {
  .azania-404-section {
    padding: 80px 0; }
  .azania-404-card {
    padding: 38px 22px;
    border-radius: 26px; }
  .azania-404-card h1 {
    font-size: 30px; }
  .azania-404-actions {
    flex-direction: column; }
  .azania-404-actions .btn {
    width: 100%; } }

/* ===== AZANIA CUSTOM 404 PAGE END ===== */
/* ===== AZANIA FINAL IMAGE OVERRIDES START ===== */
.hero-section,
.hero-slider {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.88) 46%, rgba(238, 242, 255, 0.78) 100%), url("/images/azania/hero.png") center center/cover no-repeat !important; }

.page-title-section,
.page-title {
  background: linear-gradient(90deg, rgba(65, 71, 244, 0.88), rgba(7, 8, 23, 0.64)), url("/images/azania/page-title.png") center center/cover no-repeat !important; }

/* ===== AZANIA FINAL IMAGE OVERRIDES END ===== */
/* ===== AZANIA REAL SCHOOL IMAGE OVERRIDES START ===== */
.hero-section,
.hero-slider {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 250, 252, 0.74) 46%, rgba(238, 242, 255, 0.62) 100%), url("/images/school-photos/hero-main-campus.jpg") center center/cover no-repeat !important; }

.page-title-section,
.page-title {
  background: linear-gradient(90deg, rgba(65, 71, 244, 0.82), rgba(7, 8, 23, 0.58)), url("/images/school-photos/hero-main-campus.jpg") center center/cover no-repeat !important; }

.card img,
.hover-shadow img {
  object-fit: cover; }

/* ===== AZANIA REAL SCHOOL IMAGE OVERRIDES END ===== */
/* ===== AZANIA HERO CLEAN LOOK START ===== */
/* hero ibaki na picha tu bila white overlay */
.hero-section,
.hero-slider {
  background: url("/images/school-photos/hero-main-campus.jpg") center center/cover no-repeat !important; }

/* ondoa overlays zozote */
.hero-section::before,
.hero-section::after,
.hero-slider::before,
.hero-slider::after,
.hero-slider-item::before,
.hero-slider-item::after,
.hero-slider .slick-slide::before,
.hero-slider .slick-slide::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important; }

/* ondoa box jeupe la content */
.hero-section .hero-content,
.hero-section .slider-content,
.hero-section .block,
.hero-section .banner-content,
.hero-slider .hero-content,
.hero-slider .slider-content,
.hero-slider .block,
.hero-slider .banner-content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  backdrop-filter: none !important;
  padding: 0 !important; }

/* maandishi yaonekane vizuri juu ya picha */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-slider h1,
.hero-slider h2,
.hero-slider h3 {
  color: #0f172a !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35); }

.hero-section p,
.hero-slider p {
  color: #334155 !important;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.3);
  max-width: 780px; }

/* nafasi ya content ibaki nzuri */
.hero-section .container,
.hero-slider .container {
  position: relative;
  z-index: 2; }

/* button ibaki clean */
.hero-section .btn,
.hero-slider .btn {
  position: relative;
  z-index: 3; }

/* ===== AZANIA HERO CLEAN LOOK END ===== */
/* ===== AZANIA HERO TEXT VISIBILITY START ===== */
/* Hero background: real photo + subtle dark gradient for readable text */
.hero-section,
.hero-slider {
  background: linear-gradient(90deg, rgba(7, 8, 23, 0.72) 0%, rgba(7, 8, 23, 0.44) 42%, rgba(7, 8, 23, 0.08) 100%), url("/images/school-photos/hero-main-campus.jpg") center center/cover no-repeat !important; }

/* Keep content clean, no white box */
.hero-section .hero-content,
.hero-section .slider-content,
.hero-section .block,
.hero-section .banner-content,
.hero-slider .hero-content,
.hero-slider .slider-content,
.hero-slider .block,
.hero-slider .banner-content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important; }

/* Make hero text visible and premium */
.hero-section h1,
.hero-slider h1,
.hero-section h2,
.hero-slider h2 {
  color: #ffffff !important;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55) !important; }

.hero-section p,
.hero-slider p {
  color: rgba(255, 255, 255, 0.94) !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55) !important;
  font-weight: 600;
  max-width: 760px; }

/* Button iwe prominent */
.hero-section .btn-primary,
.hero-slider .btn-primary {
  background: #4147F4 !important;
  border-color: #4147F4 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24); }

/* ===== AZANIA HERO TEXT VISIBILITY END ===== */
/* ===== AZANIA EQUAL CARD IMAGE SIZES START ===== */
/* Make listing/card images consistent across departments, courses, news and events */
.card-img,
.card-img-top {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center center !important; }

/* Some theme image partials render img inside wrappers */
.card .card-img img,
.card .card-img-top img,
.hover-shadow .card-img img,
.hover-shadow .card-img-top img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center center !important; }

/* Leadership portrait photos should crop from top, not cut faces */
img[src*="head-of-school"],
img[src*="deputy"],
img[src*="senior-academic"],
img[src*="leadership-group"],
img[src*="deputy-headmasters-office"] {
  object-position: center top !important; }

/* Keep cards equal and cleaner */
.card,
.hover-shadow {
  height: 100%; }

.card-body {
  min-height: 190px; }

/* Events date badge should stay above equal images */
.card-img {
  position: relative; }

/* Mobile adjustment */
@media (max-width: 575px) {
  .card-img,
  .card-img-top,
  .card .card-img img,
  .card .card-img-top img,
  .hover-shadow .card-img img,
  .hover-shadow .card-img-top img {
    height: 220px !important; } }

/* ===== AZANIA EQUAL CARD IMAGE SIZES END ===== */
/* ===== AZANIA CONTACT MAP START ===== */
.azania-map-section {
  padding: 80px 0;
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.1), transparent 36%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }

.azania-map-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center; }

.azania-map-heading span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.azania-map-heading h2 {
  margin-bottom: 12px;
  color: #070817 !important;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800; }

.azania-map-heading p {
  margin: 0;
  color: #64748b !important;
  font-size: 17px;
  line-height: 1.7; }

.azania-map-modern {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 34px;
  background: #e5e7eb;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.24); }

.azania-map-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  border-radius: 34px; }

.azania-map-modern iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  filter: saturate(1.05) contrast(1.02); }

.azania-map-floating-card {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 3;
  display: flex;
  gap: 18px;
  width: 470px;
  max-width: calc(100% - 68px);
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(14px); }

.azania-map-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #4147F4, #070817);
  color: #ffffff;
  font-size: 25px;
  box-shadow: 0 14px 30px rgba(65, 71, 244, 0.28); }

.azania-map-floating-card h3 {
  margin: 0 0 8px;
  color: #070817 !important;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800; }

.azania-map-floating-card p {
  margin: 0 0 18px;
  color: #475569 !important;
  font-size: 15px;
  line-height: 1.65; }

.azania-map-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px; }

.azania-map-buttons .btn {
  padding: 13px 22px !important;
  border-radius: 999px !important;
  box-shadow: 0 14px 30px rgba(65, 71, 244, 0.24); }

.azania-map-link {
  color: #4147F4 !important;
  font-weight: 800;
  text-decoration: none !important; }

.azania-map-link:hover {
  color: #070817 !important; }

@media (max-width: 767px) {
  .azania-map-section {
    padding: 60px 0; }
  .azania-map-heading h2 {
    font-size: 31px; }
  .azania-map-modern {
    min-height: 620px;
    border-radius: 24px; }
  .azania-map-modern iframe {
    height: 620px; }
  .azania-map-floating-card {
    left: 16px;
    top: 16px;
    width: calc(100% - 32px);
    padding: 20px;
    border-radius: 22px; }
  .azania-map-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 21px; }
  .azania-map-floating-card h3 {
    font-size: 20px; } }

/* ===== AZANIA CONTACT MAP END ===== */
/* ===== AZANIA REMOVE HOME SEARCH BAR START ===== */
/* Hide homepage search bar only */
.home .azania-home-search,
.home .azania-search-section,
.home .azania-site-search,
.home .azania-search-wrapper,
.azania-home-search,
.azania-search-section,
.azania-site-search,
.azania-search-wrapper {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important; }

/* ===== AZANIA REMOVE HOME SEARCH BAR END ===== */
/* ===== AZANIA NAVBAR ACTIVE VISIBILITY START ===== */
/* Navbar links should never look faint after click */
.navbar-nav .nav-link,
.navigation .nav-link,
.navbar .nav-link {
  opacity: 1 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: none !important; }

/* Hover/focus/click state */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navigation .nav-link:hover,
.navigation .nav-link:focus,
.navigation .nav-link:active,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active {
  opacity: 1 !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  border-radius: 999px; }

/* Current/active menu item */
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link[aria-current="page"],
.navigation .nav-item.active > .nav-link,
.navigation .nav-link.active,
.navbar .nav-item.active > .nav-link,
.navbar .nav-link.active,
.navbar .show > .nav-link {
  opacity: 1 !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.22) !important;
  border-radius: 999px; }

/* Remove faint underline/white block effect under active links */
.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after,
.navigation .nav-link::before,
.navigation .nav-link::after,
.navbar .nav-link::before,
.navbar .nav-link::after {
  opacity: 1 !important; }

/* Dropdown menu text ibaki readable */
.dropdown-menu .nav-link,
.dropdown-menu .dropdown-item,
.navbar .dropdown-menu a {
  color: #0f172a !important;
  opacity: 1 !important;
  background: transparent !important; }

.dropdown-menu .nav-link:hover,
.dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu a:hover {
  color: #4147F4 !important;
  background: rgba(65, 71, 244, 0.08) !important; }

/* ===== AZANIA NAVBAR ACTIVE VISIBILITY END ===== */
/* ===== AZANIA MOBILE FRIENDLY LAYOUT START ===== */
/* Prevent mobile horizontal scrolling */
html,
body {
  max-width: 100%;
  overflow-x: hidden; }

img,
iframe,
video {
  max-width: 100%; }

/* Better tap targets */
a,
button,
.btn,
.nav-link {
  -webkit-tap-highlight-color: transparent; }

/* Tablet and mobile layout */
@media (max-width: 991px) {
  body {
    font-size: 15px; }
  .container {
    max-width: 100%;
    padding-left: 18px !important;
    padding-right: 18px !important; }
  /* Header / Navbar */
  .header,
  .navigation,
  .navbar {
    position: relative;
    z-index: 999; }
  .navbar-brand img,
  .logo img {
    max-height: 56px !important;
    width: auto !important; }
  .navbar-toggler {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    background: rgba(65, 71, 244, 0.1) !important; }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(65, 71, 244, 0.18) !important; }
  .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    background: #070817 !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22); }
  .navbar-nav {
    gap: 4px; }
  .navbar-nav .nav-item {
    width: 100%; }
  .navbar-nav .nav-link,
  .navigation .nav-link,
  .navbar .nav-link {
    display: block;
    width: 100%;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.3; }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-item.active > .nav-link,
  .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important; }
  .dropdown-menu {
    margin-top: 6px !important;
    padding: 8px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: none !important; }
  .dropdown-menu a,
  .dropdown-menu .dropdown-item,
  .dropdown-menu .nav-link {
    color: #0f172a !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    font-size: 14px !important; }
  /* Hero */
  .hero-section,
  .hero-slider,
  .hero-slider-item {
    min-height: 560px !important;
    height: auto !important;
    padding: 90px 0 70px !important;
    background-position: center center !important; }
  .hero-section .container,
  .hero-slider .container {
    padding-left: 22px !important;
    padding-right: 22px !important; }
  .hero-section h1,
  .hero-slider h1,
  .hero-section h2,
  .hero-slider h2 {
    font-size: 42px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em;
    max-width: 92%; }
  .hero-section p,
  .hero-slider p {
    max-width: 94% !important;
    font-size: 16px !important;
    line-height: 1.75 !important; }
  .hero-section .btn,
  .hero-slider .btn {
    padding: 14px 24px !important;
    font-size: 15px !important;
    border-radius: 999px !important; }
  /* Sections */
  section,
  .section {
    padding-top: 56px !important;
    padding-bottom: 56px !important; }
  .section-title,
  .title,
  h2 {
    font-size: 30px !important;
    line-height: 1.18 !important; }
  /* Cards */
  .card,
  .hover-shadow {
    margin-bottom: 22px;
    border-radius: 20px !important;
    overflow: hidden; }
  .card-img,
  .card-img-top,
  .card .card-img img,
  .card .card-img-top img,
  .hover-shadow .card-img img,
  .hover-shadow .card-img-top img {
    height: 220px !important;
    object-fit: cover !important; }
  .card-body {
    min-height: auto !important;
    padding: 22px !important; }
  .card-title,
  .card h4,
  .card h5 {
    font-size: 20px !important;
    line-height: 1.3 !important; }
  /* Contact map */
  .azania-map-section {
    padding: 58px 0 !important; }
  .azania-map-heading {
    margin-bottom: 24px !important; }
  .azania-map-heading h2 {
    font-size: 30px !important; }
  .azania-map-heading p {
    font-size: 15px !important; }
  .azania-map-modern {
    min-height: auto !important;
    border-radius: 24px !important;
    display: flex;
    flex-direction: column; }
  .azania-map-floating-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 14px !important;
    order: 1; }
  .azania-map-modern iframe {
    order: 2;
    height: 390px !important;
    min-height: 390px !important; }
  .azania-map-buttons {
    gap: 10px !important; }
  .azania-map-buttons .btn,
  .azania-map-link {
    width: 100%;
    text-align: center; }
  /* Footer */
  footer,
  .footer,
  .azania-footer {
    text-align: left; }
  .footer .row > div,
  footer .row > div {
    margin-bottom: 26px; }
  footer h4,
  footer h5 {
    font-size: 18px !important; }
  footer p,
  footer li,
  footer a {
    font-size: 14px !important;
    line-height: 1.7; }
  /* AzaBot */
  .azania-bot,
  .azania-chatbot,
  .azania-chat-widget {
    max-width: calc(100vw - 28px) !important; }
  .azania-bot-panel,
  .azania-chat-panel {
    width: calc(100vw - 28px) !important;
    max-width: 360px !important; }
  /* Tables */
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap; } }

/* Small phones */
@media (max-width: 575px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important; }
  .navbar-brand img,
  .logo img {
    max-height: 48px !important; }
  .hero-section,
  .hero-slider,
  .hero-slider-item {
    min-height: 520px !important;
    padding: 78px 0 58px !important; }
  .hero-section h1,
  .hero-slider h1,
  .hero-section h2,
  .hero-slider h2 {
    font-size: 34px !important;
    line-height: 1.08 !important;
    max-width: 100% !important; }
  .hero-section p,
  .hero-slider p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    max-width: 100% !important; }
  .hero-section .btn,
  .hero-slider .btn,
  .btn {
    width: auto;
    max-width: 100%;
    padding: 13px 20px !important; }
  .section-title,
  .title,
  h2 {
    font-size: 26px !important; }
  h1 {
    font-size: 32px !important; }
  h3 {
    font-size: 22px !important; }
  .card-img,
  .card-img-top,
  .card .card-img img,
  .card .card-img-top img,
  .hover-shadow .card-img img,
  .hover-shadow .card-img-top img {
    height: 205px !important; }
  .azania-map-floating-card {
    display: block !important;
    padding: 18px !important; }
  .azania-map-icon {
    margin-bottom: 12px; }
  .azania-map-modern iframe {
    height: 330px !important;
    min-height: 330px !important; }
  /* Bot should not cover important buttons */
  .azania-bot,
  .azania-chatbot,
  .azania-chat-widget {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    transform: scale(0.94);
    transform-origin: left bottom; }
  /* Preloader mobile */
  .azania-preloader-card,
  .preloader-card {
    width: calc(100vw - 32px) !important;
    max-width: 360px !important;
    padding: 24px !important; } }

/* Extra tiny screens */
@media (max-width: 380px) {
  .hero-section h1,
  .hero-slider h1,
  .hero-section h2,
  .hero-slider h2 {
    font-size: 30px !important; }
  .hero-section p,
  .hero-slider p {
    font-size: 14px !important; }
  .navbar-nav .nav-link {
    font-size: 14px !important; } }

/* ===== AZANIA MOBILE FRIENDLY LAYOUT END ===== */
/* ===== AZANIA ALUMNI PAGE START ===== */
.content h2 {
  color: #070817;
  font-weight: 800;
  margin-top: 34px;
  margin-bottom: 16px; }

.content p {
  color: #475569;
  font-size: 16px;
  line-height: 1.85; }

.content ul {
  margin-top: 18px;
  margin-bottom: 28px;
  padding-left: 0;
  list-style: none; }

.content ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
  color: #334155;
  line-height: 1.7; }

.content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.12);
  color: #4147F4;
  font-size: 13px;
  font-weight: 900; }

.content {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto; }

/* ===== AZANIA ALUMNI PAGE END ===== */
/* ===== AZANIA ALUMNI CLICKABLE HUB START ===== */
.azania-alumni-hub {
  margin-top: 34px; }

.azania-alumni-group {
  margin-bottom: 62px; }

.azania-alumni-group-head {
  max-width: 760px;
  margin-bottom: 24px; }

.azania-alumni-group-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-weight: 900; }

.azania-alumni-group-head h2 {
  margin: 0 0 10px;
  color: #070817 !important;
  font-weight: 900; }

.azania-alumni-group-head p {
  margin: 0;
  color: #64748b !important;
  font-size: 16px;
  line-height: 1.7; }

.azania-alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; }

.azania-alumni-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr)); }

.azania-alumni-card {
  display: block;
  height: 100%;
  padding: 28px;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(65, 71, 244, 0.1), transparent 38%), #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }

.azania-alumni-card:hover {
  transform: translateY(-7px);
  border-color: rgba(65, 71, 244, 0.35);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14); }

.azania-alumni-card span {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em; }

.azania-alumni-card h3 {
  margin: 0 0 10px;
  color: #070817 !important;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900; }

.azania-alumni-card p {
  margin: 0;
  color: #64748b !important;
  font-size: 15px;
  line-height: 1.7; }

.azania-alumni-card-primary {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 42%), linear-gradient(135deg, #4147F4, #070817); }

.azania-alumni-card-primary span {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff; }

.azania-alumni-card-primary h3,
.azania-alumni-card-primary p {
  color: #ffffff !important; }

@media (max-width: 991px) {
  .azania-alumni-grid,
  .azania-alumni-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr)); } }

@media (max-width: 575px) {
  .azania-alumni-grid,
  .azania-alumni-grid-two {
    grid-template-columns: 1fr; }
  .azania-alumni-card {
    padding: 23px;
    border-radius: 22px; }
  .azania-alumni-group {
    margin-bottom: 44px; } }

/* ===== AZANIA ALUMNI CLICKABLE HUB END ===== */
/* ===== AZANIA SCHOOL INFO NAV FIX START ===== */
/* Make dropdown parent links like School Info match other main menu items */
.navbar .navbar-nav > .nav-item > .nav-link,
.navigation .navbar-nav > .nav-item > .nav-link,
.navbar .navbar-nav > .nav-item.dropdown > .nav-link,
.navbar .navbar-nav > .nav-item.dropdown > .dropdown-toggle,
.navigation .navbar-nav > .nav-item.dropdown > .nav-link,
.navigation .navbar-nav > .nav-item.dropdown > .dropdown-toggle {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 800 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important; }

/* Hover, active and opened dropdown should remain white */
.navbar .navbar-nav > .nav-item > .nav-link:hover,
.navbar .navbar-nav > .nav-item > .nav-link:focus,
.navbar .navbar-nav > .nav-item > .nav-link:active,
.navbar .navbar-nav > .nav-item.active > .nav-link,
.navbar .navbar-nav > .nav-item.show > .nav-link,
.navbar .navbar-nav > .nav-item.dropdown.show > .dropdown-toggle,
.navbar .navbar-nav > .nav-item.dropdown:hover > .dropdown-toggle,
.navigation .navbar-nav > .nav-item > .nav-link:hover,
.navigation .navbar-nav > .nav-item > .nav-link:focus,
.navigation .navbar-nav > .nav-item.active > .nav-link,
.navigation .navbar-nav > .nav-item.show > .nav-link {
  color: #ffffff !important;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  box-shadow: none !important; }

/* Remove black underline under School Info */
.navbar .navbar-nav > .nav-item > .nav-link::before,
.navbar .navbar-nav > .nav-item > .nav-link::after,
.navigation .navbar-nav > .nav-item > .nav-link::before,
.navigation .navbar-nav > .nav-item > .nav-link::after {
  background: transparent !important;
  border-color: #ffffff !important;
  box-shadow: none !important; }

/* Dropdown arrow should also be white */
.navbar .dropdown-toggle::after,
.navigation .dropdown-toggle::after {
  border-top-color: #ffffff !important; }

/* Dropdown box */
.navbar .dropdown-menu,
.navigation .dropdown-menu {
  border: 0 !important;
  border-radius: 16px !important;
  padding: 10px !important;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18) !important; }

/* Dropdown items readable */
.navbar .dropdown-menu a,
.navbar .dropdown-menu .dropdown-item,
.navigation .dropdown-menu a,
.navigation .dropdown-menu .dropdown-item {
  color: #0f172a !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  background: transparent !important; }

.navbar .dropdown-menu a:hover,
.navbar .dropdown-menu .dropdown-item:hover,
.navigation .dropdown-menu a:hover,
.navigation .dropdown-menu .dropdown-item:hover {
  color: #4147F4 !important;
  background: rgba(65, 71, 244, 0.08) !important; }

/* ===== AZANIA SCHOOL INFO NAV FIX END ===== */
/* ===== AZANIA ALUMNI HUB FINAL START ===== */
.azania-alumni-page {
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.08), transparent 35%), #ffffff; }

.azania-alumni-intro {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center; }

.azania-alumni-intro > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.azania-alumni-intro h1 {
  margin-bottom: 18px;
  color: #070817 !important;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 900; }

.azania-alumni-intro p {
  margin: 0 auto;
  max-width: 760px;
  color: #64748b !important;
  font-size: 17px;
  line-height: 1.8; }

.azania-alumni-group {
  margin-bottom: 66px; }

.azania-alumni-group-head {
  max-width: 760px;
  margin-bottom: 26px; }

.azania-alumni-group-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-weight: 900; }

.azania-alumni-group-head h2 {
  margin: 0 0 10px;
  color: #070817 !important;
  font-weight: 900; }

.azania-alumni-group-head p {
  margin: 0;
  color: #64748b !important;
  font-size: 16px;
  line-height: 1.7; }

.azania-alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; }

.azania-alumni-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr)); }

.azania-alumni-card {
  display: block;
  height: 100%;
  padding: 28px;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(65, 71, 244, 0.1), transparent 38%), #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }

.azania-alumni-card:hover {
  transform: translateY(-7px);
  border-color: rgba(65, 71, 244, 0.35);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14); }

.azania-alumni-card span {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em; }

.azania-alumni-card h3 {
  margin: 0 0 10px;
  color: #070817 !important;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900; }

.azania-alumni-card p {
  margin: 0;
  color: #64748b !important;
  font-size: 15px;
  line-height: 1.7; }

.azania-alumni-card-primary {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 42%), linear-gradient(135deg, #4147F4, #070817); }

.azania-alumni-card-primary span {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff; }

.azania-alumni-card-primary h3,
.azania-alumni-card-primary p {
  color: #ffffff !important; }

@media (max-width: 991px) {
  .azania-alumni-grid,
  .azania-alumni-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .azania-alumni-intro h1 {
    font-size: 36px; } }

@media (max-width: 575px) {
  .azania-alumni-grid,
  .azania-alumni-grid-two {
    grid-template-columns: 1fr; }
  .azania-alumni-intro h1 {
    font-size: 30px; }
  .azania-alumni-card {
    padding: 23px;
    border-radius: 22px; } }

/* ===== AZANIA ALUMNI HUB FINAL END ===== */
/* ===== AZANIA VIDEO REVIEW FIXES START ===== */
/* Remove strange underline/active difference on School Info and all main nav items */
.navbar .navbar-nav > .nav-item > .nav-link,
.navigation .navbar-nav > .nav-item > .nav-link,
.navbar .navbar-nav > .nav-item.dropdown > .nav-link,
.navbar .navbar-nav > .nav-item.dropdown > .dropdown-toggle {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 800 !important;
  border-bottom: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important; }

.navbar .navbar-nav > .nav-item > .nav-link::before,
.navbar .navbar-nav > .nav-item > .nav-link::after,
.navigation .navbar-nav > .nav-item > .nav-link::before,
.navigation .navbar-nav > .nav-item > .nav-link::after {
  display: none !important;
  content: none !important; }

.navbar .navbar-nav > .nav-item.active > .nav-link,
.navbar .navbar-nav > .nav-item.show > .nav-link,
.navbar .navbar-nav > .nav-item > .nav-link:hover,
.navbar .navbar-nav > .nav-item > .nav-link:focus,
.navigation .navbar-nav > .nav-item.active > .nav-link,
.navigation .navbar-nav > .nav-item.show > .nav-link,
.navigation .navbar-nav > .nav-item > .nav-link:hover,
.navigation .navbar-nav > .nav-item > .nav-link:focus {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important; }

/* Alumni page should start clean, not too low */
.azania-alumni-page {
  padding-top: 78px !important;
  padding-bottom: 90px !important;
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important; }

.azania-alumni-intro {
  max-width: 900px;
  margin: 0 auto 54px !important;
  text-align: center; }

.azania-alumni-intro > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.azania-alumni-intro h1 {
  margin-bottom: 18px;
  color: #070817 !important;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 900; }

.azania-alumni-intro p {
  margin: 0 auto;
  max-width: 760px;
  color: #64748b !important;
  font-size: 17px;
  line-height: 1.8; }

.azania-alumni-group {
  margin-bottom: 64px !important; }

.azania-alumni-group-head {
  max-width: 760px;
  margin-bottom: 24px !important; }

.azania-alumni-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; }

.azania-alumni-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

.azania-alumni-card {
  display: block;
  height: 100%;
  padding: 28px;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(65, 71, 244, 0.1), transparent 38%), #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  text-decoration: none !important; }

.azania-alumni-card:hover {
  transform: translateY(-6px);
  border-color: rgba(65, 71, 244, 0.35);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14); }

.azania-alumni-card span {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em; }

.azania-alumni-card h3 {
  margin: 0 0 10px;
  color: #070817 !important;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900; }

.azania-alumni-card p {
  margin: 0;
  color: #64748b !important;
  font-size: 15px;
  line-height: 1.7; }

.azania-alumni-card-primary {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 42%), linear-gradient(135deg, #4147F4, #070817) !important; }

.azania-alumni-card-primary span {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important; }

.azania-alumni-card-primary h3,
.azania-alumni-card-primary p {
  color: #ffffff !important; }

@media (max-width: 991px) {
  .azania-alumni-grid,
  .azania-alumni-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .azania-alumni-intro h1 {
    font-size: 36px !important; } }

@media (max-width: 575px) {
  .azania-alumni-page {
    padding-top: 56px !important;
    padding-bottom: 64px !important; }
  .azania-alumni-grid,
  .azania-alumni-grid-two {
    grid-template-columns: 1fr !important; }
  .azania-alumni-intro h1 {
    font-size: 30px !important; }
  .azania-alumni-card {
    padding: 23px;
    border-radius: 22px; } }

/* ===== AZANIA VIDEO REVIEW FIXES END ===== */
/* ===== AZANIA REAL PARTNERS MARQUEE START ===== */
.azania-partners-marquee-section {
  padding: 80px 0 70px;
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.06), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden; }

.azania-partners-head {
  max-width: 840px;
  margin: 0 auto 34px; }

.azania-partners-head span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.azania-partners-head h2 {
  margin-bottom: 14px;
  color: #070817 !important;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 900; }

.azania-partners-head p {
  margin: 0 auto;
  max-width: 760px;
  color: #64748b !important;
  font-size: 17px;
  line-height: 1.75; }

.azania-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0; }

.azania-marquee-wrap::before,
.azania-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 2;
  pointer-events: none; }

.azania-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%); }

.azania-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%); }

.azania-marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: azaniaPartnerScroll 28s linear infinite;
  will-change: transform; }

.azania-marquee-wrap:hover .azania-marquee-track {
  animation-play-state: paused; }

.azania-partner-logo-card {
  flex: 0 0 auto;
  width: 250px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }

.azania-partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 71, 244, 0.28);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.11); }

.azania-partner-logo-card img {
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block; }

@keyframes azaniaPartnerScroll {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .azania-marquee-track {
    animation: none !important; } }

@media (max-width: 991px) {
  .azania-partners-head h2 {
    font-size: 34px; }
  .azania-partner-logo-card {
    width: 210px;
    height: 110px; } }

@media (max-width: 575px) {
  .azania-partners-marquee-section {
    padding: 58px 0 52px; }
  .azania-partners-head h2 {
    font-size: 28px; }
  .azania-partner-logo-card {
    width: 180px;
    height: 96px;
    border-radius: 18px;
    padding: 14px 16px; }
  .azania-partner-logo-card img {
    max-height: 56px; }
  .azania-marquee-wrap::before,
  .azania-marquee-wrap::after {
    width: 50px; } }

/* ===== AZANIA REAL PARTNERS MARQUEE END ===== */
/* ===== AZANIA IMAGE CONSISTENCY STEP 2 START ===== */
/* Global image quality */
img {
  image-rendering: auto; }

/* Hero image should look premium and readable */
.hero-section,
.hero-slider {
  background: linear-gradient(90deg, rgba(7, 8, 23, 0.72) 0%, rgba(7, 8, 23, 0.42) 46%, rgba(7, 8, 23, 0.1) 100%), url("/images/school-photos/hero-main-campus.jpg") center center/cover no-repeat !important; }

/* Page title image: not too bright, text readable */
.page-title-section,
.page-title {
  background: linear-gradient(90deg, rgba(7, 8, 23, 0.78), rgba(7, 8, 23, 0.42)), url("/images/school-photos/hero-main-campus.jpg") center center/cover no-repeat !important; }

/* Equal card image sizes */
.card-img,
.card-img-top,
.card .card-img img,
.card .card-img-top img,
.hover-shadow .card-img img,
.hover-shadow .card-img-top img {
  width: 100% !important;
  height: 255px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block; }

/* Keep cards clean and equal */
.card,
.hover-shadow {
  overflow: hidden;
  border-radius: 22px !important; }

.card img,
.hover-shadow img {
  transition: transform 0.35s ease; }

.card:hover img,
.hover-shadow:hover img {
  transform: scale(1.035); }

/* Leadership photos: avoid cutting faces */
img[src*="head-of-school"],
img[src*="deputy"],
img[src*="senior-academic"],
img[src*="leadership-group"],
img[src*="headmasters"],
img[src*="academic-office"] {
  object-position: center top !important; }

/* Computer lab and academic images should crop center */
img[src*="computer-lab"],
img[src*="academic-stock"],
img[src*="business-studies"] {
  object-position: center center !important; }

/* Detail page content images */
.content img,
.single-content img {
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1); }

/* Prevent image overflow */
.content img,
.single-content img,
.card img,
.hover-shadow img {
  max-width: 100%; }

/* Mobile image height */
@media (max-width: 991px) {
  .card-img,
  .card-img-top,
  .card .card-img img,
  .card .card-img-top img,
  .hover-shadow .card-img img,
  .hover-shadow .card-img-top img {
    height: 225px !important; } }

@media (max-width: 575px) {
  .card-img,
  .card-img-top,
  .card .card-img img,
  .card .card-img-top img,
  .hover-shadow .card-img img,
  .hover-shadow .card-img-top img {
    height: 205px !important; }
  .hero-section,
  .hero-slider {
    background-position: center center !important; } }

/* ===== AZANIA IMAGE CONSISTENCY STEP 2 END ===== */
/* ===== AZANIA MOBILE VERIFICATION STEP 3 START ===== */
/* Prevent any hidden horizontal overflow on mobile */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important; }

/* Mobile navbar should feel clean and clickable */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: calc(100vh - 110px);
    overflow-y: auto; }
  .navbar-nav .nav-link,
  .navbar .dropdown-menu a {
    min-height: 44px;
    display: flex !important;
    align-items: center; }
  .dropdown-menu {
    width: 100%; }
  .dropdown-menu a,
  .dropdown-menu .dropdown-item {
    white-space: normal !important; }
  /* Homepage hero mobile readability */
  .hero-section,
  .hero-slider,
  .hero-slider-item {
    min-height: 540px !important; }
  .hero-section h1,
  .hero-slider h1,
  .hero-section h2,
  .hero-slider h2 {
    word-break: normal;
    overflow-wrap: anywhere; }
  /* Partners logos mobile */
  .azania-partners-marquee-section {
    overflow: hidden; }
  .azania-marquee-track {
    gap: 16px; }
  /* Alumni cards mobile/tablet */
  .azania-alumni-grid,
  .azania-partners-grid {
    width: 100%; }
  /* Map mobile */
  .azania-map-modern {
    overflow: hidden; }
  .azania-map-floating-card {
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18) !important; }
  /* Footer mobile */
  footer ul,
  .footer ul {
    padding-left: 0; } }

@media (max-width: 575px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important; }
  .page-title-section,
  .page-title {
    padding-top: 72px !important;
    padding-bottom: 72px !important; }
  .custom-breadcrumb .h2,
  .custom-breadcrumb .h3,
  .page-title-section h1,
  .page-title h1 {
    font-size: 30px !important;
    line-height: 1.15 !important; }
  .hero-section,
  .hero-slider,
  .hero-slider-item {
    min-height: 510px !important;
    padding-top: 78px !important;
    padding-bottom: 58px !important; }
  .hero-section h1,
  .hero-slider h1,
  .hero-section h2,
  .hero-slider h2 {
    font-size: 32px !important;
    line-height: 1.08 !important; }
  .hero-section p,
  .hero-slider p {
    font-size: 15px !important;
    line-height: 1.65 !important; }
  .section,
  section {
    padding-top: 52px !important;
    padding-bottom: 52px !important; }
  .azania-partners-head h2,
  .azania-alumni-intro h1,
  .azania-map-heading h2 {
    font-size: 28px !important;
    line-height: 1.15 !important; }
  .azania-partners-head p,
  .azania-alumni-intro p,
  .azania-map-heading p {
    font-size: 15px !important; }
  .azania-partner-logo-card {
    width: 170px !important;
    height: 92px !important; }
  .azania-partner-logo-card img {
    max-height: 54px !important; }
  .card-body {
    padding: 20px !important; }
  .btn {
    white-space: normal !important; } }

/* ===== AZANIA MOBILE VERIFICATION STEP 3 END ===== */
/* ===== AZANIA ACCESSIBILITY STEP 5 START ===== */
/* Skip link for keyboard users */
.azania-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 99999;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 999px;
  background: #070817;
  color: #ffffff !important;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.3);
  transition: transform 0.2s ease; }

.azania-skip-link:focus {
  transform: translateY(0); }

/* Strong visible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.azania-alumni-card:focus-visible,
.azania-partner-logo-card:focus-visible,
.azania-map-link:focus-visible {
  outline: 3px solid #facc15 !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.25) !important;
  border-radius: 12px; }

/* Improve link readability inside content */
.content a,
.single-content a,
.azania-alumni-page a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px; }

/* Better text contrast */
p,
li,
.content p,
.content li {
  color: #334155; }

/* Buttons should be readable */
.btn,
.btn-primary {
  font-weight: 800 !important; }

/* Cards clickable focus state */
.azania-alumni-card:focus-visible,
.azania-partner-logo-card:focus-visible,
.card a:focus-visible,
.hover-shadow a:focus-visible {
  transform: translateY(-4px); }

/* Form accessibility */
input,
textarea,
select {
  min-height: 44px; }

label {
  font-weight: 700;
  color: #0f172a; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important; }
  .azania-marquee-track {
    animation: none !important; }
  .card:hover img,
  .hover-shadow:hover img,
  .azania-alumni-card:hover,
  .azania-partner-logo-card:hover {
    transform: none !important; } }

/* Avoid hidden focus inside navbar */
.navbar-collapse:focus-within {
  outline: none; }

/* Screen-reader utility */
.azania-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }

/* ===== AZANIA ACCESSIBILITY STEP 5 END ===== */
/* ===== AZANIA FORMS CTA STEP 7 START ===== */
.azania-form-section {
  padding: 70px 0;
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.08), transparent 34%), #f8fafc; }

.azania-form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11); }

.azania-form-card-blue {
  background: radial-gradient(circle at top right, rgba(65, 71, 244, 0.08), transparent 38%), #ffffff; }

.azania-form-intro {
  max-width: 760px;
  margin-bottom: 30px; }

.azania-form-intro span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.azania-form-intro h2 {
  margin-bottom: 12px;
  color: #070817 !important;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900; }

.azania-form-intro p {
  margin: 0;
  color: #64748b !important;
  font-size: 16px;
  line-height: 1.75; }

.azania-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px; }

.azania-form-field {
  margin-bottom: 18px; }

.azania-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 800;
  font-size: 14px; }

.azania-form-field input,
.azania-form-field select,
.azania-form-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 16px;
  padding: 14px 16px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; }

.azania-form-field textarea {
  resize: vertical; }

.azania-form-field input:focus,
.azania-form-field select:focus,
.azania-form-field textarea:focus {
  border-color: #4147F4;
  box-shadow: 0 0 0 5px rgba(65, 71, 244, 0.12); }

.azania-hidden-field {
  display: none !important; }

.azania-form .btn {
  margin-top: 8px;
  border-radius: 999px !important;
  padding: 14px 28px !important; }

.azania-partners-cta {
  margin-top: 30px;
  text-align: center; }

.azania-partners-cta .btn {
  border-radius: 999px !important;
  padding: 14px 30px !important; }

@media (max-width: 767px) {
  .azania-form-card {
    padding: 26px;
    border-radius: 24px; }
  .azania-form-grid {
    grid-template-columns: 1fr;
    gap: 0; }
  .azania-form-intro h2 {
    font-size: 28px; }
  .azania-form .btn {
    width: 100%; } }

/* ===== AZANIA FORMS CTA STEP 7 END ===== */
/* ===== AZANIA PARTNERS PAGE VIDEO FIX START ===== */
.azania-partners-page-clean {
  padding-top: 78px !important;
  padding-bottom: 72px !important;
  background: radial-gradient(circle at top left, rgba(65, 71, 244, 0.08), transparent 35%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important; }

.azania-partners-page-intro {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center; }

.azania-partners-page-intro span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(65, 71, 244, 0.1);
  color: #4147F4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase; }

.azania-partners-page-intro h1 {
  margin-bottom: 16px;
  color: #070817 !important;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 900; }

.azania-partners-page-intro p {
  margin: 0 auto;
  max-width: 760px;
  color: #64748b !important;
  font-size: 17px;
  line-height: 1.8; }

.azania-partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px; }

.azania-partners-logo-box {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.azania-partners-logo-box img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 14px; }

.azania-partners-logo-box h3 {
  margin: 0;
  color: #070817 !important;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center; }

.azania-partners-form-card {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

/* Remove huge nested spacing if old shortcode still exists somewhere */
.azania-partners-page-clean .azania-form-section {
  padding: 0 !important;
  background: transparent !important; }

/* Reduce footer empty gap on pages with short content */
.footer,
footer {
  margin-top: 0 !important; }

@media (max-width: 991px) {
  .azania-partners-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .azania-partners-page-intro h1 {
    font-size: 36px !important; } }

@media (max-width: 575px) {
  .azania-partners-page-clean {
    padding-top: 56px !important;
    padding-bottom: 54px !important; }
  .azania-partners-logo-grid {
    grid-template-columns: 1fr; }
  .azania-partners-page-intro h1 {
    font-size: 30px !important; }
  .azania-partners-logo-box {
    min-height: 130px; } }

/* ===== AZANIA PARTNERS PAGE VIDEO FIX END ===== */
/* ===== AZANIA RECOMMENDATION FIXES START ===== */
/* Fix white numbers on white background */
.funfacts .count,
.funfacts h2,
.funfacts h3,
.counter,
.counter-count,
.count,
.azania-stat-number,
.azania-counter-number,
.azania-impact-number,
.azania-number,
.azania-fact-number,
.azania-metric-number {
  color: #4147F4 !important;
  text-shadow: none !important; }

/* Keep labels readable near numbers */
.funfacts p,
.funfacts span,
.azania-stat-label,
.azania-counter-label,
.azania-impact-label,
.azania-metric-label {
  color: #334155 !important; }

/* Contact table polish */
.content table,
.single-content table {
  width: 100%;
  margin: 24px 0 32px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08); }

.content table th,
.content table td,
.single-content table th,
.single-content table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  color: #0f172a; }

.content table th,
.single-content table th {
  background: #4147F4;
  color: #ffffff !important;
  font-weight: 900; }

.content table tr:last-child td,
.single-content table tr:last-child td {
  border-bottom: 0; }

.content table td:last-child,
.single-content table td:last-child {
  font-weight: 800;
  color: #4147F4; }

@media (max-width: 575px) {
  .content table,
  .single-content table {
    font-size: 14px; }
  .content table th,
  .content table td,
  .single-content table th,
  .single-content table td {
    padding: 12px; } }

/* ===== AZANIA RECOMMENDATION FIXES END ===== */
/* ===== AZANIA HOME STATS VISIBILITY FIX START ===== */
/* Fix invisible homepage statistics text */
.success-story,
.funfacts,
.azania-stat-visibility-fixed {
  background-color: #ffffff !important; }

.success-story h2,
.success-story h3,
.success-story h4,
.success-story p,
.success-story span,
.success-story .text-white,
.success-story .text-lighten,
.funfacts h2,
.funfacts h3,
.funfacts h4,
.funfacts p,
.funfacts span,
.funfacts .text-white,
.funfacts .text-lighten,
.azania-stat-visibility-fixed h2,
.azania-stat-visibility-fixed h3,
.azania-stat-visibility-fixed h4,
.azania-stat-visibility-fixed p,
.azania-stat-visibility-fixed span,
.azania-stat-visibility-fixed .text-white,
.azania-stat-visibility-fixed .text-lighten {
  color: #0f172a !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important; }

.success-story .count,
.success-story .counter,
.success-story .counter-count,
.success-story h2.counter,
.success-story h2.count,
.funfacts .count,
.funfacts .counter,
.funfacts .counter-count,
.funfacts h2.counter,
.funfacts h2.count,
.azania-stat-visibility-fixed .count,
.azania-stat-visibility-fixed .counter,
.azania-stat-visibility-fixed .counter-count,
.azania-stat-visibility-fixed h2,
.azania-stat-visibility-fixed .h2 {
  color: #4147F4 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: 900 !important;
  text-shadow: none !important; }

/* Make the stats look clean on white */
.success-story .col-lg-3,
.success-story .col-md-6,
.funfacts .col-lg-3,
.funfacts .col-md-6,
.azania-stat-visibility-fixed .col-lg-3,
.azania-stat-visibility-fixed .col-md-6 {
  color: #0f172a !important; }

/* ===== AZANIA HOME STATS VISIBILITY FIX END ===== */
/* ===== AZANIA LOWERCASE EMAIL FIX START ===== */
/* Keep official email address in lowercase */
a[href^="mailto:"],
a[href^="mailto:" i],
footer a[href^="mailto:"],
.footer a[href^="mailto:"],
.azania-footer a[href^="mailto:"],
.azania-contact-card a[href^="mailto:"],
.azania-contact-info a[href^="mailto:"],
.azania-footer-contact-card a[href^="mailto:"] {
  text-transform: lowercase !important; }

/* Keep label normal */
footer .azania-contact-label,
.footer .azania-contact-label {
  text-transform: none !important; }

/* ===== AZANIA LOWERCASE EMAIL FIX END ===== */
