﻿/* ================================================================
   KADOSH UNIVERSITY CAMEROON  PURPOSE-BUILT STYLESHEET
   Replaces style.css (218KB) + responsive.css (49KB) + site.css
   Components: header, hero, services, about, courses, events,
               faq, cta, contact, footer, inner pages, utilities
   Palette: Gold #dfbd00 | Teal #125875 | Dark #141b22
   Fonts:   Cormorant Garamond (display) | Libre Baskerville (headings)
            Jost (UI/labels) | Source Sans 3 (body)
   ================================================================ */

/* 
   VARIABLES
    */
:root {
  --gold:      #dfbd00;
  --gold-dk:   #b89a00;
  --teal:      #125875;
  --teal-dk:   #0d3f55;
  --dark:      #141b22;
  --body-bg:   #f9f8f5;
  --text:      #4a4a5a;
  --white:     #ffffff;
  --radius:    4px;
  --sh-sm:     0 4px 20px rgba(20,27,34,.07);
  --sh-md:     0 8px 40px rgba(20,27,34,.13);
  --sh-lg:     0 16px 60px rgba(20,27,34,.18);
  --ease:      all .3s ease;
}

/* 
   RESET & BASE
    */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}
h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { margin-bottom: 15px; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--teal); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
label { font-size: 14px; color: #666; cursor: pointer; }

/* 
   SPACING UTILITIES  (from default.css  only values actually used)
    */
.mt-0  { margin-top: 0 !important; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-130{ margin-top: 130px; }
.mb-0  { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-35 { margin-bottom: 35px; }
.mb-50 { margin-bottom: 50px; }
.pt-10 { padding-top: 10px; }
.pt-30 { padding-top: 30px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }
.pt-90 { padding-top: 90px; }
.pt-120{ padding-top: 120px; }
.pb-25 { padding-bottom: 25px; }
.pb-60 { padding-bottom: 60px; }
.pb-70 { padding-bottom: 70px; }
.pb-80 { padding-bottom: 80px; }
.pb-90 { padding-bottom: 90px; }
.pb-120{ padding-bottom: 120px; }
.pl-15 { padding-left: 15px; }
.pr-20 { padding-right: 20px; }
.pr-30 { padding-right: 30px; }
.p-relative { position: relative; }
.fix { overflow: hidden; }
.text-white { color: #fff !important; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.fw-bold { font-weight: 700; }
.d-none { display: none; }
.full { width: 100% !important; }
.box { border: 1px solid #e0e0e0 !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* WOW / animation base — do NOT set visibility:hidden here.
   WOW.js manages its own visibility via JS. Setting it in CSS causes
   all .wow sections to be invisible if JS is deferred or slow to load. */
.animated { animation-duration: 1s; }

/* Decorative floating images  subdue */
.animations-01, .animations-02, .animations-06,
.animations-07, .animations-08, .animations-09, .animations-10 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
}

/* Loader */
.loader { position: fixed; inset: 0; background: var(--dark); display: flex;
          align-items: center; justify-content: center; z-index: 99999; }
.loader img { max-width: 90px; }

/* Scroll-to-top */
#scrollUp {
  background: var(--teal);
  width: 44px; height: 44px; line-height: 44px;
  border-radius: 50%; text-align: center;
  color: #fff; font-size: 18px;
  box-shadow: var(--sh-md);
  transition: var(--ease);
}
#scrollUp:hover { background: var(--gold); color: #fff; }

/* 
   BUTTONS
    */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: -1;
}
.btn:hover { border-color: var(--teal); color: #fff; }
.btn:hover::before { transform: scaleX(1); }

.btn.ss-btn { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn.ss-btn.active {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn.ss-btn.active::before { background: rgba(255,255,255,.12); }
.btn.ss-btn.active:hover { border-color: #fff; }

.btn-sm { padding: .7em 1.4em; font-size: 12px; }

/* 
   TOP BAR (second-header)
    */
.header-area { position: relative; z-index: 100; }

.second-header {
  background: var(--teal);
  padding: 10px 0;
  border-bottom: 2px solid rgba(223,189,0,.2);
  position: relative;
  z-index: 1;
}
.second-header::before {
  content: '';
  position: absolute;
  top: 0; left: -15px;
  height: 100%;
  width: 28%;
  background: var(--gold);
  transform: skewX(-20deg);
  z-index: -1;
}
.second-header a, .second-header span { color: #fff; font-size: 13px; }

.header-cta ul { display: flex; justify-content: flex-end; gap: 28px; }
.header-cta ul li { list-style: none; }

.call-box { display: flex; align-items: center; gap: 10px; }
.call-box .icon img { width: 36px; height: 36px; object-fit: contain; }
.call-box .text span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.7);
}
.call-box .text strong a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.call-box .text strong a:hover { color: var(--gold); }

/* 
   NAVIGATION BAR
    */
.menu-area {
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 18px rgba(20,27,34,.09);
  padding: 0;
}
.sticky-menu {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 999;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 18px rgba(20,27,34,.14) !important;
  animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.second-menu { padding: 0 15px; }

.logo a { display: inline-block; }
.logo img { max-height: 62px; width: auto; transition: var(--ease); }

/* Desktop nav */
.main-menu nav ul { display: flex; gap: 0; }
.main-menu nav ul li { position: relative; }
.main-menu nav ul li a {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark);
  padding: 24px 18px;
  position: relative;
}
.main-menu nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 14px; left: 18px; right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.main-menu nav ul li:hover > a,
.main-menu nav ul li.active > a { color: var(--gold); }
.main-menu nav ul li:hover > a::after,
.main-menu nav ul li.active > a::after { transform: scaleX(1); }

/* ─── MOBILE NAV (meanmenu) ────────────────────────────────────── */
.mobile-menu { display: none; }

/* The mean-bar sits inside the white .menu-area row — keep it transparent
   so it doesn't paint a dark band over the header */
.mean-container { position: relative; }
.mean-container .mean-bar {
  background: transparent;
  padding: 0;
  min-height: 0;
}

/* Hamburger button — floats right, matches the gold border-top of .menu-area */
.mean-container a.meanmenu-reveal {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid var(--teal);
  border-radius: 3px;
  padding: 7px 9px;
  color: var(--teal);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  text-decoration: none;
  width: 40px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mean-container a.meanmenu-reveal:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.mean-container a.meanmenu-reveal:hover span { background: #fff; }

/* The three hamburger lines */
.mean-container a.meanmenu-reveal span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--teal);
  border-radius: 2px;
  margin: 0;
  transition: var(--ease);
}

/* Dropdown panel */
.mean-container .mean-nav {
  background: #fff;
  box-shadow: 0 8px 32px rgba(20,27,34,.14);
  border-top: 3px solid var(--gold);
  margin-top: 4px;
  clear: both;
}

/* Nav links */
.mean-container .mean-nav ul { margin: 0; padding: 0; }
.mean-container .mean-nav ul li { display: block; float: none; border: none; }
.mean-container .mean-nav ul li a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  padding: 13px 20px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: block;
  width: 100%;
  float: none;
  transition: var(--ease);
}
.mean-container .mean-nav ul li a:hover { color: var(--gold); background: rgba(223,189,0,.04); }
.mean-container .mean-nav ul li:first-child a { border-top: none; }

/* Expand (sub-menu toggle) button */
.mean-container .mean-nav ul li a.mean-expand {
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0; top: 0;
  padding: 0;
  text-align: center;
  line-height: 44px;
  border-top: none;
  border-left: 1px solid rgba(0,0,0,.06);
  background: transparent;
  color: var(--teal);
  font-size: 18px;
  font-weight: 300;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(18,88,117,.06);
  color: var(--gold);
}

/* ─── HERO SLIDER ──────────────────────────────────────────────── */

/*
  Anti-FOUC: before Slick adds .slick-initialized, all .single-slider
  elements render as stacked blocks. Hide every slide after the first
  so only one slide is visible during load — Slick takes over instantly
  once JS runs, with no visible jump.
*/
.slider-active:not(.slick-initialized) { overflow: hidden; }
.slider-active:not(.slick-initialized) .single-slider { display: none; }
.slider-active:not(.slick-initialized) .single-slider:first-child { display: block; }

.slider-area { position: relative; }
.slider-active { background: var(--dark); }

.single-slider {
  min-height: 820px;
  background-size: cover !important;
  background-position: center top !important;
  position: relative;
}
.single-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(18,88,117,.88) 0%,
    rgba(20,27,34,.72) 55%,
    rgba(20,27,34,.28) 100%
  );
  z-index: 0;
}
.single-slider > .container { position: relative; z-index: 2; }

.slider-content { position: relative; z-index: 2; }
.slider-content.s-slider-content {
  padding-top: 220px;
  padding-bottom: 120px;
}

/* Eyebrow */
.slider-content h5 {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 6px !important;
  color: var(--gold) !important;
  margin-bottom: 20px;
  line-height: 1;
}
.slider-content h5::after { display: none !important; }

/* Headline */
.slider-content h2 {
  font-family: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif !important;
  font-size: clamp(44px, 5.8vw, 76px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: .5px;
  color: #fff !important;
  margin-bottom: 26px;
}
.slider-content h2 span::after { display: none !important; }

/* Subtext */
.slider-content p {
  display: block !important;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 520px;
}

/* Button row */
.slider-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Slick arrows */
.slider-active .slick-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 50%;
  width: 52px; height: 52px; line-height: 52px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 9;
  transition: var(--ease);
}
.slider-active .slick-arrow:hover { background: var(--gold); border-color: var(--gold); }
.slider-active .slick-prev { left: 24px; }
.slider-active .slick-next { right: 24px; }

/* Slick dots */
.slider-active .slick-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 8px;
  padding: 0;
}
.slider-active .slick-dots li button {
  text-indent: -9999px;
  width: 24px; height: 3px;
  padding: 0; border: none;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--ease);
}
.slider-active .slick-dots li.slick-active button {
  width: 50px;
  background: var(--gold);
}

