/* ============================================
   HOME PAGE - HERO SECTION
   ============================================ */
.hero-section {
    background: #3b3d97;
    color: #fff;
    padding: 100px 20px 150px;
    text-align: center;
    position: relative;
}
.hero-welcome {
    letter-spacing: 5px;
    font-size: 13px;
    margin-bottom: 20px;
    font-weight: 500;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.9;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary-blue { background: #4c68d9; color: #fff; }
.btn-primary-blue:hover { background: #3b52b8; }
.btn-dark { background: #000; color: #fff; }
.btn-dark:hover { background: #333; }
.btn-small { padding: 10px 24px; font-size: 12px; }

/* ============================================
   STATS CARDS
   ============================================ */
.stats-section {
    margin-top: -80px;
    position: relative;
    z-index: 5;
    padding-bottom: 60px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.stat-card h3 {
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}
.stat-card p {
    color: #777;
    font-size: 14px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 60px 20px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}
.about-title {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}
.about-text-col p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}
.link-underline { color: #3b3d97; text-decoration: underline; }
.about-main-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}
.about-small-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-small-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
}
.about-values {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}
.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.value-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #4c68d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c68d9;
    font-size: 20px;
    flex-shrink: 0;
}
.value-content h4 {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 5px;
}
.value-content p {
    color: #666;
    font-size: 14px;
}
.about-values .btn { align-self: flex-start; margin-top: 10px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: url('../images/cta-bg.jpg') center/cover no-repeat;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    position: relative;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-content p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.7;
}
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 80px 20px; background: #fff; }
.section-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.service-card {
    background: #f8f8f8;
    padding: 30px 25px;
    border-radius: 4px;
    transition: 0.3s;
}
.service-icon {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
}
.service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}
.service-card.highlight-card {
    background: #4c68d9;
    color: #fff;
}
.highlight-card .service-icon,
.highlight-card h4,
.highlight-card p { color: #fff; }

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section { padding: 60px 20px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    transition: 0.3s;
}
.gallery-item img:hover { transform: scale(1.03); }

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section { padding: 60px 20px; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.news-card {
    background: #3b3d97;
    color: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid #3b3d97;
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-content { padding: 20px; }
.news-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-content p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 15px;
}
.read-more {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}
.read-more:hover { text-decoration: underline; }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section { padding: 60px 20px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.team-card {
    background: #fff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-radius: 4px;
}
.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}
.team-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}
.team-role {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}
.team-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   CEO MESSAGE
   ============================================ */
.ceo-section { padding: 40px 20px; }
.ceo-box {
    background: #3b3d97;
    color: #fff;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 30px;
    border-radius: 4px;
    align-items: center;
}
.ceo-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
}
.ceo-message h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}
.ceo-message p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}
.ceo-signature {
    margin-top: 15px;
    font-size: 14px;
}
.ceo-signature span { opacity: 0.85; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section { padding: 80px 20px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-label {
    font-size: 13px;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.contact-text h2 {
    font-size: 36px;
    color: #000;
    font-weight: 700;
    line-height: 1.3;
}
.contact-form .form-group {
    margin-bottom: 25px;
}
.contact-form label {
    display: block;
    color: #888;
    font-size: 13px;
    margin-bottom: 5px;
}
.contact-form input,
.contact-form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    background: transparent;
    font-size: 15px;
    color: #333;
    outline: none;
}
.contact-form input:focus,
.contact-form select:focus {
    border-bottom-color: #4c68d9;
}
.phone-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ccc;
}
.phone-input input { border: none; }
.country-code img { display: block; }

/* ============================================
   HOMEPAGE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .ceo-box { grid-template-columns: 1fr; }
    .ceo-image img { height: 250px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-text h2 { font-size: 26px; }
    .cta-content h2 { font-size: 26px; }
    .section-heading { font-size: 28px; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 26px; }
    .hero-buttons .btn { width: 100%; }
}
/* ============================================
   PAGE BANNER (Used on all inner pages)
   ============================================ */
.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 20px;
    position: relative;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(59, 61, 151, 0.7);
}
.banner-content {
    position: relative;
    z-index: 2;
}
.banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
}

/* ============================================
   ABOUT DETAIL SECTION
   ============================================ */
