/* =========================
   RESET
========================= */



.hero-message {
    background: #14597d;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 50px;
}

.hero-message-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-message h1 {
    color: #fff;
}

.hero-message p {
    color: #fff;
}

.hero-message * {
    text-align: center !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    background: #000;
    color: #fff;
    padding: 10px;
    z-index: 9999;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    color: #14597d;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo img {
    height: 55px;
    width: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    color: #333;
    font-weight: 600;
}

.nav-menu a:hover {
    color: #14597d;
}

.trial-btn {
    background: #b71c1c;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
}

.trial-btn:hover {
    background: #8e0000;
}

/* =========================
   HERO
========================= */

.hero {
    height: 500px;
    background: url("images/8.jpg");
    background-size: cover;
    background-position: center;
}
.hero-content {
    background: rgba(0,0,0,.35);
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: bold;
}

.btn-primary {
    background: #b71c1c;
    color: white;
}

.btn-secondary {
    background: white;
    color: #14597d;
}

/* =========================
   SECTIONS
========================= */

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    color: #14597d;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

/* =========================
   BENEFITS
========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.cards.three {
    grid-template-columns: repeat(3,1fr);
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
}

.card h3 {
    color: #14597d;
    margin-bottom: 10px;
}

/* =========================
   GALLERY
========================= */

.gallery {
    background: #f7f7f7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================
   PROGRAMS
========================= */

.programs {
    background: #fafafa;
}

/* =========================
   FREE TRIAL
========================= */

.free-trial {
    background: #14597d;
    color: white;
}

.free-trial h2 {
    color: white;
}

.narrow {
    max-width: 650px;
    margin: auto;
}

.free-trial label {
    display: block;
    margin-bottom: 5px;
    margin-top: 15px;
}

.free-trial input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
}

.free-trial button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #b71c1c;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* =========================
   INSTRUCTOR
========================= */

.instructor-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

.instructor img {
    max-width: 250px;
    width: 100%;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}

.cred {
    color: #b71c1c;
    font-weight: bold;
    margin-bottom: 8px;
}

.instructor a {
    color: #14597d;
    font-weight: bold;
}

/* =========================
   CONTACT
========================= */

.contact {
    background: #f7f7f7;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 25px;
}

/* =========================
   RESPONSIVE
========================= */
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .cards,
    .cards.three,
    .gallery-grid,
    .instructor-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        padding: 15px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        min-height: 65vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-message .btn-primary,
    .hero-message .btn-secondary {
        display: block;
        width: 250px;
        margin: 10px auto;
    }
}

/* =========================
   STUDENTS IN ACTION
========================= */

.student-action-section {
    padding: 70px 0;
    background: #f7f9fb;
    text-align: center;
}

.student-action-section h2 {
    font-size: 2.5rem;
    color: #14597d;
    margin-bottom: 10px;
}

.student-action-section p {
    margin-bottom: 40px;
    color: #555;
}

.student-slider {
    overflow: hidden;
    width: 100%;
}

.student-track {
    display: flex;
    width: max-content;
    animation: scrollStudents 30s linear infinite;
}

.student-track img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    flex-shrink: 0;
}

.student-slider:hover .student-track {
    animation-play-state: paused;
}

