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

a { color: inherit; text-decoration: none; }
P { color: #000000; text-decoration: none; }

/* ========================
Navbar structure
======================== */
.site-header { background: #89CFF0; 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: #000000;
  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: #000000; 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: #89CFF0; 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: linear-gradient(180deg,#89CFF0,#FF0000);
  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: #000000;
  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: #000000;
}

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

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

.footer-links h4,
.footer-newsletter h4 {
  color: #000000;
  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: #000000;
  text-decoration: none;
}
.footer-links a:hover {
  color: #000000;
}

/* 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: #000000;
}
.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%;
  }
}

/* ===========================
   Hero slide
   =========================== */

.hero {
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d64231;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.hero-btn:hover {
    background: #e55a00;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #d64231;
}

/* ===========================
   Offer Section
   =========================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f1f1f;
    text-align: center;
}


.what-we-offer {
    padding: 50px 20px;
    background-color: #ffffff;
}

.offer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.offer-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.offer-image,
.offer-text {
    flex: 1;
}

.offer-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.offer-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.offer-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* MOBILE STACK (image on top, text below) */
@media (max-width: 768px) {
    .offer-row {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================
   About Us SECTION
========================= */


/* About Us Page Styles */
.about-container {
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
}

.about-hero {
    padding: 100px 20px 80px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #89CFF0, #081028);
}

.about-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #f7fafa;
}

.about-hero p {
    font-size: 1.2em;
    color: #f7fafa;
    text-align: center;
}

.about-mission,
.about-team,
.about-values {
    margin-bottom: 50px;
    text-align: center;
}

.about-mission h2,
.about-team h2,
.about-values h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

/* Team Members */
.team-members {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    text-align: center;
    width: 200px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #007BFF;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.2em;
}

.team-member p {
    color: #666;
}


.about-values li {
    margin-bottom: 10px;
    font-size: 1.1em;
    text-align: center;
}

/* =========================
   Contact Us SECTION
========================= */
/* Contact Page */
.contact-container {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.contact-hero {
    padding: 100px 20px 80px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #89CFF0, #081028);
}

.contact-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #f7fafa;
}

.contact-hero p {
    color: #666;
    font-size: 1.2em;
    color: #f7fafa;
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 280px;
    padding-left: 150px;
}

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

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.contact-info i {
    margin-right: 10px;
    color: #89CFF0;
}

/* Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    padding-right: 150px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    padding: 12px;
    background-color: #89CFF0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}

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

/* =========================
   Our Partners SECTION
========================= */

/* Partners Page */
.partners-container {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.partners-hero {
    padding: 100px 20px 80px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #89CFF0, #081028);
}

.partners-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #f7fafa;
}

.partners-hero p {
    font-size: 1.2em;
    color: #f7fafa;
}

/* Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
    padding: 20px 20px;
}

.partner-card {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card i {
    font-size: 3em;
    color: #007BFF;
    margin-bottom: 15px;
}

.partner-card h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

.partner-card p {
    color: #555;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Partner Logos */
.partner-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}


/* =========================
   Sponsorship SECTION
========================= */

/* Sponsorship Page */
.sponsor-container {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.sponsor-hero {
    padding: 100px 20px 80px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #89CFF0, #081028);
}

.sponsor-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #f7fafa;
}

.sponsor-hero p {
    font-size: 1.2em;
    color: #f7fafa;
}

.sponsor-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    padding: 20px 20px;
}

.sponsor-text,
.sponsor-cta {
    flex: 1;
    min-width: 280px;
}

.sponsor-text ul {
    margin-top: 15px;
    padding-left: 20px;
}

.sponsor-text li {
    margin-bottom: 10px;
}

.sponsor-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #89CFF0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.sponsor-btn:hover {
    background-color: #65b9e0;
}

/* =========================
   testimones SECTION
========================= */

/* Testimonies Page */
.testimony-container {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.testimony-hero {
    padding: 100px 20px 80px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #89CFF0, #081028);
}

.testimony-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #f7fafa;
}

.testimony-hero p {
    font-size: 1.2em;
    color: #f7fafa;
}

.testimony-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
    padding: 20px 20px;
}

.testimony-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    font-style: italic;
}

.testimony-card h3 {
    margin-top: 15px;
    font-style: normal;
    color: #333;
}

/* =========================
   Powered By Section
========================= */

.powered-by {
    padding: 10px 20px;
    background: linear-gradient(135deg, #081028, #89CFF0);
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers image */
    text-align: center;    /* centers text */
}

.powered-by h1 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #f7fafa;
}

.powered-by-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.powered-by p {
    max-width: 1000px;
    font-size: 1.1em;
    color: #f7fafa;
    line-height: 1.6;
}
/* =========================
   Adviser SECTION
========================= */
.txf-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #89CFF0, #081028);
}

.txf-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.txf-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.txf-hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #fff;
}

.txf-section {
  padding: 60px 20px;
}

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

.txf-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.txf-service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txf-service-card h3 {
  margin-bottom: 10px;
}

.txf-cta {
  margin-top: 60px;
  padding: 40px;
  background: #e9eef3;
  text-align: center;
  border-radius: 8px;
}

.txf-btn-primary,
.txf-btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.txf-btn-primary {
  background-color: #89CFF0;
  color: #fff;
}

.txf-btn-secondary {
  background-color: #89CFF0;
  color: #fff;
}

/* =========================
   Get started form SECTION
========================= */

/* Form container */
.txf-form {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Form groups */
.txf-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.txf-form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

/* Inputs, select, textarea */
.txf-form-group input,
.txf-form-group select,
.txf-form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

/* Textarea */
.txf-form-group textarea {
    resize: vertical;
}

/* Submit button */
.txf-form button {
    background-color: #89CFF0;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.txf-form button:hover {
   background-color: #65b9e0;
}

/* Success and error messages */
.txf-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.txf-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .txf-form {
        padding: 20px;
    }
}

/* =========================
   Form feedback messages
========================= */

/* Form feedback messages */
.success,
.error {
    max-width: 600px;
    margin: 200px auto;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

/* Success message */
.success {
    background-color: #e6f6ed;
    color: #1e7e34;
    border: 1px solid #b7e4c7;
}

/* Error message */
.error {
    background-color: #fdecea;
    color: #a71d2a;
    border: 1px solid #f5c2c7;
}

.success,
.error {
    animation: fadeIn 0.4s ease-in-out;
}

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