






        .enquiry-page {
            width: 90%;
            max-width: 900px;
            margin: 40px auto;
        }


        .enquiry-box {
            background: white;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }


        .enquiry-box h1 {
            text-align: center;
            color: #006093;
            margin-bottom: 30px;
        }


        .section-title {
            color: #006093;
            border-bottom: 2px solid #6AC5E8;
            padding-bottom: 8px;
            margin-top: 25px;
            margin-bottom: 20px;
        }


        .form-group {
            margin-bottom: 18px;
        }


        .form-group label {
            display: block;
            font-weight: bold;
            margin-bottom: 7px;
        }


        .form-group input,
        .form-group select {
            width: 100%;
            padding: 11px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 15px;
        }


        .submit-button {
            width: 100%;
            padding: 13px;
            margin-top: 20px;
            background-color: #068FBE;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 17px;
            cursor: pointer;
        }


        .submit-button:hover {
            background-color: #006093;
        }


        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }


        .error-message {
            background-color: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }


        @media (max-width: 600px) {

            .enquiry-page {
                width: 95%;
            }

            .enquiry-box {
                padding: 20px;
            }

        }











/* Contact Page */


body main section form {
    background-color: whitesmoke;
    font-family: "Montserrat", sans-serif !important;
}


/* Contact Page */
.contact-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.contact-box {
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 3px 10px #ccc;
    box-sizing: border-box;
}

.contact-box h1 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.contact-box textarea {
    height: 150px;
    resize: vertical;
}

.contact-box button {
    width: 100%;
    padding: 14px;
    background-color: #068FBE;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.contact-box button:hover {
    background-color: #006093;
}








/* 
login page */








.login-page {
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 400px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px #ccc;
}

.login-box h1 {
    text-align: center;
    margin-bottom: 25px;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background-color: #068FBE;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}










/* Delete Course Page */






.delete-course-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.delete-course-box {
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.delete-course-box h1 {
    margin-bottom: 20px;
}

.delete-course-box h2 {
    color: #006093;
    margin: 20px 0 30px;
}

.delete-course-box p {
    font-size: 18px;
}

.delete-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.delete-button:hover {
    background-color: #c9302c;
}

.cancel-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
    padding: 12px;
    background-color: #ddd;
    color: black;
    text-decoration: none;
    border-radius: 8px;
}

.cancel-button:hover {
    background-color: #bbb;
}

.error-message {
    text-align: center;
    padding: 50px;
    font-size: 20px;
    color: red;
}












/* Edit Course Page */









/* Edit Course Page */

.edit-course-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.edit-course-box {
    width: 100%;
    max-width: 650px;
    background-color: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.edit-course-box h1 {
    text-align: center;
    margin-bottom: 30px;
}

.edit-course-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.edit-course-box input,
.edit-course-box textarea,
.edit-course-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

.edit-course-box textarea {
    resize: vertical;
}

.edit-course-box button {
    width: 100%;
    padding: 12px;
    background-color: #068FBE;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.edit-course-box button:hover {
    background-color: #006093;
}

.cancel-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-top: 12px;
    padding: 12px;
    background-color: #ddd;
    color: black;
    text-decoration: none;
    border-radius: 8px;
}

.cancel-button:hover {
    background-color: #bbb;
}

.error-message {
    text-align: center;
    padding: 50px;
    font-size: 20px;
    color: red;
}








/* Add Course Page */






.add-course-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.add-course-box {
    width: 100%;
    max-width: 650px;
    background-color: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.add-course-box h1 {
    text-align: center;
    margin-bottom: 30px;
}

.add-course-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.add-course-box input,
.add-course-box textarea,
.add-course-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

.add-course-box textarea {
    resize: vertical;
}

.add-course-box button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #068FBE;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.add-course-box button:hover {
    background-color: #006093;
}








/* about us  */







/* .application-page {
    width: 100%;
    background-color: #dce8f3;
    padding: 50px 20px;
    box-sizing: border-box;
} */




.application-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: 0 3px 10px #ccc;
}




