* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

img {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

.homepage-header {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid gray;
}

.logo {
    width: 90px;
    height: 50px;
}

.nav-bar {
    width: auto;
}

.active-page a {
    color: #f3880d !important;
    position: relative;
}

.active-page a::before {
    content: none;
}

.active-page a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #f3880d;
}

.nav-bar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    min-width: 600px;
}

.pages-link li {
    list-style-type: none;
}

.pages-link li a {
    color: #1E3A8A;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    position: relative;
    transition: all .3s ease-in-out;
}

.pages-link li a:hover {
    color: #F3880D;
}

.pages-link li a::before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    height: 0%;
    width: 0%;
    transition: all .3s ease-in-out;
}

.pages-link a:hover::before {
    height: 2px;
    width: 100%;
    background-color: #f3880d;
}

.pages-link {
    display: flex;
    width: 70%;
    justify-content: space-between;
    align-items: center;
}

.book-button {
    background-color: #f3880d;
    border: none;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.book-button:hover {
    background-color: #1E3A8A;
}

.nav-logo,
.nav-footer {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    background-color: #1E3A8A;
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobileNavEnable {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.mobile-menu li a {
    color: #1E3A8A;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu li a:hover {
    color: #f3880d;
}

/* Slide animation */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ---------------------------------------------------------------------------------------------------------------
HOME HERO-SECTION
-------------------------------------------------------------------------------------------------------------- */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    display: none;
}

.slide.active {
    display: block;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    color: #fff;
    padding: 50px;
}

.overlay-content {
    width: 700px;
}

.overlay h1 {
    margin-top: 50px;
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    margin-bottom: 1rem;
}

.overlay h1 span {
    color: #f3880d;
}

.overlay p {
    width: 80%;
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
}

.buttons .btn {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #f3880d;
    /* Primary Blue */
    color: white;
}

.btn.primary:hover {
    background: #1E3A8A;
}

.btn.secondary {
    background: white;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.btn.secondary:hover {
    background: white;
    color: #f3880d;
    border-color: #f3880d;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 2rem;
    padding: 0 20px;
    cursor: pointer;
    user-select: none;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.dots span.active {
    opacity: 1;
    background: #f3880d;
}

/* ---------------------------------------------------------------------------------------------------------------
QUICK STATS SECTION
--------------------------------------------------------------------------------------------------------------- */
.quick-stats {
    display: grid;
    display: flex;
    justify-content: space-between;
    padding: 60px 40px;
    background: #F9FAFB;
    text-align: center;
}

.stat-card {
    box-shadow: rgba(216, 214, 214, 0.79) 0px 0px 5px;
    border-radius: 10px;
    padding: 15px;
    width: 23%;
}

.stat-card .icon {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    fill: #fff;
    background-color: #F3880D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    margin: auto;
}

.stat-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin: 10px 0px;
}

.stat-card p {
    font-size: 16px;
    color: #374151;
    /* Gray text */
}

/* ---------------------------------------------------------------------------------------------------------------
ABOUT SECTION
--------------------------------------------------------------------------------------------------------------- */

.about-section {
    background: #E5E7EB;
    padding: 80px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    color: #1E3A8A;
    /* Blue */
    border-left: 6px solid #F3880D;
    /* Orange accent bar */
    padding-left: 12px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-primary {
    background: #F3880D;
    /* Orange */
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #1E3A8A !important;
    color: white !important;
}

/* ---------------------------------------------------------------------------------------------------------------
service section
--------------------------------------------------------------------------------------------------------------- */
.services-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.section-header h2 {
    color: #1E3A8A;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.section-header p {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- Flex Layout --- */
.services-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #F9FAFB;
    flex: 1 1 300px;
    max-width: 350px;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1E3A8A;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-card p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.services-btn {
    margin-top: 40px;
}

.btn-primary {
    background: #F3880D;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1E3A8A;
}

/* ---------------------------------------------------------------------------------------------------------------
TESTIMONIAL SECTION
--------------------------------------------------------------------------------------------------------------- */
.testimonial-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials {
    background: #E5E7EB;
    padding: 80px 20px;
    text-align: center;
}

.section-header h2 {
    color: #1E3A8A;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.section-header p {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    position: relative;
    max-width: 350px;
    margin: auto;
}

.quote {
    font-size: 3rem;
    color: #F3880D;
    position: absolute;
    top: 15px;
    left: 25px;
}

.testimonial-card p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin: 30px 0 20px;
}

.testimonial-card h4 {
    color: #1E3A8A;
    font-weight: 600;
    font-size: 1rem;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #1E3A8A;
    transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #F3880D;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #1E3A8A;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #F3880D;
    opacity: 1;
}

/* ---------------------------------------------------------------------------------------------------------------
APPOINTMENT SECTION
--------------------------------------------------------------------------------------------------------------- */
.appointment-cta {
    background: linear-gradient(to right, #1E3A8A, #0D9488);
    /* Blue to Teal gradient */
    color: #fff;
    padding: 80px 20px;
}

.appointment-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.appointment-text {
    flex: 1;
    min-width: 300px;
}

.appointment-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.appointment-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f3f4f6;
    margin-bottom: 25px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.apt-btn {
    background: #F3880D;
    /* Orange */
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.apt-btn:hover {
    background: #fff;
    color: #1E3A8A;
}

.btn-secondary {
    background: #fff;
    color: #1E3A8A;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #F3880D;
    color: #fff;
}

.appointment-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.appointment-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------------------------------------------------------------------
FOOTER SECTION
--------------------------------------------------------------------------------------------------------------- */
.footer {
    background: #1E3A8A;
    /* Deep Blue */
    color: #fff;
    padding: 60px 20px 20px;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-logo {
    width: 80px;
    height: 60px;
    margin-bottom: 15px;
}

.footer p {
    color: #E5E7EB;
    line-height: 1.6;
}

.footer h3 {
    color: #F3880D;
    /* Orange Accent */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #f3f4f6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #F3880D;
}

.footer a {
    color: #f3f4f6;
    text-decoration: none;
}

.footer a:hover {
    color: #F3880D;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #F3880D;
}

.footer {
    background: #14265c;
    color: #fff;
    padding: 60px 20px 20px;
    font-size: 0.95rem;
}

/* =====================================================================================================
ABOUT SECTION
===================================================================================================== */
.about-page-hero {
    width: 100%;
    height: 90vh;
    background-image: url(./Images/home-about-img.jpg);
    background-size: 100% 170%;
    background-position: center;
    background-repeat: no-repeat;
}

.about-page-hero-content {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    color: #fff;
    padding: 100px 0px 0px 50px;
}

.about-page-hero-content h1 {
    margin-top: 50px;
    font-size: 42px;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 1rem;
    max-width: 700px;

}

.about-page-hero-content p {
    max-width: 650px;
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
}

.about-page-hero-content span {
    color: #F3880D;
}

.about-vision-mission {
    /* background-color: #F9FAFB; */
    padding: 80px 50px;
}

.about-vision-mission-head {
    text-align: center;
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 50px;
}

.about-vision-mission-head::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.about-v-m-flex {
    display: flex;
    justify-content: space-between;
}

.about-vision,
.about-mission {
    width: 48%;
    border-left: 2px solid #F3880D;
    padding-left: 20px;
}

.about-vision h1 {
    color: #1E3A8A;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.about-mission h1 {
    color: #1E3A8A;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.about-vision p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6rem;
}

.about-mission p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6rem;
}

.about-story {
    background-color: #E5E7EB;
    padding: 80px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-story-img {
    width: 35%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 10px solid #fff;
}

.about-story-img img {
    /* width: 120%; */
    height: 120%;
}

.about-story-content {
    width: 48%;
}

.about-story h1 {
    font-size: 2rem;
    color: rgb(30, 58, 138);
    padding-left: 12px;
    margin-bottom: 20px;
    border-left: 6px solid rgb(243, 136, 13);
}

.about-story p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-value {
    padding: 80px 50px;
}

.about-value-head {
    text-align: center;
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 50px;
    font-weight: 600;
}

.about-value-head:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.about-value-content {
    display: flex;
    justify-content: space-between;
}

.about-value-card {
    box-shadow: rgba(216, 214, 214, 0.79) 0px 0px 5px;
    border-radius: 10px;
    padding: 15px;
    width: 23%;
    text-align: center;
}

.about-value-icon {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    fill: #fff;
    background-color: #F3880D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    margin: auto;
}

.about-value-card h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin: 10px 0px;
}

.about-value-card p {
    font-size: 16px;
    color: #374151;
}

.about-facilities {
    background-color: #E5E7EB;
    padding: 80px 50px;
}

.about-facilities-head {
    text-align: center;
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 50px;
}

.about-facilities-head::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.about-facilites-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 40px;
}

.about-facilities-card {
    width: 32%;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all .3s ease-in-out;
}

.about-facilities-img {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.about-facilities-img img {
    border-radius: 12px;
}

.about-facilities-card p {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.about-facilities-card:hover img {
    transform: scale(1.05);
}

.about-facilities-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.about-community {
    background-image: url("./Images/about-page-img/medical-outreach-img.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /* filter: blur(1px); */
    position: relative;
    padding: 80px 50px;
    ;
}

.about-community::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #00000051;
}

.about-community h1 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-community h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.about-community p {
    color: #fff;
    text-align: center;
    margin: auto;
    position: relative;
    width: 700px;
    font-size: 18px;
    line-height: 20px;
    z-index: 1;
    margin-bottom: 20px;
}

.about-community a {
    background: #F3880D;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    width: 300px;
    margin: auto;
    display: block;
    transition: all .3s ease-in-out;
}

.about-community a:hover {
    background-color: #1E3A8A;
}

.about-quality {
    padding: 80px 50px;
}

.about-quality h1 {
    text-align: center;
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 50px;
    font-weight: 600;
}

.about-quality h1:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.about-quality p {
    font-size: 18px;
    color: #374151;
    text-align: center;
    width: 750px;
    margin: auto;
}

.about-philosophy {
    padding: 80px 50px;
    background: linear-gradient(to right, #1E3A8A, #0D9488);
    color: #fff;
    padding: 80px 20px;
}

.about-philosophy h1 {
    text-align: center;
    font-size: 2rem;
    /* color: #1E3A8A; */
    color: #E5E7EB;
    margin-bottom: 50px;
    font-weight: 600;
}

.about-philosophy h1:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.about-philosophy p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    width: 750px;
    margin: auto;
}


/* --------------------------------------------------------------------------------------------------------------
CONTACT PAGE
-------------------------------------------------------------------------------------------------------------- */

.contact-hero-section {
    width: 100%;
    height: 90vh;
    background-image: url(./Images/contact-page-img.webp);
    background-size: 100% 150%;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-content {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    color: #fff;
    padding: 100px 0px 0px 50px;
}

.contact-hero-content h1 {
    margin-top: 50px;
    font-size: 42px;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 1rem;
    max-width: 700px;
}

.contact-hero-content p {
    max-width: 650px;
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
}

.contact-hero-btns {
    display: flex;
    gap: 10px;
}

.contact-hero-btns a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    background: #f3880d;
    color: white;
}

.contact-hero-btns .diff {
    background: white;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.contact-hero-btns a:hover {
    background-color: #1E3A8A;
}

.contact-hero-btns .diff:hover {
    background: white;
    color: #f3880d;
    border-color: #f3880d;
}

.contact-information {
    display: flex;
    justify-content: space-between;
    padding: 80px 50px;
}

.contact-card {
    box-shadow: rgba(216, 214, 214, 0.79) 0px 0px 5px;
    border-radius: 10px;
    padding: 15px;
    width: 30%;
    text-align: center;
}

.contact-card-icon {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    fill: #fff;
    background-color: #F3880D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    margin: auto;
}

.contact-card h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin: 10px 0px;
}

.contact-card p {
    font-size: 16px;
    color: #374151;
}

.contact-emergency {
    background-color: #E5E7EB;
    padding: 80px 50px;
}

.contact-emergency {
    background-image: linear-gradient(to right, #1E3A8A, #0D9488);

    padding: 80px 50px;
    color: white;
}

.contact-emergency h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-emergency p {
    font-size: 16px;
    color: #E5E7EB;
}

.contact-emergency span {
    color: #f3880d;
}

.contact-section {
    background: #fff;
    padding: 80px 300px;
}

.contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #1E3A8A;
    text-align: center;
    margin-bottom: 30px;
}

.contact-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    color: #374151;
}

input,
select,
textarea {
    font-size: 16px;
    padding: 12px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    border: 2px solid #0D9488;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    width: 100%;
    gap: 10px;
    font-size: 14px;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: right;
}

.checkbox-group input {
    display: block;
    width: 30px;
}

.checkbox-group label {
    display: inline-block;
    margin: 0;
}

.submit-btn {
    background-color: #1E3A8A;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #f3880d;
}

.message {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    display: none;
}

.message.success {
    color: #22C55E;
}

.message.error {
    color: #DC2626;
}

.faq-section {
    max-width: 800px;
    margin: 80px auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #1E3A8A;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.faq-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F3880D;
    margin: 10px auto;
    border-radius: 2px;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 18px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1E3A8A;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #0D9488;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #374151;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    /* enough space for full content */
    padding-top: 10px;
}

.faq-answer ul {
    margin-top: 10px;
    margin-left: 20px;
    list-style-type: disc;
}

/* ------------------------------------------------------------------------------------------------------------------------------------
RESPONSIVENESS
------------------------------------------------------------------------------------------------------------------------------------ */

@media (max-width: 1024px) {
    .active-page a {
        color: #f3880d !important;
        position: relative;
    }

    .homepage-header {
        padding: 15px 25px;
    }

    .nav-bar ul {
        width: 100%;
        gap: 25px;
    }

    .pages-link li a {
        font-size: 15px;
    }

    .book-button {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-carousel {
        height: 80vh;
    }

    .overlay {
        padding: 40px;
    }

    .overlay-content {
        width: 90%;
    }

    .overlay h1 {
        font-size: 34px;
        margin-top: 40px;
    }

    .overlay p {
        width: 90%;
        font-size: 16px;
    }

    .buttons .btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .quick-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 50px 20px;
    }

    .stat-card {
        width: 45%;
        /* 2 per row */
    }

    .stat-card h2 {
        font-size: 22px;
    }

    .stat-card p {
        font-size: 15px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 600px;
        margin: 0 auto 30px auto;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.8rem;
        border-left: none;
        width: 400px;
        margin: auto;
        display: inline-block;
        padding-left: 0;
        padding-bottom: 8px;
    }

    .about-content h2::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: #F3880D;
        margin: 10px auto;
        border-radius: 2px;
    }

    .about-content p {
        font-size: 1.05rem;
        max-width: 700px;
        margin: 0 auto 20px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .services-section {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .services-flex {
        gap: 20px;
    }

    .service-card {
        flex: 1 1 45%;
        /* two per row */
        max-width: 45%;
        padding: 18px;
    }

    .service-card img {
        height: 180px;
    }

    .testimonials {
        padding: 60px 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        max-width: 320px;
        padding: 35px 25px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .appointment-cta {
        padding: 60px 30px;
    }

    .appointment-text h2 {
        font-size: 1.8rem;
    }

    .appointment-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .appointment-image img {
        max-width: 400px;
    }

    .about-page-hero {
        height: 70vh;
        background-size: cover;
    }

    .about-page-hero-content {
        padding: 80px 30px;
    }

    .about-page-hero-content h1 {
        font-size: 36px;
        max-width: 100%;
    }

    .about-page-hero-content p {
        font-size: 17px;
        max-width: 100%;
    }

    .about-vision-mission {
        padding: 60px 30px;
    }

    .about-v-m-flex {
        flex-wrap: wrap;
        gap: 40px;
    }

    .about-vision,
    .about-mission {
        width: 100%;
    }

    .about-story {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .about-story-img {
        width: 50%;
    }

    .about-story-content {
        width: 100%;
        text-align: center;
    }

    .about-value {
        padding: 60px 30px;
    }

    .about-value-content {
        flex-wrap: wrap;
        gap: 25px;
    }

    .about-value-card {
        width: 45%;
    }

    .about-facilities {
        padding: 60px 30px;
    }

    .about-facilities-card {
        width: 48%;
    }

    .about-quality p,
    .about-philosophy p {
        width: 90%;
    }

    .about-community p {
        width: 90%;
    }

    .contact-information {
        padding: 60px 40px;
    }

    .contact-card {
        width: 45%;
    }

    .footer-container {
        gap: 30px;
        padding: 0 10px;
    }

    .footer-col {
        flex: 1 1 45%;
        min-width: 250px;
    }

    .footer h3 {
        font-size: 1rem;
    }

    .footer p,
    .footer ul li a {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
    }

    .active-page a {
        color: #f3880d !important;
        position: relative;
    }

    .homepage-header {
        padding: 10px 20px;
    }

    .nav-bar {
        display: none;
    }

    .logo {
        width: 70px;
        height: 50px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 28px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        background-color: #1E3A8A;
        display: block;
        height: 3px;
        width: 100%;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 8px;
    }

    .hamburger span:nth-child(3) {
        top: 16px;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }

    .mobileNavEnable {
        display: flex;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu li a {
        color: #1E3A8A;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        position: relative;
        transition: 0.3s;
    }

    .mobile-menu li a:hover {
        color: #f3880d;
    }

    .mobile-menu li a::before {
        position: absolute;
        content: "";
        bottom: -10px;
        left: 0;
        height: 0%;
        width: 0%;
        transition: all .3s ease-in-out;
    }

    .mobile-menu a:hover::before {
        height: 2px;
        width: 100%;
        background-color: #f3880d;
    }

    .mobile-menu .book-button {
        margin-top: 10px;
        align-self: flex-start;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    .hero-carousel {
        height: auto;
        margin-top: 70px;
    }

    .slides {
        flex-direction: column;
    }

    .slide {
        background-size: cover;
        height: 80vh;
    }

    .overlay {
        background: rgba(0, 0, 0, 0.55);
        padding: 30px 20px;
        text-align: center;
    }

    .overlay-content {
        width: 100%;
    }

    .overlay h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-top: 20px;
    }

    .overlay p {
        width: 100%;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .buttons .btn {
        width: 80%;
        text-align: center;
        padding: 10px 0;
        font-size: 15px;
    }

    .controls {
        display: none;
    }

    .dots {
        bottom: 15px;
    }

    .dots span {
        width: 10px;
        height: 10px;
    }

    .quick-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 40px 15px;
    }

    .stat-card {
        width: 90%;
        /* full width with margin */
    }

    .stat-card .icon {
        font-size: 2rem;
        width: 45px;
        height: 45px;
    }

    .stat-card h2 {
        font-size: 20px;
        margin: 8px 0;
    }

    .stat-card p {
        font-size: 14px;
    }

    .about-section {
        padding: 60px 15px;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .about-image img {
        max-width: 100%;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 95%;
    }


    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .services-section {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .services-flex {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .service-card img {
        height: 200px;
        border-radius: 10px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-primary {
        padding: 10px 22px;
        font-size: 0.95rem;
    }

    .testimonials {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }


    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonial-card {
        margin: 0 auto !important;
        width: 90%;
        max-width: 350px;
    }

    .testimonial-swiper .swiper-wrapper {
        justify-content: center !important;
    }

    .testimonial-swiper .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        flex-direction: column;
    }


    .testimonial-card p {
        font-size: 0.9rem;
        text-align: center;
        margin: 25px 0 15px;
    }

    .testimonial-card h4 {
        font-size: 0.95rem;
    }

    .quote {
        font-size: 2.5rem;
        top: 10px;
        left: 20px;
    }

    /* Swiper Pagination and Buttons */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
        /* hide arrows on small screens */
    }

    .swiper-pagination {
        margin-top: 25px;
    }

    .appointment-container {
        flex-direction: column-reverse;
        /* image below text */
        text-align: center;
    }

    .appointment-text {
        flex: none;
        min-width: 100%;
    }

    .appointment-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .appointment-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .apt-btn,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .apt-btn:hover {
        background: #1E3A8A;
        color: #ffffff;
    }

    .appointment-image img {
        max-width: 90%;
        border-radius: 10px;
    }

    .about-page-hero {
        height: 60vh;
        background-size: cover;
    }

    .about-page-hero-content {
        padding: 70px 20px;
        text-align: center;
    }

    .about-page-hero-content h1 {
        font-size: 30px;
    }

    .about-page-hero-content p {
        font-size: 16px;
    }

    .about-vision-mission {
        padding: 50px 25px;
    }

    .about-vision,
    .about-mission {
        width: 100%;
        border-left: none;
        border-top: 3px solid #F3880D;
        padding: 20px 0;
    }

    .about-story {
        flex-direction: column;
        text-align: center;
        padding: 50px 25px;
    }

    .about-story-img {
        width: 70%;
    }

    .about-story-content {
        width: 100%;
    }

    .about-value-content {
        flex-direction: column;
        align-items: center;
    }

    .about-value-card {
        width: 80%;
    }

    .about-facilities-card {
        width: 100%;
    }

    .about-community {
        padding: 60px 25px;
        background-attachment: scroll;
    }

    .about-community p {
        width: 100%;
        font-size: 16px;
    }

    .about-quality,
    .about-philosophy {
        padding: 60px 25px;
    }

    .about-quality p,
    .about-philosophy p {
        width: 100%;
        font-size: 16px;
    }

    .contact-hero-section {
        height: 70vh;
        background-size: cover;
        background-position: center;
    }

    .contact-hero-content {
        padding: 80px 25px 50px;
        text-align: center;
    }

    .contact-hero-content h1 {
        font-size: 30px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-information {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 50px 25px;
    }

    .contact-card {
        width: 80%;
    }

    .contact-section {
        padding: 60px 100px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-col {
        flex: 1 1 100%;
        min-width: unset;
    }

    .footer-logo {
        margin: 0 auto 10px;
    }

    .footer h3 {
        margin-top: 10px;
        margin-bottom: 8px;
        color: #F3880D;
    }

    .footer ul {
        padding: 0;
    }

    .footer ul li {
        margin-bottom: 6px;
    }

    .footer ul li a {
        color: #f3f4f6;
        font-size: 1rem;
    }

    .footer p {
        color: #E5E7EB;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        margin-top: 25px;
        text-align: center;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 70vh;
    }

    .active-page a {
        color: #f3880d !important;
        position: relative;
    }

    .overlay {
        padding: 25px 15px;
    }

    .overlay h1 {
        font-size: 22px;
    }

    .overlay p {
        font-size: 14px;
    }

    .buttons .btn {
        width: 90%;
        font-size: 14px;
        padding: 10px;
    }

    .dots {
        bottom: 10px;
    }

    .about-content h2 {
        font-size: 1.4rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .service-card img {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .testimonials {
        padding: 40px 15px;
    }

    .testimonial-card {
        padding: 25px 18px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonial-card h4 {
        font-size: 0.9rem;
    }

    .quote {
        font-size: 2rem;
        top: 8px;
        left: 18px;
    }

    .swiper-slide {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }

    .swiper-slide-active {
        transform: scale(1);
    }

    .appointment-cta {
        padding: 50px 15px;
    }

    .appointment-text h2 {
        font-size: 1.4rem;
    }

    .appointment-text p {
        font-size: 0.95rem;
    }

    .apt-btn,
    .btn-secondary {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .about-page-hero {
        height: auto;
        background-size: cover;
        background-position: top;
    }

    .about-page-hero-content {
        padding: 60px 15px;
        text-align: center;
    }

    .about-page-hero-content h1 {
        font-size: 24px;
    }

    .about-page-hero-content p {
        font-size: 15px;
    }

    .about-vision-mission {
        padding: 40px 15px;
    }

    .about-vision-mission-head {
        font-size: 1.6rem;
    }

    .about-story {
        flex-direction: column;
        padding: 40px 15px;
        gap: 30px;
    }

    .about-story-img {
        width: 90%;
    }

    .about-story h1 {
        font-size: 1.5rem;
    }

    .about-story p {
        font-size: 15px;
        line-height: 1.5;
    }

    .about-value {
        padding: 40px 15px;
    }

    .about-value-head {
        font-size: 1.6rem;
    }

    .about-value-card {
        width: 100%;
    }

    .about-facilities {
        padding: 40px 15px;
    }

    .about-facilities-head {
        font-size: 1.6rem;
    }

    .about-facilities-card {
        width: 100%;
        padding: 15px;
    }

    .about-community {
        padding: 40px 15px;
    }

    .about-community h1 {
        font-size: 1.6rem;
    }

    .about-community p {
        font-size: 15px;
        width: 100%;
    }

    .about-community a {
        width: 80%;
        padding: 10px 20px;
        font-size: 15px;
    }

    .about-quality,
    .about-philosophy {
        padding: 40px 15px;
    }

    .about-quality h1,
    .about-philosophy h1 {
        font-size: 1.6rem;
    }

    .about-quality p,
    .about-philosophy p {
        width: 100%;
        font-size: 15px;
    }

    .contact-hero-section {
        height: auto;
        background-size: cover;
        background-position: top;
    }

    .contact-hero-content {
        padding: 60px 15px;
    }

    .contact-hero-content h1 {
        font-size: 24px;
    }

    .contact-hero-content p {
        font-size: 15px;
    }

    .contact-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .contact-hero-btns a {
        width: 80%;
        text-align: center;
    }

    /* CONTACT INFO */
    .contact-information {
        padding: 40px 15px;
    }

    .contact-card {
        width: 100%;
    }

    /* FORM */
    .contact-section {
        padding: 50px 20px;
    }

    input,
    select,
    textarea {
        font-size: 15px;
        padding: 10px 12px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px 0;
    }

    .footer {
        padding: 40px 10px 15px;
    }

    .footer h3 {
        font-size: 0.95rem;
    }

    .footer p,
    .footer ul li a {
        font-size: 0.9rem;
    }
}