/* 
   INNER PAGE HERO BANNER
    */
.page-hero-banner {
  position: relative;
  min-height: 480px;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: flex-end;
}
.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(18,88,117,.88) 0%,
    rgba(20,27,34,.68) 55%,
    rgba(20,27,34,.28) 100%
  );
  z-index: 0;
}
.page-hero-banner > .container {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}
/* Headline in page banners */
.page-hero-banner .slider-content h2 {
  font-size: clamp(34px, 5vw, 62px) !important;
}

/* 
   SECTION TITLES
    */
.section-title h5 {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 5px !important;
  color: var(--gold) !important;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif !important;
  font-size: clamp(30px, 3.8vw, 50px) !important;
  font-weight: 700 !important;
  line-height: 1.15;
  color: var(--dark) !important;
  margin-bottom: 0 !important;
}
.section-title h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--dark);
}

.about-title h5 {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 5px !important;
  color: var(--gold) !important;
  margin-bottom: 10px;
}
.about-title h2 {
  font-family: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif !important;
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.18;
  color: var(--dark) !important;
  margin-bottom: 0;
}

/* 
   SERVICES STRIP  (dark band below hero)
    */
.home-services {
  background: var(--dark);
  padding: 60px 0;
}
.services-box07 {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--ease);
}
.services-box07::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .35s ease;
}
.services-box07:hover::after,
.services-box07.active::after { width: 100%; }
.services-box07:hover,
.services-box07.active {
  background: rgba(223,189,0,.08);
  border-color: rgba(223,189,0,.22);
}
.sr-contner { display: flex; align-items: flex-start; gap: 18px; }
.sr-contner .icon { flex-shrink: 0; width: 60px; }
.sr-contner .icon img { width: 46px; height: 46px; object-fit: contain; }
.sr-contner .text h5 {
  font-family: 'Libre Baskerville', Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 7px;
}
.sr-contner .text p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  margin-bottom: 10px;
}
.sr-contner .text a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.sr-contner .text a:hover { color: #fff; }

/* 
   ABOUT SECTION
    */
.about-area { position: relative; }
.about-p { padding: 80px 0; }

.s-about-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
  display: block;
}

