@charset "utf-8";
/* CSS Document */

/* =========================
   GLOBAL FOCUS STYLES
   ========================= */

:focus {
  outline: none;
}

/* Show focus only when keyboard is used */
:focus-visible {
  outline: 3px solid #2563eb;   /* Accessible blue */
  outline-offset: 3px;
  border-radius: 4px;
}

/* Links */
a:focus-visible {
  text-decoration: underline;
}

/* Buttons */
button:focus-visible,
input[type="submit"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

/* Form fields */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}


/* =====================
   GLOBAL STYLES
===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

    /* =====================
   SECTION BACKGROUNDS
===================== */
.section-light {
    background-color: #ffffff;
}

.section-dark {
    background-color: #f5f7fa;
}
section {
    transition: background-color 0.4s ease-in-out;
}

.section-light,
.section-dark {
    border-top: 1px solid rgba(0,0,0,0.4);
}

    
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 80px 20px;
}

.ycontainer {
    display: flex;
    justify-content: center;
}
    
iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
}


/* =====================
   NAVIGATION
===================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s, color 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}

nav.blue {
    background: #40469A
}

nav.white {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

nav.blue a { color: #ffffff; }
nav.white a { color: #000000; }

.logo {
    font-size: 24px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .hide-on-mobile {
    display: none !important; /* !important helps override other styles */
  }
}
nav a:focus-visible {
  background-color: rgba(37, 99, 235, 0.1);
}

    
/* =====================
   HOME SECTION
===================== */
#home {
    background: url('images/schoolmanbg.fw.png') center/cover no-repeat;
    padding-top: 120px;
    text-align: center;
    color: #fff;
}

.video-placeholder {
    width: 80%;
    max-width: 560px;
    height: 315px;
    background: #000;
    margin: auto;
    display: flex;
    justify-content: center;
}

.slogan-row {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slogan {
    color: #000000;
    font-size: 36px;
    font-weight: 800;
}

.see-prices {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}
.see-prices a {
    color: #00F;
}

/* =====================
   ADVANTAGES
===================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.adv-box {
    padding: 10px 20px;
    border: 1px solid #ddd;
    text-align: center;
    transition: transform 0.3s;
}

.adv-box:hover {
    transform: scale(1.05);
}

.adv-box img {
    width: 100px;
    margin-top: 15px;
}

/* =====================
   HOW IT WORKS
===================== */
.how-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

.steps {
    flex: 0 0 60%;
}

.step {
    margin-bottom: 30px;
    text-align: center;
    border: 2px dashed #000;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.how-image {
    flex: 0 0 40%;
}

.how-image img {
    width: 100%;
}

/* =====================
   PRICING (UPDATED)
===================== */
.pricing-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.price-box {
    border: 2px solid #ddd;
    padding: 35px 25px;
    transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.price-box h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.price-box ul {
    list-style: none;
    padding: 0;
}

.price-box li {
    margin-bottom: 10px;
    font-size: 15px;
}

.price-box li::before {
    /* content: "➜ "; */
    content: "➤ ";
    color: #0a58ca;
    font-weight: bold;
}

.price-box.highlight {
    border: 2px solid #0a58ca;
    box-shadow: 0 10px 25px rgba(10, 88, 202, 0.25);
}

.price-box:hover {
    transform: scale(1.05);
    border-color: #0a58ca;
    box-shadow: 0 10px 25px rgba(10, 88, 202, 0.25);
}


    /* =====================
   PRICING – COMPARISON TABLE
===================== */

.pricing-table-wrapper {
    max-width: 100%;
    margin: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.pricing-table th,
.pricing-table td {
    padding: 16px;
    border: 1px solid #ddd;
}

.pricing-table thead th {
    background: #f5f7fa;
    font-size: 18px;
}

.pricing-table .package-name {
    font-size: 22px;
    font-weight: 800;
}

.pricing-table .price {
    font-size: 26px;
    font-weight: bold;
    color: #0a58ca;
    margin: 10px 0;
}

.pricing-table .cta-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #0a58ca;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.pricing-table .cta-btn:focus,
.pricing-table .cta-btn:hover {
    outline: 3px solid #0a58ca;
    background: #084298;
}

.pricing-table td.feature {
    text-align: left;
    font-weight: 600;
}

.pricing-table .yes::before {
    content: "➜ ";
    color: #0a58ca;
    font-weight: bold;
}

.pricing-table .no {
    color: #999;
}

.pricing-highlight {
    background: #eef4ff;
}

/* @media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        font-size: 14px;
        padding: 12px;
    }
}

     =====================
   PRICING – MOBILE FIX
===================== */
@media (max-width: 768px) {

    .pricing-table {
        min-width: 900px; /* Forces horizontal scroll instead of clipping */
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px;
        font-size: 13px;
    }

    .pricing-table .package-name {
        font-size: 16px;
    }

    .pricing-table .price {
        font-size: 18px;
    }

    .pricing-table .cta-btn {
        font-size: 12px;
        padding: 6px 10px;
    }

    .pricing-table td.feature {
        font-size: 13px;
    }
}


/* =====================
   REGISTER
===================== */
form {
    max-width: 800px;
    margin: auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

form label {
    width: 200px;
    font-weight: bold;
}

form input, form select {
    flex: 1;
    padding: 10px;
}

/* =====================
   FOOTER
===================== */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* =====================
   FLOATING BUTTONS
===================== */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 20px;
    font-size: 30px;
}

#scrollTop {
    position: fixed;
    top: 130px;
    right: 20px;
    display: none;
    cursor: pointer;

}
.scroll-top:focus-visible {
  outline: 3px solid #2563eb;
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width: 768px) {
    .how-content {
        flex-direction: column;
    }

    form label {
        width: 100%;
        margin-bottom: 5px;
    }
}
    
    /* =====================
   ACTIVE NAV LINK
===================== */
nav a {
    position: relative;
    padding-bottom: 5px;
}

nav a.active {
    font-weight: 800;
}

nav.blue a.active {
    border-bottom: 3px solid #ffffff;
}

nav.white a.active {
    border-bottom: 3px solid #0a58ca;
}
    
/* =====================
   FOOTER
===================== */
footer {
    background: #111;
    color: #ffffff;
    font-size: 14px;
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    line-height: 1.6;
    color: #ccc;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    padding: 15px 20px;
    color: #aaa;
}
.form-error {
  color: #b91c1c;
  font-size: 0.875rem;
  margin-top: 4px;
}

input[aria-invalid="true"] {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.25);
}

/* =====================
   Mobile RESPONSIVE
===================== */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .form-row {
    display: flex;
    flex-direction: column;
  }
}
.faq-section {
  padding: 4rem 1rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