.application-box h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}




.application-box section {
    margin-bottom: 35px;
}



.application-box h3 {
    color: #006093;
    border-bottom: 2px solid #068FBE;
    padding-bottom: 8px;
    margin-bottom: 25px;
}




.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}



.form-row > label {
    width: 220px;
    flex-shrink: 0;
    font-weight: bold;
}




.form-row input,
.form-row textarea {
    flex: 1;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}




.form-row textarea {
    resize: vertical;
}



.course-options {
    display: flex;
    gap: 30px;
}


.course-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}


.course-option input {
    width: auto;
}



.submit-area {
    text-align: center;
    margin-top: 30px;
}


.submit-area button {
    width: 250px;
    padding: 13px;
    background-color: #068FBE;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}


.submit-area button:hover {
    background-color: #006093;
}






@media (max-width: 700px) {

    .application-box {
        padding: 25px 20px;
    }


    .form-row {
        display: block;
    }


    .form-row > label {
        display: block;
        width: 100%;
        margin-bottom: 8px;
    }


    .form-row input,
    .form-row textarea {
        width: 100%;
    }


    .course-options {
        display: block;
    }


    .course-option {
        margin-bottom: 10px;
    }


    .submit-area button {
        width: 100%;
    }

}













/* course.php */











.course-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}


/* Main heading */

.course-section > h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}


/* Course area */

.course-area {
    margin-bottom: 50px;
}


/* Course heading */

.course-area h2 {
    color: #006093;
    margin-bottom: 10px;
    font-size: 28px;
}


.course-area h3 {
    font-size: 20px;
    margin-bottom: 25px;
}


/* Course box */

.course {
    display: flex;
    gap: 30px;
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px #ccc;
    align-items: center;
}


/* Course image */

.course-image {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}


/* Course information */

.course-info {
    flex: 1;
}


.description {
    line-height: 1.6;
    margin-bottom: 20px;
}


/* List */

.course-info ul {
    padding-left: 20px;
    line-height: 1.8;
}


/* Book button */

/* .book-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 40px;
    background-color: #068FBE;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
}


.book-button:hover {
    background-color: #006093;
    color: white;
}
 */

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    .course-section {
        width: 95%;
        padding: 30px 10px;
    }


    .course-section > h1 {
        font-size: 30px;
    }


    .course {
        display: block;
    }


    .course-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }


    .course-area h2 {
        font-size: 24px;
    }


    .course-area h3 {
        font-size: 17px;
    }


    /* .book-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    } */

}






/* CONTACT







.contact-page {
    width: 100%;
    max-width: 830px;

    margin: 0 auto;

    background-color: #d3dfef;

    min-height: 500px;

    padding-top: 20px;
}


/* HEADING 

.contact-page h1 {
    text-align: center;

    font-size: 32px;

    margin-bottom: 70px;
}


/* FORM 

.contact-page form {
    width: 530px;

    margin: auto;
}


/* EACH ROW 

.contact-row {
    display: flex;

    align-items: center;

    margin-bottom: 25px;
}


/* LABEL 

.contact-row label {
    width: 140px;

    font-size: 24px;

    font-weight: bold;
}


/* INPUT 

.contact-row input {
    width: 360px;

    height: 30px;

    border: none;

    background-color: white;
}


/* MESSAGE BOX 

.contact-row textarea {
    width: 360px;

    height: 30px;

    border: none;

    background-color: white;

    resize: none;
}


/* BUTTON 

.contact-button {
    text-align: center;

    margin-top: 50px;
}


.contact-button button {
    width: 180px;

    height: 36px;

    border: none;

    border-radius: 12px;

    background-color: white;

    font-size: 16px;

    cursor: pointer;
}


/* MOBILE 

@media (max-width: 600px) {

    .contact-page {
        width: 95%;
    }

    .contact-page h1 {
        font-size: 28px;

        margin-bottom: 40px;
    }

    .contact-page form {
        width: 85%;
    }

    .contact-row {
        display: block;

        margin-bottom: 20px;
    }

    .contact-row label {
        display: block;

        width: 100%;

        font-size: 18px;

        margin-bottom: 5px;
    }

    .contact-row input,
    .contact-row textarea {
        width: 100%;

        height: 30px;
    }

    .contact-button {
        margin-top: 30px;
    }

} */