.about-detail-section { padding: 80px 20px; background: #fff; }
.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.small-label {
    font-size: 12px;
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.about-detail-text h2 {
    font-size: 34px;
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.line-accent {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #3b3d97;
}
.about-detail-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.pahsrf-signature {
    color: #f39c12 !important;
    font-size: 13px !important;
    letter-spacing: 1px;
}
.about-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* ============================================
   ABOUT STATS SECTION
   ============================================ */
.about-stats-section { padding: 20px 20px 80px; }
.about-stats-box {
    background: #f5f5f5;
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-radius: 4px;
}
.about-stat-item h3 {
    font-size: 48px;
    color: #000;
    font-weight: 400;
    margin-bottom: 15px;
}
.stat-line {
    width: 40px;
    height: 2px;
    background: #3b3d97;
    margin-bottom: 15px;
}
.about-stat-item p {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

/* ============================================
   CEO VIDEO SECTION
   ============================================ */
.ceo-video-section { padding: 60px 20px; text-align: center; }
.ceo-video-text {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}
.ceo-video-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 39.375%; /* 16:9 for 700px width */
    height: 0;
    overflow: hidden;
    border-radius: 6px;
}
.ceo-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */
.registration-section {
    background: #3b3d97;
    padding: 60px 20px;
    color: #fff;
    margin-top: 40px;
}
.registration-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}
.registration-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.registration-text p {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}
.certificate-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.certificate-images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
}

/* ============================================
   INFO IMAGES SECTION
   ============================================ */
.info-images-section { padding: 60px 20px; }
.info-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}
.info-image-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #3b3d97;
}

/* ============================================
   DONATE CTA BAR
   ============================================ */
.donate-cta-bar {
    background: #4c68d9;
    padding: 30px 20px;
    color: #fff;
}
.donate-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.donate-cta-flex p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    max-width: 700px;
}

/* ============================================
   ABOUT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .banner-content h1 { font-size: 36px; }
    .about-detail-grid { grid-template-columns: 1fr; }
    .about-detail-image img { height: 300px; }
    .about-stats-box { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
    .about-stat-item h3 { font-size: 36px; }
    .registration-grid { grid-template-columns: 1fr; text-align: center; }
    .certificate-images img { height: 250px; }
    .info-images-grid { grid-template-columns: 1fr; }
    .donate-cta-flex { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .about-stats-box { grid-template-columns: 1fr; }
    .certificate-images { grid-template-columns: 1fr; }
    .banner-content h1 { font-size: 28px; }
    .page-banner { min-height: 300px; padding: 100px 20px; }
}

/* ============================================
   INTRO PARAGRAPH SECTION
   ============================================ */
.intro-para-section { padding: 50px 20px 30px; }
.intro-para {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #3b3d97;
    font-size: 15px;
    line-height: 1.7;
}
.banner-subtitle {
    font-size: 16px;
    margin-top: 10px;
    color: #fff;
    opacity: 0.9;
}

/* ============================================
   BENEFITS + FORM (Volunteer & Internship)
   ============================================ */
.benefits-form-section { padding: 40px 20px 80px; }
.benefits-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.benefits-column h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}
.benefits-list {
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
}
.benefits-list > li {
    margin-bottom: 15px;
}
.benefits-list strong {
    color: #000;
    display: block;
    margin-bottom: 5px;
}
.benefits-list ul {
    padding-left: 20px;
    list-style: disc;
    margin-top: 5px;
}
.how-to-heading { margin-top: 30px; }
.how-to-text {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-top: 10px;
}

/* Form Column */
.form-column h2 {
    font-size: 32px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}
.form-sub {
    color: #f39c12;
    font-size: 14px;
    margin-bottom: 30px;
}
.app-form .form-group {
    margin-bottom: 20px;
}
.app-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.app-form label {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}
.app-form input,
.app-form select,
.app-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 14px;
    color: #333;
    border-radius: 3px;
    font-family: inherit;
}
.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus {
    outline: none;
    border-color: #3b3d97;
    background: #fff;
}

/* Alerts */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ============================================
   REGISTRATION FORM (Child)
   ============================================ */
.registration-form-section { padding: 50px 20px 80px; }
.reg-form {
    max-width: 900px;
    margin: 0 auto;
}
.reg-form .form-group {
    margin-bottom: 18px;
}
.reg-form label {
    display: block;
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
    font-weight: 500;
}
.reg-form input,
.reg-form select,
.reg-form textarea {
    width: 100%;
    padding: 12px;
    background: #f2f2f2;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
}
.reg-form input:focus,
.reg-form select:focus,
.reg-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: #3b3d97;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.form-panel {
    background: #f9f9f9;
    padding: 20px;
    border-left: 3px solid #ddd;
    margin-bottom: 18px;
}
.panel-label {
    font-weight: 600;
    color: #000 !important;
    margin-bottom: 15px !important;
    display: block;
}
.form-panel input,
.form-panel select {
    background: #fff;
}

.checkbox-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 10px 0;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #3b3d97 !important;
    cursor: pointer;
    font-weight: 500 !important;
}
.check-item input { width: auto !important; margin-top: 3px; }

.form-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 25px 0;
}
.section-mini-title {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    margin: 15px 0 10px;
}

.consent-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}
.consent-block ul {
    padding-left: 20px;
    margin: 10px 0;
    list-style: disc;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}