.s-about-content { padding-left: 36px; }
.s-about-content p { font-size: 15.5px; line-height: 1.85; color: #555; }

/* 
   COURSES / FACULTY CARDS
   NOTE: no overflow:hidden on .courses-item  .cat is top:-18px
    */
.courses { background: #f9f8f5; }

.courses-item {
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--sh-sm);
  border: 1px solid #e8e8e8;
  transition: var(--ease);
  position: relative;
}
.courses-item:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: #ddd;
}

/* Image wrapper  clip only here */
.courses-item .thumb.fix {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}
.courses-item .thumb img,
.courses-item .thumb.fix img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.courses-item:hover .thumb img { transform: scale(1.04); }

/* Category badge */
.courses-content .cat {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 5px 12px;
  border-radius: 2px;
  position: absolute;
  top: -14px;
  right: 24px;
  white-space: nowrap;
}
.courses-content .cat i { margin-right: 5px; }

.courses-content {
  float: none !important;
  width: 100% !important;
  padding: 28px 26px 22px !important;
  position: relative;
}
.courses-content h4 {
  font-family: 'Libre Baskerville', Georgia, serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark);
}
.courses-content h4 a { color: var(--dark); }
.courses-item:hover .courses-content h4 a { color: var(--teal); }
.courses-content p { font-size: 14px; line-height: 1.75; color: #777; margin-bottom: 12px; }
.courses-content a.readmore {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease);
}
.courses-content a.readmore:hover { color: var(--gold); gap: 10px; }