/* index.php */










.course-hero {
    width: 100%;
    

    height: 273px;

    margin: 0 auto;

    overflow: hidden;
}

.course-hero img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}



.courses-section {
    width: 100%;

    min-height: 365px;

    margin: 0 auto;

    background-color: #d3dfed;

    padding: 35px 55px 25px;
}

.courses-section h1 {
    margin: 0 0 30px;

    text-align: center;

    font-size: 24px;

    font-weight: 600;
}

.course-item {
    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 32px;

    margin-bottom: 48px;
}
.course-image {
    width: 135px;

    min-width: 135px;

    height: 73px;

    overflow: hidden;

    border-radius: 6px;
}

.course-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}



.course-content {
    position: relative;

    flex: 1;

    min-height: 90px;
}


.course-content h2 {
    margin: 0 0 4px;

    font-size: 16px;

    font-weight: 600;
}


.course-content p {
    margin: 0;

    font-size: 11px;

    line-height: 1.35;
}
/* Course page */

.card {
    border: none;
    overflow: hidden;
}

.card-title {
    color: #006093;
}

.card img {
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
}

.btn-primary {
    background-color: #068FBE;
    border-color: #068FBE;
}

.btn-primary:hover {
    background-color: #006093;
    border-color: #006093;
}

.primary-button{
     margin-top: 4px;
     padding-top: 10px;
     padding-bottom: 20px;
     background-color: #068FBE;
     color: white;
     text-align: center;
     border: 1px solid #068FBE;
     border-radius: 8px;
     font-size: 19px;
     font-weight:bold;
     width: 120px;
     height: 50px;
}
.primary-button:hover{
    background-color: #0c4166;
}


.secondary-button{
     display: block;
     margin-top: 4px;
     background-color: #ffffff;
     color: #111111;
     text-decoration: none;
     text-align: center;
     line-height: 22px;
     border-radius: 6px;
     font-size: 10px;
}

a{
    text-decoration: none;
    color:white;
}
/* .book-button {
    display: block;

    

    margin-top: 4px;

    margin-left: 90px;

    background-color: #ffffff;

    color: #111111;

    text-decoration: none;

    text-align: center;

    line-height: 22px;

    border-radius: 6px;

    
} */





@media (max-width: 768px) {


    .course-hero {
        height: auto;
    }


    .course-hero img {
        height: auto;
    }


    .courses-section {
        padding: 30px 25px;

        min-height: auto;
    }


    .courses-section h1 {
        font-size: 22px;

        margin-bottom: 30px;
    }


    .course-item {
        gap: 20px;

        margin-bottom: 40px;
    }


    .course-image {
        width: 120px;

        min-width: 120px;

        height: 70px;
    }


    .course-content h2 {
        font-size: 15px;
    }


    .course-content p {
        font-size: 10px;
    }


    /* .book-button {
        margin-left: 50px;
    } */


}


@media (max-width: 480px) {


    .course-item {
        flex-direction: column;

        align-items: center;
    }


    .course-image {
        width: 150px;

        min-width: 150px;

        height: 80px;
    }


    .course-content {
        width: 100%;

        text-align: center;
    }


    /* .book-button {
        margin: 6px auto 0;
    } */


    .contact-details {
        flex-wrap: wrap;

        justify-content: center;

        font-size: 8px;
    }

}


/* header .html*/




* {
    box-sizing: border-box;
}





