/* 
    Created on : 10 Oct 2025, 15:16:57
    Author     : njabulomahlangu
*/

a { color: inherit; text-decoration: none; }

/* ========================
Navbar structure
======================== */
.site-header { background: #6B3E52; color: #fff; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
nav.navbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }

/* brand */
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.05rem; }
.brand .logo { width: 36px; height: 36px; display:inline-block; border-radius:6px; background: linear-gradient(135deg,#6366f1,#06b6d4); }

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
}
.brand-name {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: inherit;
  text-decoration: none;
}

/* nav links (desktop) */
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.nav-links li { position: relative; }
.nav-links a { display: inline-block; padding: 8px 12px; border-radius: 6px; color: #e6eef8; font-weight:500; }
.nav-links a:hover, .nav-links a:focus { background: rgba(255,255,255,0.06); outline: none; }
.nav-links .active { background: rgba(255,255,255,0.12); }


/* right area */
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn { padding: 8px 12px; border-radius: 6px; font-weight:600; cursor: pointer; }
.btn.primary { background: #06b6d4; color: #062024; border: none; }
.btn.ghost { background: transparent; color: #cfeaf3; border: 1px solid rgba(255,255,255,0.06); }

/* hamburger (mobile) */
.hamburger { display: none; background: transparent; border: 0; color: inherit; padding: 8px; cursor: pointer; }
.hamburger .bar { display:block; width:20px; height:2px; background: #fff; margin:4px 0; border-radius:2px; }

/* mobile menu panel */
.mobile-panel { display: none; }
.mobile-panel.open { display: block; }
.mobile-panel ul { list-style:none; margin:0; padding: 12px 0; }
.mobile-panel a { display:block; padding: 10px 0; }

/* dropdown styling (for submenus) */
.dropdown { position: relative; }
.dropdown-toggle::after { content: "\25BE"; margin-left:6px; font-size:0.6rem; }
.dropdown-menu { position: absolute; left: 0; top: calc(100% + 8px); background: #071023; min-width: 200px; padding: 8px; border-radius: 8px; box-shadow: 0 8px 20px rgba(2,6,23,0.6); display: none; z-index: 80; }
.dropdown-menu a { display:block; padding: 8px; border-radius:6px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }

/* ========================
Responsive rules
======================== */
@media (max-width: 900px) {
.nav-links { display: none; }
.hamburger { display: inline-flex; }
.nav-actions { display: none; }
.mobile-panel { background: linear-gradient(180deg,#081028,#041223); padding: 12px 0; }
}

/* tablet tweaks */
@media (min-width: 901px) and (max-width: 1100px) {
.container { padding: 0 20px; }
}

/* small-phone tweaks */
@media (max-width: 420px) {
.brand { font-size: 0.96rem; }
.brand .logo { width:30px; height:30px; }
}

/* focus-visible for keyboard users */
:focus { outline: none; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(6,182,212,0.22); outline-offset: 2px; }


/* ===========================
   Footer Styles
   =========================== */
.site-footer {
  background: #6B3E52;
  color: #e5e7eb;
  padding: 50px 0 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: start;
}

/* ===========================
   Footer Logo
   =========================== */
.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-right: 10px;
}

.footer-brand-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.footer-logo-link:hover .footer-brand-name {
  color: #06b6d4;
}

.footer-brand .brand {
  margin-bottom: 10px;
}
.footer-description {
  max-width: 280px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-links h4,
.footer-newsletter h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}
.footer-links a:hover {
  color: #06b6d4;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #1e293b;
  background: #1e293b;
  color: #e2e8f0;
}
.newsletter-form input::placeholder {
  color: #94a3b8;
}
.newsletter-form button {
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  background: #06b6d4;
  color: #062024;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-form button:hover {
  background: #0ea5e9;
}

/* Social links */
.social-links {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}
.social-links a {
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.social-links a:hover {
  color: #06b6d4;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding-top: 15px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .site-footer {
    padding: 40px 16px 20px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* ===========================
   categories Page
   =========================== */

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0f172a;
}

/* Hero Section */
.partners-hero {
  background: linear-gradient(135deg, #6B3E52, #081028);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}

.partners-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.partners-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #e2e8f0;
}

/* Partners Grid */
.Categories-list {
  background: #f8fafc;
  padding: 60px 0;
}

.Categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.Categories-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column; /* ← stack image & text vertically */
  align-items: center;    /* center horizontally */
  justify-content: center;
  text-align: center;     /* center text */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.Categories-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.Categories-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.Categories-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.Categories-card p {
  margin-top: 10px; /* adds space under the image */
  font-weight: 500;
  color: #333;
}


/* CTA Section */
.Category-cta {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.Category-cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.Category-cta p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 24px;
  color: #e0f7ff;
}


/* ===========================
   Promotion Section Accommodations
   =========================== */

.Promotions-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #111827;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.promo-title {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: #ff5ca2; /* matches your brand pink */
  text-align: center;
}

.Promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: start;
}

.Promo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 90%;
  max-width: 420px; /* ✅ ensures two fit per row comfortably */
}

.Promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.Promo-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
}

.Promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* === Search Controls for Promotions === */
.search-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-controls input,
.search-controls select {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-controls input:focus,
.search-controls select:focus {
  border-color: #ff5ca2;
  box-shadow: 0 0 0 3px rgba(255, 92, 162, 0.2);
}

.search-controls .btn {
  background: linear-gradient(135deg, #ff5ca2, #ff7eb9);
  color: white;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.search-controls .btn:hover {
  background: linear-gradient(135deg, #ff4f97, #ff6da8);
  transform: scale(1.05);
}

/* === Promo Grid Responsiveness === */
.Promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

.Promo-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.Promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.Promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.Promo-card p {
  padding: 16px;
  font-size: 1rem;
  color: #374151;
}


/* ===========================
   University Page
   =========================== */

.University-section {
  background: #f9fafb;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px; 
}

.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 20px;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 20px auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.University-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 90px;
  justify-items: center;
}

.University-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.University-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.University-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.University-card h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 6px;
}

.University-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ad3d6f;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad3d6f;
}


/* ===========================
   Medical School Page
   =========================== */

.Medical-section {
  background: #f9fafb;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px; 
}

.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 20px;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 20px auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.Medical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 90px;
  justify-items: center;
}

.Medical-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Medical-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.Medical-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.Medical-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 6px;
}

.Medical-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ad3d6f; /* same Student Hub pink */
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad3d6f;
}


/* ===========================
   Business School Page
   =========================== */

.Business-section {
  background: #f8fafc;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px; 
}

.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 24px;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 20px auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.Business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 90px;
  justify-items: center;
}

.Business-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.Business-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.Business-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 6px;
  font-weight: 600;
}

.Business-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ad3d6f; /* teal accent for business tone */
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad3d6f;
}

