/* RESET */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= HEADER ================= */

.top-header {
    background: #eeeeee;
    padding: 15px 0;
}

body {
    background: #eeeeee;
}

.top-header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.logo {
    height: 40px;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    width: 100%;
}

.hero picture img {
    width: 100%;
    display: block;
}

/* CTA Button Position (adjust based on design) */
.hero-btn {
    position: absolute;
    left: 4%;
    bottom: 30% !important;
    background: #ffc107;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-family: Arial;
}

/* ================= KEY FIGURES ================= */

.key-figures {
    width: 100%;
    margin-top: -80px; /* overlap hero */
    position: relative;
    z-index: 5;
}

.key-figures picture img {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero-btn {
        left: 6%;
        bottom: 18%;
        padding: 10px 20px;
        font-size: 14px;
    }

    .key-figures {
        margin-top: -50px;
    }

    .key-figures picture img {
        width: 92%;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials {
    padding: 50px 0;
    text-align: center;
}

/* ================= TITLE ================= */

.testimonial-title img {
    width: 90%;
    max-width: 800px;
    margin-bottom: 40px;
}

/* ================= MAIN VIDEO ================= */

.main-video {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 40px;
}

.main-video video {
    width: 100%;
    border-radius: 12px;
}

/* ================= VIDEO GRID ================= */

.video-grid {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ================= VIDEO CARD ================= */

.video-card {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.video-thumb {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 35, 95, 0.55);
    transition: opacity 0.4s ease;
}

/* Play Button */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #17235F;
    transition: transform 0.3s ease;
}

/* Name Badge */
.video-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    background: #ffc107;
    color: #17235F;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s ease;
}

/* ================= HOVER EFFECTS ================= */



.video-card:hover .video-overlay {
    opacity: 0;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .video-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ================= IFRAME RESPONSIVE ================= */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* ================= BUTTON ================= */

.testimonial-btn {
    margin-top: 40px;
}

.testimonials .btn-primary {
    color: #0a2342 !important;
    background-color: #ffc107;
    padding: 12px 30px;
    border-radius: 6px;
    display: inline-block;
    margin: 0;
    font-weight: bold;
    font-size: 16px;
    border: none;
    width: auto;
    transition: background-color 0.3s ease;
}

.testimonials .btn-primary:hover {
    background: #e0a800;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 85px;
    height: 85px;
    
    background: #ffffff;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 30px;
    color: #1a2a6c;
    
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    
    transition: all 0.3s ease;
}

/* Play triangle styling */
.play-icon::before {
    content: "";
    display: block;
    margin-left: 4px;
    width: 0;
    height: 0;
    border-left: 18px solid #1a2a6c;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Remove text arrow if present */
.play-icon {
    font-size: 0;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-title img {
        width: 95%;
    }

    .main-video {
        margin-bottom: 30px;
    }

    .video-name {
        font-size: 14px;
        padding: 8px 18px;
    }

    .play-icon {
        width: 65px;
        height: 65px;
    }

    .play-icon::before {
        border-left: 14px solid #1a2a6c;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
}
/* ================= PERSONALISED SECTION ================= */

.personal-section {
    padding: 20px 0;
    text-align: center;
}

/* Title */
.personal-title img {
    width: 90%;
    max-width: 1000px;
    margin-bottom: 40px;
}

/* Content Image */
.personal-content img {
    width: 90%;
    max-width: 1200px;
    display: block;
    margin: auto;
}

/* Button */
.personal-btn {
    margin-top: 40px;
}

.btn-primary {
    color: #0a2342 !important;
    background-color: #ffc107;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: block;
    margin: 20px auto 0;
    font-weight: bold;
    border: none;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    width: fit-content;
}

/* ================= MOBILE ================= */

@media (max-width:768px) {

    .personal-section {
        padding: 20px 0;
    }

    .personal-title img {
        width: 95%;
        margin-bottom: 25px;
    }

    .personal-content img {
        width: 95%;
    }

    .personal-btn {
        margin-top: 25px;
    }
}

/* ================= REVIEWS SECTION ================= */

.reviews-section {
    padding: 40px 0;
    text-align: center;
}

/* ---------------- TITLE ---------------- */

.reviews-title img {
    width: 90%;
    max-width: 600px;
    margin-bottom: 50px;
}

/* ---------------- CARDS GRID ---------------- */

.reviews-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* Card Image */
.review-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Hidden Cards */
.hidden {
    display: none;
}

/* ---------------- BUTTONS ---------------- */

.reviews-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;               /* small gap */
    flex-wrap: nowrap;      /* never stack */
}

/* Override ONLY inside reviews section */
.reviews-section .btn-primary,
.reviews-section .btn-secondary {
    margin: 0 !important;      /* remove global auto margin */
    display: inline-block;     /* prevent block behavior */
    min-width: 150px;
    padding: 12px 24px;
    font-size: 15px;
    white-space: nowrap;
}

/* Secondary Button Style */
.reviews-section .btn-secondary {
    background: #ffc107;
    color: #0a2342;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.reviews-section .btn-secondary:hover {
    background: #e0a800;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .reviews-buttons {
        gap: 6px;  /* keep tight */
    }

    .reviews-section .btn-primary,
    .reviews-section .btn-secondary {
        min-width: 130px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .reviews-title img {
        width: 95%;
        margin-bottom: 35px;
    }
}

/* ================= JOURNEY SECTION ================= */

.journey-section {
    padding: 20px 0;
    text-align: center;
}

/* Title */
.journey-title img {
    width: 90%;
    max-width: 900px;
    margin-bottom: 50px;
}

/* Cards Layout */
.journey-cards {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* Card */
.journey-card {
    flex: 1;
}

.journey-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .journey-section {
        padding: 20px 0;
    }

    .journey-title img {
        width: 95%;
        margin-bottom: 30px;
    }

    .journey-cards {
        flex-direction: column;
        gap: 25px;
    }
}

/* ================= GOOGLE REVIEWS SECTION ================= */

.google-reviews-section {
    padding: 20px 0;
    text-align: center;
}

/* Title */
.google-reviews-title img {
    width: 90%;
    max-width: 600px;
    margin-bottom: 50px;
}

/* Grid */
.google-reviews-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row desktop */
    gap: 30px;
}

/* Card */
.google-review-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Buttons */
.google-reviews-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

/* Scope buttons only here */
.google-reviews-section .btn-primary,
.google-reviews-section .btn-secondary {
    margin: 0 !important;
    display: inline-block;
    min-width: 150px;
    padding: 12px 24px;
    font-size: 15px;
    white-space: nowrap;
}

/* Secondary */
.google-reviews-section .btn-secondary {
    background: #ffc107;
    color: #0a2342;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.google-reviews-section .btn-secondary:hover {
    background: #e0a800;
}

/* MOBILE */
@media (max-width: 768px) {

    .google-reviews-wrapper {
        grid-template-columns: 1fr; /* 1 per row */
        gap: 22px;
    }

    .google-reviews-section .btn-primary,
    .google-reviews-section .btn-secondary {
        min-width: 130px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .google-reviews-title img {
        width: 95%;
        margin-bottom: 35px;
    }
}

/* ================= MENTOR SECTION ================= */

.mentor-section {
    padding: 20px 0;
    text-align: center;
}

/* Image */
.mentor-content img {
    width: 90%;
    max-width: 1200px;
    display: block;
    margin: auto;
    border-radius: 12px;
}

/* Button */
.mentor-btn {
    margin-top: 40px;
}

.btn-primary {
    color: #0a2342 !important;
    background-color: #ffc107;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: block;
    margin: 20px auto 0;
    font-weight: bold;
    border: none;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    width: fit-content;
}

.btn-primary:hover {
    background: #e0a800;
}

/* ================= MOBILE ================= */

@media (max-width:768px) {

    .mentor-section {
        padding: 20px 0;
    }

    .mentor-content img {
        width: 95%;
    }

    .mentor-btn {
        margin-top: 25px;
    }
}

/* ================= GALLERY SECTION ================= */

.gallery-section {
    padding: 20px 0;
    text-align: center;
}

.gallery-title {
    font-size: 40px;
    color: #17235F;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Wrapper */
.gallery-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Track */
.gallery-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

/* Hide scrollbar */
.gallery-track::-webkit-scrollbar {
    display: none;
}

/* Card */
.gallery-card {
    flex: 0 0 calc((100% - 50px) / 3); /* EXACT 3 visible */
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
}

/* Image */
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* prevent image drag bug */
}

/* Arrows */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #17235F;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-btn.prev {
    left: -60px;
}

.gallery-btn.next {
    right: -60px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .gallery-card {
        flex: 0 0 100%; /* only 1 visible */
        height: 260px;
    }

    .gallery-track {
        gap: 0; /* remove gap in mobile */
        padding: 0;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-btn.prev {
        left: -20px;
    }

    .gallery-btn.next {
        right: -20px;
    }
}

/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 60px 0;
    text-align: center;
}

/* ---------- TITLE ---------- */

.faq-title img {
    width: 90%;
    max-width: 600px;
    margin-bottom: 50px;
}

/* ---------- WRAPPER ---------- */

.faq-wrapper {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* ---------- ITEM ---------- */

.faq-item {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    position: relative; /* needed for toggle positioning */
}

/* ---------- QUESTION ---------- */

.faq-question {
    position: relative;
    cursor: pointer;
    padding: 0;                 /* remove outer padding */
    background: transparent;    /* remove white background */
}

/* Make question image full width */
.faq-question picture {
    width: 100%;
    display: block;
}

.faq-question img {
    width: 100%;
    height: auto;
    display: block;
}

/* Toggle icon */
.faq-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: bold;
    color: #17235F;
    pointer-events: none;
}

/* ---------- ANSWER ---------- */

.faq-answer {
    display: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.faq-answer picture {
    width: 100%;
    display: block;
}

.faq-answer img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- VIDEO ---------- */

.faq-video {
    width: 90%;
    max-width: 900px;
    margin: 60px auto 40px;
}

.faq-video video {
    width: 100%;
    border-radius: 10px;
}

/* ---------- BUTTON ---------- */

.faq-btn {
    margin-top: 20px;
}

.faq-section .btn-primary {
    margin: 0 !important;
    display: inline-block;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 40px 0;
    }

    .faq-title img {
        width: 95%;
        margin-bottom: 35px;
    }

    /* KEEP NO PADDING HERE */
    .faq-question {
        padding: 0;
    }

    .faq-toggle {
        right: 15px;
        font-size: 20px;
    }
}
/* ================= FOOTER ================= */

.site-footer {
    width: 100%;
    margin-top: 20px;
}

.site-footer img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-btn,
.personal-btn,
.mentor-btn {
    margin: 40px 0; 
}

/* ================= MODAL STYLING ================= */

.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background: #15225d;
    color: #fff;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    max-height: 75vh;
    overflow-y: auto;
}

.form-control,
.form-select {
    padding: 10px 12px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #15225d;
}

.btn-success {
    background-color: #198754;
    border: none;
}

.btn-success:hover {
    background-color: #157347;
}

/* ================= FIX INTL TEL INPUT ================= */

.iti {
    position: relative;
    width: 100%;
}

.iti__country-list {
    list-style: none !important;
    margin: 0;
    padding: 0;
    z-index: 9999;
}

.iti__country {
    display: flex;
    align-items: center;
}

.iti__flag {
    margin-right: 8px;
}

.iti--allow-dropdown input {
    padding-left: 90px !important;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 20px;
    }
}