.navbar{
    max-width: 100% !important;
    /* max-width: 829px; */
    height: 80px;
    /* margin: 38px auto 0; */
    font-weight: 100%;

    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 56px;
}



.logo {
    display: auto;
    align-items: auto;
    height:80px;
    width: auto;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
}


.navbar nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar nav a {
    color: #111111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.navbar nav a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {

    .navbar {
        width: 100%;
        height: auto;

        margin-top: 20px;

        flex-direction: column;

        padding: 20px;

        gap: 20px;
    }

    .logo img {
        width: 100px;
        height: auto;

    }

    .navbar nav {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px 22px;
    }

    .navbar nav a {
        font-size: 15px;
    }
}



@media (max-width: 480px) {

    .navbar {
        padding: 15px;
    }

    .navbar nav {
        gap: 12px 15px;
    }

    .navbar nav a {
        font-size: 14px;
    }
}

/* logincoding */

/* 
 * {
  box-sizing: border-box;
  }

body {
margin: 100;
background: #f5f5f5;
font-family: Arial, Helvetica, sans-serif;
color: #111;
} 

HEADER
.top-header {
width: 100%;
max-width: 829px;
height: 80px;
margin: 38px auto 0;
background: #ffffff;
} 

.header-inner {
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 56px;
}

.logo-link {
display: flex;
align-items: center;
text-decoration: none;
} 

.main-nav {
display: flex;
align-items: center;
gap: 34px;
}

.main-nav a {
color: #111;
text-decoration: none;
font-size: 16px;
white-space: nowrap;
}

.main-nav a:hover {
text-decoration: underline;
}

/* LOGIN SECTION 
.login-section {
width: 100%;
/* max-width: 829px;
height: 100%;
margin: auto;
background: #d3dfed;
padding-top: 70px;
padding-left: 100px;
padding-right: 100px;
padding-bottom: 100px;
text-align: center;




}

.login-section h1 {
margin: 0;
text-align: center;
font-size: 34px;
font-weight: 600;
}

.login-form {
width: 100%;
margin: 62px auto 0;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-row label {
    width: 160px;
    text-align: right;
    margin-right: 15px;
    font-weight: bold;
}

.form-row input {
    flex: 1;
    height: 40px;
    border: none;
}

.login-form button {
    display: block;
    margin: 30px auto 0;
    width: 220px;
    height: 45px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
}

.form-row input:focus {
outline: 2px solid #b7c9dc;
}

.submit-button {
display: block;
width: 177px;
height: 35px;
margin: 40px auto 0;
border: none;
border-radius: 12px;
background: #ffffff;
color: #111;
font-size: 18px;
cursor: pointer;
}

.submit-button:hover {
background: #eeeeee;
} */





/* footer.html */



 FOOTER
.site-footer {
width: 100%;
max-width: 829px;
height: 81px;
margin: 0 auto;
background: #e4e4e4;
padding: 25px 42px 0;
position: relative;
}

.footer-top {
display: flex;
align-items: center;
justify-content: space-between;
}

.contact-details {
display: flex;
align-items: center;
gap: 7px;
font-size: 14px;
}

.phone-icon {
margin-left: 10px;
}

.footer-logo {
width: 100px;
height: auto;
}

.site-footer p {
margin: 9px 0 0;

text-align: center;
font-size: 12px;
} 

/* MOBILE */
@media (max-width: 768px) {


.top-header {
    height: auto;
    margin-top: 20px;
}

.header-inner {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 22px;
}

.login-section {
    height: auto;
    width: 100%;
    min-height: 430px;
    padding: 55px 20px;
}

.login-form {
    max-width: 500px;
    margin-top: 55px;
}

.form-row {
    grid-template-columns: 115px 1fr;
}

.form-row label {
    font-size: 20px;
}
.site-footer {
    height: auto;
    min-height: 100px;
    padding: 20px;
}

.footer-top {
    flex-direction: column;
    gap: 15px;
}
}