/* ===========================
   Flights School Page
   =========================== */

.Flight-section {
  background: #f9fafb;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px; 
}

.section-title {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 24px;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 20px auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.Flight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 90px;
  justify-items: center;
}

.Flight-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Flight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.Flight-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.Flight-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 600;
}

.Flight-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ad3d6f;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background:#ad3d6f;
}



/* ===========================
   Private Collages Page
   =========================== */


.PrivateC-section {
  background: #f9fafb;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px; 
}

.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 24px;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 20px auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.PrivateC-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 90px;
  justify-items: center;
}

.PrivateC-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.PrivateC-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.PrivateC-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

PrivateC-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 6px;
  font-weight: 600;
}

.PrivateC-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ad3d6f;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad3d6f;
}


/* ===========================
   TVET Collages Page
   =========================== */

.TVET-section {
  background: #f9fafb;
  padding: 20px 20px;
  text-align: center;
  margin-bottom: 40px;   
}

.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 24px;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 20px auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.TVET-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 90px;
  justify-items: center;
}

.TVET-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.TVET-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.TVET-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

TVET-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 6px;
  font-weight: 600;
}

.TVET-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ad3d6f;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad3d6f;
 }
 
 /* ===========================
   University Bursaries Page
   =========================== */
 
 .Bursaries-section {
  background: #ffffff;
  padding: 20px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 0 auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.Bursaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  justify-items: center;
}

.Bursary-card {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Bursary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.Bursary-card h3 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.Bursary-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.btn {
  display: inline-block;
  background: #ff5ca2; /* Student Hub pink */
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e14b8e;
}

 /* ===========================
   Collage Bursaries Page
   =========================== */

/* ===== General Page Layout ===== */
.Bursaries-section {
  background: #ffffff;
  padding: 20px 20px;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
}

/* Optional variant for College Bursaries page */
.Bursaries-section.college {
  background: #fff7fa; /* subtle Student Hub pink tint */
}

/* ===== Section Titles ===== */
.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 8px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== Search Bar ===== */
.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 0 auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
  outline: none;
  transition: all 0.3s ease;
}

.search-bar:focus {
  border-color: #ff5ca2;
  box-shadow: 0 0 0 3px rgba(255, 92, 162, 0.2);
}

/* ===== Grid Layout ===== */
.Bursaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 70px;
  justify-items: center;
}

/* ===== Individual Bursary Cards ===== */
.Bursary-card {
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  width: 100%;
  max-width: 380px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid #f3f4f6;
}

.Bursary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: #fff;
}

/* ===== Card Text ===== */
.Bursary-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 12px;
  font-weight: 600;
}