/* Course list page extras */
.courses-content h5 {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: var(--teal) !important;
  margin: 14px 0 8px;
}
.courses-content ul li {
  font-size: 13.5px;
  color: #666;
  padding: 5px 0 5px 16px;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  list-style: none;
}
.courses-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

/* Card watermark icon */
.courses-item .icon {
  float: right;
  margin-top: -52px;
  margin-right: 22px;
  opacity: .12;
  pointer-events: none;
}
.courses-item .icon img { width: 44px; }

/* hover-zoomin (used in events too) */
.hover-zoomin { overflow: hidden; }
.hover-zoomin:hover img { transform: scale(1.04); }

/* ─── COURSES / FACULTIES CAROUSEL (.class-active) ────────────── */
/* Anti-FOUC: show only first card before Slick initializes */
.class-active:not(.slick-initialized) .courses-item + .courses-item { display: none; }

.class-active .slick-list { padding: 18px 0 !important; margin: 0 -10px; overflow: visible; }
.class-active .slick-slide { padding: 0 10px; overflow: visible; }
.class-active .slick-track { display: flex; align-items: stretch; }
.class-active .slick-slide > div { height: 100%; }
.class-active .slick-slide .courses-item { height: 100%; margin-bottom: 0; }

/* Carousel arrows */
.class-active .slick-prev,
.class-active .slick-next {
  position: absolute;
  top: -52px;
  background: transparent;
  border: 1px solid rgba(18,88,117,.3);
  color: var(--teal);
  border-radius: 50%;
  width: 40px; height: 40px; line-height: 40px;
  text-align: center; font-size: 16px;
  cursor: pointer; z-index: 9;
  transition: var(--ease);
}
.class-active .slick-prev:hover,
.class-active .slick-next:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.class-active .slick-prev { right: 52px; left: auto; }
.class-active .slick-next { right: 0; }

/* 
   EVENTS SECTION
    */
.event { background: #fff; }

.event-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid #ebebeb;
  transition: var(--ease);
}
.event-item:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
}
.event-item .thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.event-item:hover .thumb img { transform: scale(1.05); }

.event-content { padding: 24px 26px 22px; }
.event-content .date strong {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(223,189,0,.35);
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}
.event-content h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.event-content h3 a { color: var(--dark); }
.event-item:hover .event-content h3 a { color: var(--teal); }
.event-content p { font-size: 14px; color: #777; line-height: 1.75; }

/* 
   CTA / VISION SECTION
    */
.cta-area {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.cta-bg { position: relative; }
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,88,117,.94) 0%, rgba(20,27,34,.9) 100%);
  z-index: 0;
}
.cta-bg .container { position: relative; z-index: 1; }