.consent-block .check-item {
    align-items: flex-start;
    color: #333 !important;
    font-weight: normal !important;
}
.link-blue { color: #3b3d97; text-decoration: underline; }

.upload-box {
    background: #f2f2f2;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    border: 1px dashed #ccc;
}
.upload-box i {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
    display: block;
}
.upload-box p {
    font-size: 13px;
    color: #666;
}
.upload-btn {
    color: #f39c12;
    text-decoration: underline;
    cursor: pointer;
    display: inline !important;
    margin: 0 !important;
    font-weight: normal !important;
}

.btn-blue-bright {
    background: #4c9be8;
    color: #fff;
}
.btn-blue-bright:hover { background: #3a89d6; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .benefits-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .form-row-4 { grid-template-columns: 1fr 1fr; }
    .app-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .form-row-4 { grid-template-columns: 1fr; }
    .checkbox-row { flex-direction: column; gap: 10px; }
}
/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.banner-overlay-dark {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,20,60,0.55);
}
.privacy-banner { min-height: 400px; }

.privacy-content-section { padding: 60px 20px 80px; }
.privacy-content {
    max-width: 850px;
    margin: 0 auto;
}
.privacy-content p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}
.privacy-content p strong {
    color: #000;
    font-weight: 700;
    display: inline;
}
.privacy-content p span {
    color: #3b3d97;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-banner { min-height: 400px; }
.services-list-section { padding: 80px 20px; background: #fff; }

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.service-row.reverse .service-img { order: 2; }
.service-row.reverse .service-info { order: 1; }

.service-img img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 4px;
}

.service-info-icon {
    font-size: 34px;
    color: #3b3d97;
    margin-bottom: 15px;
}
.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.service-info p {
    color: #3b3d97;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

/* ============================================
   HISTORY PAGE
   ============================================ */
.our-story-section { padding: 70px 20px; }
.story-heading {
    font-size: 32px;
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.story-text {
    max-width: 1000px;
    margin: 0 auto 25px;
}
.story-text p {
    color: #3b3d97;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.story-quote {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    font-family: 'Brush Script MT', cursive;
    font-size: 26px;
    color: #333;
    font-style: italic;
    line-height: 1.5;
}
.story-images {
    max-width: 700px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border: 2px solid #333;
    padding: 5px;
}
.story-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.story-highlight {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    color: #f39c12;
    font-size: 15px;
    line-height: 1.6;
}

.history-bottom-grid {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.history-bottom-text p {
    color: #3b3d97;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.history-bottom-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
}
.history-bottom-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .service-row { grid-template-columns: 1fr; gap: 25px; margin-bottom: 60px; }
    .service-row.reverse .service-img { order: 1; }
    .service-row.reverse .service-info { order: 2; }
    .service-info p { max-width: 100%; }
    
    .history-bottom-grid { grid-template-columns: 1fr; }
    .story-quote { font-size: 20px; }
    .story-heading { font-size: 26px; text-align: center; }
}

@media (max-width: 576px) {
    .privacy-banner, .services-banner { min-height: 280px; }
    .story-images { grid-template-columns: 1fr; }
    .story-images img { height: 180px; }
}

/* ============================================
   COURSES PAGE
   ============================================ */
.courses-section { padding: 40px 20px 80px; min-height: 400px; }
.courses-top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.dashboard-btn {
    background: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.course-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 12px;
}
.course-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}
.course-body { padding: 15px 5px; }
.course-body h4 {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}
.course-btn {
    display: block;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #3b3d97;
    font-size: 13px;
    transition: 0.3s;
}
.course-btn:hover { background: #3b3d97; color: #fff; border-color: #3b3d97; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.banner-overlay-light {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}
.contact-page-section { padding: 80px 20px; }
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.small-label-2 {
    font-size: 12px;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.line-accent-small {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #f39c12;
}
.contact-page-text h2 {
    font-size: 40px;
    color: #000;
    font-weight: 700;
    line-height: 1.3;
}

.contact-simple-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}
.contact-simple-form .form-group {
    margin-bottom: 25px;
    position: relative;
}
.contact-simple-form input,
.contact-simple-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    background: transparent;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
}
.contact-simple-form input::placeholder,
.contact-simple-form textarea::placeholder {
    color: #f39c12;
    font-size: 14px;
}
.contact-simple-form input:focus,
.contact-simple-form textarea:focus {
    border-bottom-color: #3b3d97;
}
.contact-simple-form textarea {
    border: 1px solid #eee;
    padding: 12px;
    resize: vertical;
}
.phone-group {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ccc;
}
.phone-group input { border: none; padding: 10px 0; }
.country-flag img { display: block; }
.char-count {
    position: absolute;
    right: 5px;
    bottom: -20px;
    font-size: 11px;
    color: #999;
}

/* Head Office */
.head-office-section {
    text-align: center;
    padding: 40px 20px 30px;
}
.office-icon {
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
}
.head-office-section h2 {
    font-size: 28px;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
}
.head-office-section p {
    color: #3b3d97;
    font-size: 14px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.map-section {
    padding: 20px 0;
    line-height: 0;
}
.map-section iframe { display: block; }

/* ============================================
   LANGUAGE SWITCHER DROPDOWN
   ============================================ */
.lang-select { position: relative; }
.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    min-width: 160px;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
    margin-top: 5px;
}
.lang-menu.show { display: block; }
.lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: 0.2s;
}
.lang-menu li:hover { background: #f5f5f5; }
.lang-menu li img { width: 20px; }

/* Hide Google Translate branding */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.goog-logo-link, .goog-te-gadget span { display: none !important; }
.goog-te-gadget { color: transparent !important; font-size: 0 !important; }

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float:hover { transform: scale(1.1); }

.wa-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
}
.wa-box.open { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.wa-header {
    background: #075e54;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wa-header-info { display: flex; align-items: center; gap: 12px; }
.wa-avatar {
    width: 40px; height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.wa-header p { font-size: 11px; opacity: 0.85; margin: 0; }
.wa-close { font-size: 24px; cursor: pointer; line-height: 1; }
.wa-body {
    background: #e5ddd5;
    padding: 20px;
    min-height: 120px;
}
.wa-message {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 85%;
}
.wa-footer { padding: 15px; background: #fff; }
.wa-start-chat {
    display: block;
    background: #25d366;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}
.wa-start-chat i { margin-right: 8px; }
.wa-start-chat:hover { background: #128c7e; }

/* ============================================
   ACCESSIBILITY WIDGET
   ============================================ */
.accessibility-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}
.accessibility-float {
    width: 50px;
    height: 50px;
    background: #004488;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-panel {
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 340px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    padding: 15px;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}
.acc-panel.open { display: block; }
.acc-panel.oversized { width: 440px; font-size: 1.15em; }

.acc-header { margin-bottom: 15px; }
.acc-help-btn {
    width: 100%;
    background: #004488;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.acc-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
}

.switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.switch input { display: none; }
.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 22px;
    transition: 0.3s;
}
.slider-round:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 3px; bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
.switch input:checked + .slider-round { background: #004488; }
.switch input:checked + .slider-round:before { transform: translateX(18px); }

.acc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}
.acc-item {
    background: #f5f5f5;
    padding: 20px 10px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid transparent;
}
.acc-item:hover { background: #e8e8e8; }
.acc-item.active,
.acc-item:active { border-color: #004488; }
.acc-item i { font-size: 22px; color: #004488; display: block; margin-bottom: 8px; }
.acc-item span { font-size: 12px; color: #333; font-weight: 500; }

.acc-reset {
    width: 100%;
    background: #004488;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}
.acc-reset i { margin-right: 6px; }

/* ============================================
   ACCESSIBILITY MODE STYLES (applied to body)
   ============================================ */
body.acc-contrast { filter: contrast(1.5); }
body.acc-highlight-links a { background: yellow !important; color: black !important; text-decoration: underline !important; }
body.acc-bigger-text { font-size: 118% !important; }
body.acc-text-spacing { letter-spacing: 2px !important; word-spacing: 5px !important; }
body.acc-pause-animations *, body.acc-pause-animations *:before, body.acc-pause-animations *:after {
    animation: none !important;
    transition: none !important;
}
body.acc-hide-images img { visibility: hidden; }
body.acc-dyslexia, body.acc-dyslexia * {
    font-family: 'Comic Sans MS', 'OpenDyslexic', cursive !important;
}
body.acc-cursor, body.acc-cursor * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><polygon points="8,4 8,40 18,32 24,44 30,42 24,30 36,30" fill="black" stroke="white" stroke-width="2"/></svg>') 4 4, auto !important; }
body.acc-tooltips [title]:hover:after { content: attr(title); position: absolute; background: #000; color: #fff; padding: 5px 10px; border-radius: 4px; font-size: 12px; z-index: 99999; }
body.acc-line-height * { line-height: 2 !important; }
body.acc-text-align * { text-align: left !important; }
body.acc-saturation { filter: saturate(2); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-page-text h2 { font-size: 28px; }
    .contact-simple-form .form-row { grid-template-columns: 1fr; gap: 25px; }
    .wa-box { width: 280px; }
    .acc-panel { width: 300px; }
    .acc-panel.oversized { width: 320px; }
}

@media (max-width: 576px) {
    .courses-grid { grid-template-columns: 1fr; }
    .whatsapp-widget { bottom: 20px; right: 20px; }
    .accessibility-widget { bottom: 20px; left: 20px; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 28px; }
}