.Bursary-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ===== Apply Button ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff5ca2, #ff7eb9);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #ff4f97, #ff6da8);
  transform: scale(1.05);
}

/* ===== Responsive Layout ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .search-bar {
    max-width: 90%;
    margin-bottom: 40px;
  }

  .Bursaries-grid {
    gap: 24px;
  }

  .Bursary-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .Bursary-card h3 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/* ===========================
   Province Page
   =========================== */

.Province-section {
  background: #f9fafb;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px; 
}

.section-title {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 20px;
}

.search-bar {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin: 20px auto 60px;
  border: 1px solid #ad3d6f;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

.Province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 90px;
  justify-items: center;
}

.Province-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Province-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.Province-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.Province-card h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 6px;
}

.Province-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ad3d6f;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad3d6f;
}
 
/* ===== Responsive Layout ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .search-bar {
    max-width: 90%;
    margin-bottom: 40px;
  }

  .Bursaries-grid {
    gap: 24px;
  }

  .Bursary-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .Bursary-card h3 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/* ===========================
   Career Page
   =========================== */
   
  .career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.career-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.section-subtitle p {
    text-align: Center;
}

/* ===========================
   CV Page
   =========================== */
.cv-content {
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

.cv-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.cv-content h3 {
  margin-top: 25px;
}

.cv-content ul {
  margin-left: 20px;
}

.cv-cta {
  background: #f8f8f8;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border-radius: 10px;
}

/* ===========================
   Interview Page
   =========================== */

.interview-content {
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

.interview-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.interview-content ul {
  margin-left: 20px;
}

.interview-cta {
  background: #f5f5f5;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border-radius: 10px;
}

/* ===========================
   LinkedIn Page
   =========================== */
.linkedin-content {
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

.linkedin-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.linkedin-content ul {
  margin-left: 20px;
}

.linkedin-cta {
  background: #f5f5f5;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border-radius: 10px;
}


.agency-content {
  max-width: 1000px;
  margin: auto;
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .agency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .agency-grid {
    grid-template-columns: 1fr;
  }
}

.agency-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.agency-cta {
  background: #f5f5f5;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border-radius: 10px;
}

/* ===========================
   Agency Page
   =========================== */

/* ===== Recruitment Agency Contact Page ===== */

.agency-contact {
  padding: 80px 20px;
  background-color: #fafafa;
}

.agency-contact .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Titles */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
  color: #555;
  line-height: 1.6;
}

/* Benefits Box */
.agency-benefits {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.agency-benefits h2 {
  margin-bottom: 15px;
}

.agency-benefits ul {
  padding-left: 18px;
  line-height: 1.8;
}

/* Form Card */
.agency-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Grid Layout */
.agency-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

/* Full width fields */
.agency-form .full-width {
  grid-column: span 2;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #333;
  outline: none;
}

/* Textareas taller */
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Button */
.agency-form button {
  grid-column: span 2;
  padding: 14px;
  background-color: #ad3d6f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.agency-form button:hover {
  background-color: #ad3d6f;
}

/* Mobile */
@media (max-width: 768px) {
  .agency-form form {
    grid-template-columns: 1fr;
  }

  .agency-form button {
    grid-column: span 1;
  }

  .agency-form .full-width {
    grid-column: span 1;
  }
}

/* ===========================
   Contact Page
   =========================== */
   
   /* ===== Contact Page ===== */

/* ===== Contact Page (Refined Layout) ===== */

.contact-page {
  padding: 100px 20px;
  background-color: #f8f9fb;
}

.contact-page .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Titles */
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px auto;
  color: #555;
  line-height: 1.7;
}

/* Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Left Info Card */
.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Form Card */
.contact-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

/* Form Grid */
.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

/* Full Width Fields */
.contact-form .full-width {
  grid-column: span 2;
}

/* Labels */
.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

/* Inputs */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
  transition: all 0.2s ease;
  background-color: #fff;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #111;
  outline: none;
}

/* Textarea */
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Button */
.contact-form button {
  grid-column: span 2;
  margin-top: 10px;
  padding: 16px;
  background-color: #ad3d6f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-form button:hover {
  background-color: #ad3d6f;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form form {
    grid-template-columns: 1fr;
  }

  .contact-form .full-width {
    grid-column: span 1;
  }

  .contact-form button {
    grid-column: span 1;
  }
}

/* ===========================
   About Page
   =========================== */

.about-page {
  padding: 100px 20px;
  background-color: #f8f9fb;
}

.about-page .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px auto;
  color: #555;
  line-height: 1.7;
}

.about-section {
  margin-bottom: 50px;
}

.about-section h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.about-section p {
  line-height: 1.7;
  color: #333;
}

.about-section ul {
  padding-left: 20px;
  line-height: 1.8;
}