.cta-title h5 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.cta-title h2 {
  font-family: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.15;
}
.cta-title p { color: rgba(255,255,255,.8); font-size: 16px; }

/* 
   FAQ SECTION
    */
.faq-area { background: #f9f8f5; position: relative; }
.faq-area .section-title h3 { font-size: clamp(20px, 2.5vw, 28px); }
.faq-area hr { border-color: var(--gold); opacity: .3; margin: 16px 0; }

.faq-wrap .card {
  border: 1px solid #e5e5df;
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-wrap .card-header { background: #fff; border-bottom: none; padding: 0; }
.faq-btn {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 46px 18px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: var(--ease);
}
.faq-btn::after {
  content: '+';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.faq-btn:not(.collapsed) { color: var(--teal); background: rgba(18,88,117,.03); }
.faq-btn:not(.collapsed)::after { content: ''; color: var(--teal); }
.faq-wrap .card-body {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.82;
  color: #666;
  border-top: 1px solid #f0f0ea;
}

/* Enquiry panel */
.contact-bg02 {
  background: var(--teal);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
}
.contact-bg02 h3 { color: #fff !important; }
.contact-form { margin-top: 0; }
.contact-field { position: relative; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.45); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.13); }
.contact-form textarea { height: 130px; resize: none; }
.contact-form .btn { background: var(--gold); border-color: var(--gold); width: 100%; }

/* 
   CONTACT PAGE
    */
.contact-area { background: var(--body-bg); }
.shop-area { background: var(--body-bg); }
.services-box {
  border: 1px solid #e8e8e4;
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  text-align: center;
}
.services-box:hover,
.services-box.active {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  background: #fff;
}
.services-icon { margin-bottom: 16px; }
.services-icon img { width: 52px; height: 52px; object-fit: contain; }
.services-content2 h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.services-content2 p {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

/* Full contact form (Contact page) */
.contact-bg {
  background: var(--teal);
  padding: 40px 38px;
  border-radius: var(--radius);
}
.contact-bg input,
.contact-bg textarea,
.contact-bg select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: var(--ease);
  margin-bottom: 0;
}
.contact-bg input::placeholder,
.contact-bg textarea::placeholder { color: rgba(255,255,255,.45); }
.contact-bg input:focus,
.contact-bg textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.13); }
.contact-bg textarea { height: 150px; resize: none; }
.form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 14px;
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.13);
  color: #fff;
  box-shadow: none;
}

/* Alerts */
.alert-success {
  background: rgba(18,88,117,.08);
  border: 1px solid rgba(18,88,117,.22);
  color: var(--teal);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.alert-danger {
  background: rgba(220,53,69,.07);
  border: 1px solid rgba(220,53,69,.22);
  color: #b93030;
  border-radius: var(--radius);
  padding: 14px 18px;
}

/* 
   ABOUT PAGE  MANAGEMENT TEAM (staffs)
    */
.staffs img {
  width: 70% !important;
  border-radius: var(--radius);
  box-shadow: var(--sh-md);
  transition: var(--ease);
  display: block;
  margin: 0 auto;
}
.staffs img:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.staffs h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 14px;
  margin-bottom: 4px;
  letter-spacing: .3px;
}
.staffs p {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0;
}

/* 
   FOOTER
    */
footer.footer-bg {
  background-color: var(--teal) !important;
  position: relative;
}
footer.footer-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.1), var(--gold));
}
.footer-top { position: relative; z-index: 1; }
.footer-widget { position: relative; }

.f-widget-title h2 {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  color: #fff !important;
  padding-bottom: 14px;
  margin-bottom: 20px;
  position: relative;
}
.f-widget-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.f-contact p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.8; }
.f-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.f-contact ul li .icon { color: var(--gold); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.f-contact ul li img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.f-contact ul li a { color: rgba(255,255,255,.72); }
.f-contact ul li a:hover { color: var(--gold); }

.footer-link ul li { margin-bottom: 9px; }
.footer-link ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: var(--ease);
  position: relative;
  padding-left: 0;
}
.footer-link ul li a:hover { color: var(--gold); padding-left: 5px; }