@keyframes scrollStudents {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =========================
   SCHEDULE PAGE
========================= */

.schedule-section {
    padding: 80px 20px;
    background: #f7f9fb;
}

.schedule-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.schedule-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.schedule-card h2 {
    color: #14597d;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.schedule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-card li {
    margin-bottom: 18px;
    color: #222;
    line-height: 1.5;
}

.schedule-card strong {
    color: #000;
}

.private-lesson {
    color: #222;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* Fees */

.fee-section {
    padding: 80px 20px;
}

.fee-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.fee-card h2 {
    text-align: center;
    color: #14597d;
    margin-bottom: 30px;
}

.fee-badges {
    text-align: center;
    margin-bottom: 35px;
}

.fee-badges span {
    display: inline-block;
    background: #14597d;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    margin: 5px;
    font-weight: 600;
}

.fee-item {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-item h3 {
    color: #14597d;
    margin-bottom: 8px;
}

.price {
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}


/* GALLERY */

.gallery-section {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,.12);
    transition: transform .3s ease;
}

.gallery-item:hover,
.gallery-item:focus {
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}



/* ABOUT PAGE */

.about-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.about-photo {
    width: 220px;
    border-radius: 12px;
}

.about-profile h2 {
    margin: 0 0 10px;
    color: #14597d;
}

.about-subtitle {
    color: #666;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* INSTRUCTORS */

.instructors-modern {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    color: #14597d;
    margin-bottom: 10px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.instructor-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.instructor-card h3 {
    color: #14597d;
    margin-bottom: 10px;
}

.instructor-card p {
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {

    .about-profile {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        width: 180px;
    }
}

/* ABOUT SECTION */

.about-modern {
    padding: 80px 20px;
    background: #f7f9fb;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;

    background: #fff;
    padding: 40px;
    border-radius: 12px;

    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.about-content h2 {
    color: #14597d;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2rem;
}

.about-subtitle {
    color: #777;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* Mobile */

@media (max-width: 768px) {

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ==========================
   CONTACT PAGE
========================== */

.contact-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.contact-modern .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-modern .section-heading h2 {
    font-size: 2.4rem;
    color: #14597d;
    margin-bottom: 10px;
}

.contact-modern .section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #14597d;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #14597d;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #14597d;
}

.contact-card form input,
.contact-card form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
}

.contact-card form textarea {
    resize: vertical;
}

.contact-card button {
    background: #14597d;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.contact-card button:hover {
    background: #0f4662;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.hidden-field {
    display: none;
}

@media (max-width: 768px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-modern {
        padding: 50px 15px;
    }

    .contact-card {
        padding: 25px;
    }
}



/* ==========================
   ABOUT PAGE
========================== */

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.about-photo {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    display: block;
}

.about-info h2 {
    color: #14597d;
    margin-top: 0;
    margin-bottom: 10px;
}

.about-subtitle {
    color: #666;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-info p {
    line-height: 1.8;
    margin-bottom: 18px;
}

@media (max-width: 768px) {

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo {
        margin: 0 auto;
    }

    .about-card {
        padding: 25px;
    }
}



/* 05/26  */


/* Accessibility override for current menu item */
.menu--juliet .menu__item--current .menu__link,
.menu--juliet .menu__item--current .menu__link:hover,
.menu--juliet .menu__item--current .menu__link:focus {
    color: #ffffff !important;
}


/*
.menu--juliet .menu__item--current .menu__link,
.menu--juliet .menu__item--current .menu__link:hover,
.menu--juliet .menu__item--current .menu__link:focus {
    color: #14597d !important;
} */


/* Global keyboard focus visibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #ffd24d !important;
    outline-offset: 2px !important;
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    z-index: 10000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    z-index: 10000;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 0;
    line-height: 1.5;
}

.dropdown > a {
    display: block;
}


.dropdown-menu {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

.agile_footer_grid {
    width: 33.333%;
    float: left;
}

.footer {
    background: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.footer h3 {
    color: #fff;
}

.footer p,
.footer li,
.footer a {
    color: #ddd;
}

.footer a:hover {
    color: #fff;
}


.agile_footer_grid {
    width: 33.333%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}


.agileinfo_copyright {
    clear: both;
    padding-top: 30px;
}


.agileinfo_copyright {
    clear: both;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    width: 100%;
}

.agile_footer_grid:nth-child(2) {
    text-align: center;
}


.agileits_w3layouts_footer_grid_list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.accessibility-notice {
    clear: both;
    max-width: 900px;
    margin: 40px auto 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ddd;
}

.accessibility-notice a {
    color: #fff;
    text-decoration: underline;
}