.copyright-wrap {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.copyrights-text {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.copy-text img { max-height: 42px; width: auto; }

/* 
   VERIFICATION PAGE
    */
#verBox input {
  font-size: 1.8em;
  text-align: center;
  letter-spacing: .3em;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  padding: 12px;
  transition: border-color .3s;
}
#verBox input:focus { border-color: var(--teal); outline: none; }

/* dnumber (verification result display) */
.dnumber {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  color: var(--dark);
}

/* 
   SEARCHFORM (header search)
    */
.searchform { position: relative; }
.searchform input {
  width: 100%;
  padding: 10px 40px 10px 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 14px;
}
.searchform button {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  background: var(--gold);
  border: none;
  padding: 0 14px;
  color: #fff;
  cursor: pointer;
}

/* 
   RESPONSIVE
    */
@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-md-block { display: block !important; }
}

@media (max-width: 1199px) {
  .single-slider { min-height: 680px; }
  .slider-content.s-slider-content { padding-top: 160px; padding-bottom: 80px; }
}

@media (max-width: 991px) {
  .single-slider { min-height: 580px; }
  .slider-content.s-slider-content { padding-top: 130px; padding-bottom: 60px; }
  .slider-content h2 { font-size: clamp(36px, 7vw, 56px) !important; }
  .s-about-content { padding-left: 0; margin-top: 30px; }
  .main-menu { display: none; }
  .mobile-menu { display: block; }
  .header-cta { display: none; }
  .page-hero-banner { min-height: 360px; }
  .page-hero-banner > .container { padding-bottom: 36px; }

  /* ── Mobile nav layout ──────────────────────────────────────────
     Row: [logo | (collapsed main-menu) | hamburger]
     All ancestors from .mean-nav up to .menu-area are position:static
     so the dropdown resolves its absolute position to .menu-area (full width).
  ──────────────────────────────────────────────────────────────── */
  .menu-area { position: relative; }
  .second-menu .row { flex-wrap: nowrap; align-items: stretch; }

  /* Logo col — shrinks to content */
  .second-menu .col-xl-3,
  .second-menu .col-lg-3 { flex: 0 0 auto; width: auto; max-width: 220px; }

  /* Main-menu col — collapse (Bootstrap makes it 100% below lg without this) */
  .second-menu .col-xl-6,
  .second-menu .col-lg-6 { flex: 0; min-width: 0; max-width: 0; overflow: hidden; padding: 0; }

  /* Hamburger col — fills remaining space, button pushed right */
  .mobile-menu-col {
    flex: 1;
    max-width: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  /* mean-container chain: all static so .mean-nav anchors to .menu-area */
  .mean-container { position: static; display: flex; align-items: center; justify-content: flex-end; }
  .mean-container .mean-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }
  /* Hamburger: inline flow, vertically centred via flex parents */
  .mean-container a.meanmenu-reveal { position: static; transform: none; display: flex; }
  /* Dropdown: full-width strip anchored to .menu-area */
  .mean-container .mean-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 999;
  }
}

@media (max-width: 767px) {
  .single-slider { min-height: 520px; }
  .slider-content.s-slider-content { padding-top: 110px; padding-bottom: 50px; }
  .slider-content h2 { font-size: clamp(28px, 8vw, 42px) !important; }
  .slider-content p { font-size: 15px; max-width: 100%; }
  .slider-btn { flex-direction: column; align-items: flex-start; }
  .contact-bg02 { margin-top: 30px; padding: 26px 20px; }
  .faq-wrap { padding-right: 0 !important; }
  .staffs img { width: 55% !important; }
  .second-header { display: none; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .pt-120 { padding-top: 70px; }
  .pb-120 { padding-bottom: 70px; }
  .pt-90  { padding-top: 60px; }
  .pb-90  { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .single-slider { min-height: 460px; }
  .slider-content h2 { font-size: 26px !important; }
  .slider-content.s-slider-content { padding-top: 100px; padding-bottom: 40px; }
  .page-hero-banner { min-height: 300px; }
}