@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

img {
    max-width: 100%;
}

/* Ensure IcoFont icons display correctly everywhere */
[class^="icofont-"],
[class*=" icofont-"] {
    font-family: 'IcoFont' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

/* Make all standalone icofont icons orange by default */
i[class^="icofont-"],
i[class*=" icofont-"] {
    color: #eb621b !important;
}

/* Ensure icons inside colored containers remain white */
.treatment-card .treatment-icon i,
.treatment-icon i,
.service-card .service-header .service-icon i,
.service-icon i,
.screening-program .program-header .program-icon i,
.program-icon i,
.contact-info .contact-icon i,
.contact-icon i,
.feature-card .feature-icon i,
.feature-icon i,
.appointment-form form .form-group span i,
.accordion .accordion-title i,
.fun-fact i,
.single-photo .gallery-content .link-btn i,
.single-photo .gallery-content .popup-btn i {
    color: #fff !important;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    clear: both;
    overflow: visible;
}

/* Treatment Page Cards - Uniform Padding and Spacing */

/* Treatment Card (used in treatments.html) */
.treatment-card {
    background: #fff;
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.treatment-card .treatment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4551a 0%, #eb621b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.treatment-card .treatment-icon i {
    font-size: 35px;
    color: #fff;
    line-height: 1;
    display: block;
    font-family: 'IcoFont' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.treatment-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.treatment-card p {
    font-size: 15px;
    color: #6f8ba4;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    flex: 1;
}

.treatment-card .btn {
    align-self: center;
    margin-top: auto;
}

/* Service Card (used in most treatment detail pages) */
.service-card {
    background: #fff;
    padding: 0;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.service-card .service-header {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-card .service-header .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(235, 98, 27, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card .service-header .service-icon i {
    font-size: 30px;
    color: #fff;
    line-height: 1;
    display: block;
    font-family: 'IcoFont' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-card .service-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.service-card .service-content {
    padding: 30px;
    flex: 1;
}

.service-card .service-content p {
    font-size: 15px;
    color: #6f8ba4;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .service-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-card .service-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-card .service-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #6f8ba4;
    line-height: 1.6;
}

.service-card .service-content ul li::before {
    content: "\ef4e";
    font-family: 'IcoFont' !important;
    position: absolute;
    left: 0;
    top: 8px;
    color: #eb621b;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
}

.service-card .service-content .service-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf2;
}

.service-card .service-content .service-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6f8ba4;
}

.service-card .service-content .service-details span i {
    color: #eb621b;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    font-style: normal;
}

/* Screening Program (used in advanced-health-screening.html) */
.screening-program {
    background: #fff;
    padding: 0;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.screening-program:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.screening-program .program-header {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.screening-program .program-header .program-icon {
    width: 60px;
    height: 60px;
    background: rgba(235, 98, 27, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.screening-program .program-header .program-icon i {
    font-size: 30px;
    color: #fff;
    line-height: 1;
    display: block;
    font-family: 'IcoFont' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.screening-program .program-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.screening-program .program-content {
    padding: 30px;
    flex: 1;
}

.screening-program .program-content p {
    font-size: 15px;
    color: #6f8ba4;
    line-height: 1.7;
    margin-bottom: 20px;
}

.screening-program .program-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 15px;
    margin-top: 25px;
}

.screening-program .program-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.screening-program .program-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #6f8ba4;
    line-height: 1.6;
}

.screening-program .program-content ul li::before {
    content: "\ef4e";
    font-family: 'IcoFont' !important;
    position: absolute;
    left: 0;
    top: 8px;
    color: #eb621b;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
}

.screening-program .program-content .program-duration {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf2;
}

.screening-program .program-content .program-duration span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6f8ba4;
}

.screening-program .program-content .program-duration span i {
    color: #eb621b;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    font-style: normal;
}

/* Feature Card (used in why-choose sections) */
.feature-card {
    background: #fff;
    padding: 35px 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

/* Contact Info Card (used in Ready to Book sections) */
.contact-info {
    background: #fff;
    padding: 35px 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.contact-info .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4551a 0%, #eb621b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info .contact-icon i {
    font-size: 32px;
    color: #fff;
    line-height: 1;
}

.contact-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-info p {
    font-size: 16px;
    color: #eb621b;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info span {
    font-size: 14px;
    color: #6f8ba4;
    display: block;
    line-height: 0.5;
    margin-bottom: 2px;
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4551a 0%, #eb621b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.feature-card .feature-icon i {
    font-size: 35px;
    color: #fff;
    line-height: 1;
    display: block;
    font-family: 'IcoFont' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 15px;
    color: #6f8ba4;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Policy Pages Styling */
.policy-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8eef5;
}

.policy-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #3b566e;
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #eb621b;
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    list-style-type: disc;
}

.policy-content a {
    color: #0076ff;
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }

    .policy-content h2 {
        font-size: 26px;
    }

    .policy-content h3 {
        font-size: 20px;
        margin-top: 30px;
    }
}

/* Section Title Consistent Spacing */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    clear: both;
    padding: 0;
}

.section-title h3 {
    font-size: 36px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title span {
    display: block;
    color: #eb621b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #6f8ba4;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Ensure rows in sections don't overlap */
section .row {
    position: relative;
    z-index: 1;
}

/* Container spacing for treatment pages */
.treatments-overview,
.screening-programs,
.hay-fever-services,
.pain-management-services,
.pain-services,
.geriatric-services,
.lifestyle-medicine-services,
.mens-services,
.womens-services,
.childrens-services,
.blood-test-services,
.cardiovascular-services,
.preventative-services,
.preventative-health-services,
.mental-health-services,
.screening-benefits,
.screening-process,
.why-choose-treatments,
.why-choose-hay-fever,
.why-choose-pain-management,
.why-choose-geriatric,
.why-choose-lifestyle-medicine,
.why-choose-mens-health,
.why-choose-womens-health,
.why-choose-childrens-health,
.why-choose-blood-tests,
.why-choose-cardiovascular,
.why-choose-preventative,
.contact-area {
    position: relative;
    z-index: 1;
    clear: both;
    overflow: visible;
}

.treatments-overview .container,
.screening-programs .container,
.hay-fever-services .container,
.pain-management-services .container,
.pain-services .container,
.geriatric-services .container,
.lifestyle-medicine-services .container,
.mens-services .container,
.womens-services .container,
.childrens-services .container,
.blood-test-services .container,
.cardiovascular-services .container,
.preventative-services .container,
.preventative-health-services .container,
.mental-health-services .container,
.screening-benefits .container,
.screening-process .container,
.why-choose-treatments .container,
.why-choose-hay-fever .container,
.why-choose-pain-management .container,
.why-choose-geriatric .container,
.why-choose-lifestyle-medicine .container,
.why-choose-mens-health .container,
.why-choose-womens-health .container,
.why-choose-childrens-health .container,
.why-choose-blood-tests .container,
.why-choose-cardiovascular .container,
.why-choose-preventative .container,
.contact-area .container {
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Fix card overlapping issues */
.row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.row>[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0;
    float: none;
}

/* Ensure proper spacing for treatment page columns */
.treatments-overview .col-lg-4,
.treatments-overview .col-md-6,
.screening-programs .col-lg-6,
.hay-fever-services .col-lg-6,
.pain-management-services .col-lg-6,
.geriatric-services .col-lg-6,
.lifestyle-medicine-services .col-lg-6,
.mens-services .col-lg-6,
.womens-services .col-lg-6,
.childrens-services .col-lg-6,
.blood-test-services .col-lg-6,
.cardiovascular-services .col-lg-6,
.preventative-services .col-lg-6,
.mental-health-services .col-lg-6,
.preventative-health-services .col-lg-6,
.why-choose-treatments .col-lg-4,
.why-choose-hay-fever .col-lg-4,
.why-choose-pain-management .col-lg-4,
.why-choose-geriatric .col-lg-4,
.why-choose-lifestyle-medicine .col-lg-4,
.why-choose-mens-health .col-lg-4,
.why-choose-womens-health .col-lg-4,
.why-choose-childrens-health .col-lg-4,
.why-choose-blood-tests .col-lg-4,
.why-choose-cardiovascular .col-lg-4,
.why-choose-preventative .col-lg-4,
.why-choose-mental-health .col-lg-4,
.why-choose-advanced-screening .col-lg-4,
.contact-area .col-lg-4,
.contact-area .col-md-6,
.why-choose-treatments .col-md-6,
.why-choose-hay-fever .col-md-6,
.why-choose-pain-management .col-md-6,
.why-choose-womens-health .col-md-6,
.why-choose-mens-health .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 30px !important;
}

.contact-area .row {
    display: flex;
    flex-wrap: wrap;
}

.contact-area .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.contact-area .row>[class*="col-"]>.contact-box {
    width: 100%;
}

/* Background fix for why-choose sections */
.bg-f9faff {
    background-color: #f9faff;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for treatment cards */
@media (max-width: 991px) {

    .treatment-card,
    .service-card,
    .screening-program,
    .feature-card {
        margin-bottom: 30px;
    }

    .service-card .service-content,
    .screening-program .program-content {
        padding: 25px;
    }

    .treatments-overview .col-lg-4,
    .treatments-overview .col-md-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .treatment-card {
        padding: 30px 20px;
    }

    .service-card .service-header,
    .screening-program .program-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }

    .service-card .service-content,
    .screening-program .program-content {
        padding: 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h3 {
        font-size: 28px;
    }

    .treatments-overview .col-lg-4,
    .treatments-overview .col-md-6,
    [class*="col-lg-"] {
        margin-bottom: 30px;
    }
}

p {
    margin-top: 0;
    margin-bottom: 0;
    color: #6f8ba4;
    font-size: 14px;
    line-height: 1.8;
}

.bg-f9faff {
    background: #f9faff;
    position: relative;
    z-index: 1;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
    color: #3b566e;
}

a {
    color: #6f8ba4;
    text-decoration: none;
    outline: 0 !important;
    display: inline-block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a:hover {
    color: #007aff;
    text-decoration: none;
}

button {
    outline: 0 !important;
}

.mt-30 {
    margin-top: 30px;
}

.btn {
    position: relative;
    color: #fff;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 35px;
    padding: 11px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.btn::after {
    content: "";
    position: absolute;
    height: 100%;
    z-index: -1;
    bottom: auto;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    top: 0;
    left: 0;
    width: 100%;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn:focus::after,
.btn:hover::after {
    height: 0;
}

.btn:hover {
    color: #007aff;
    border-color: #007aff;
}

.btn.focus,
.btn:focus {
    box-shadow: unset;
    color: #007aff;
    border-color: #007aff;
}

.btn.disabled,
.btn:disabled {
    opacity: 1;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    color: #fff;
    background-color: #007aff;
    border-color: #007aff;
}

.btn.disabled:hover,
.btn:disabled,
fieldset:disabled .btn:hover {
    color: #000;
}

.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-theme .owl-dots {
    position: absolute;
    left: 0;
    bottom: -60px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 35px;
    height: 5px;
    margin: 0 8px 0 0;
    background: #6f8ba4;
    position: relative;
    border-radius: 3px;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot span::before,
.owl-theme .owl-dots .owl-dot.active span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 3px;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0;
    visibility: hidden;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #eb621b;
}

.owl-theme .owl-dots .owl-dot span:hover::before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.dark-version-btn {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 36px 0px, rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 36px 0px, rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
    display: inline-block;
    text-align: center;
    position: fixed;
    z-index: 9991;
    right: 0;
    top: 30%;
}

.dark-version-btn .switch {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    border-radius: 50%;
    display: inline-block;
}

.dark-version-btn .switch input {
    width: 0;
    height: 0;
    opacity: 0;
}

.dark-version-btn .slider {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    position: absolute;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #2e2e2e;
}

.dark-version-btn .slider:before {
    left: 0;
    top: 50%;
    right: 0;
    content: "\ee81";
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    font-family: "IcoFont";
}

.dark-version-btn input:checked+.slider {
    background-color: #ffffff;
}

.dark-version-btn input:checked+.slider:before {
    color: #384656;
    content: "\ef9e";
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 55px;
    padding: 10px;
    font-size: 16px;
    color: #92a5b8;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 3px;
}

.form-control:focus {
    color: #92a5b8;
    background-color: transparent;
    border-color: #eee;
    outline: 0;
    box-shadow: unset;
}

.form-control::placeholder {
    color: #92a5b8;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    font-size: 28px;
    margin-bottom: 8px;
    margin-top: -5px;
}

.section-title span {
    display: inline-block;
    color: #eb621b;
    font-size: 18px;
    margin-bottom: 18px;
}

.section-title p {
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.preloader-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #fff;
}

.preloader-area .spinner {
    width: 55px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -70px;
    margin-left: -65px;
}

.preloader-area .spinner>div {
    background-color: #eb621b;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.preloader-area .spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.preloader-area .spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.preloader-area .spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.preloader-area .spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

    0%,
    100%,
    40% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes sk-stretchdelay {

    0%,
    100%,
    40% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: 0 0 !important;
    z-index: 999;
    padding: 12px 0;
}

.navbar .row {
    align-items: center !important;
}

.navbar-brand img {
    height: 60px !important;
    width: auto;
    max-height: 60px !important;
    display: block;
}

.navbar-light.is-sticky {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: #fff !important;
    z-index: 999;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
    animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar .row {
    width: 100%;
}

.navbar-light.navbar-expand-lg .navbar-nav li {
    padding: 10px 12px;
}

.navbar-light.navbar-expand-lg .navbar-nav li a {
    color: #6f8ba4;
    font-size: 15px;
    padding: 0;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav li a:hover {
    color: #007aff !important;
}

.navbar-light .navbar-nav .active>a,
.navbar-light .navbar-nav .show>a,
.navbar-light .navbar-nav a.active,
.navbar-light .navbar-nav a.show {
    color: #007aff !important;
}

.appointment-btn {
    font-size: 14px;
    font-weight: 600;
    color: #0075ff;
    border: 1px solid #0075ff;
    padding: 8px 30px;
    border-radius: 30px;
}

.appointment-btn:hover {
    background: #0075ff;
    color: #fff;
}

.appointment-btn.white-btn {
    color: #fff;
    border-color: #fff;
}

.appointment-btn.white-btn:hover {
    border-color: #0075ff;
}

.navbar.is-sticky .appointment-btn.white-btn {
    color: #0075ff;
    border-color: #0075ff;
}

.navbar.is-sticky .appointment-btn.white-btn:hover {
    color: #fff;
}

.navbar.navbar-two {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: #fff !important;
    z-index: 999;
    padding: 12px 0;
}

.navbar.navbar-two .row {
    align-items: center !important;
}

.navbar.navbar-two .navbar-brand img {
    height: 60px !important;
    width: auto;
    max-height: 60px !important;
    display: block;
}

.navbar.navbar-two.is-sticky {
    position: fixed;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
    animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}

.main-banner {
    height: 730px;
    background-image: url(../../assets/img/hero-bg.jpg);
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

@media only screen and (min-width: 1400px) {
    .main-banner {
        height: 860px;
    }
}

.main-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../assets/img/hero-shape.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content h1 {
    color: #1e3056;
    font-size: 35px;
    margin-bottom: 15px;
    line-height: 45px;
}

.main-banner-three .hero-content h1 {
    color: #000000 !important;
}

.hero-content h1 span {
    color: #eb621b;
}

.hero-content p {
    margin-bottom: 25px;
    font-size: 15px;
    max-width: 600px;
}

.main-banner-three .hero-content p {
    color: #2c3e50 !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8), 0 1px 1px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.main-banner-three.main-banner-three-video .hero-content p {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.6),
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.8 !important;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 600px;
}

.hero-video {
    position: relative;
}

.hero-video .video-play-btn {
    position: absolute;
    right: 0;
    font-size: 100px;
    color: #fff;
}

.main-banner-two::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0.77;
    z-index: -1;
}

.main-banner-three {
    height: 650px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin-bottom: 0;
    margin-top: 80px;
    padding-top: 80px;
}

.main-banner-three.main-banner-three-video {
    height: 900px;
    position: relative;
    z-index: 1;
}

.main-banner-three.main-banner-three-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: -1;
}

.main-banner-three.main-banner-three-video .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
}

.main-banner-three.main-banner-three-video .hero-content {
    position: relative;
    z-index: 3;
}

.main-banner-three.main-banner-three-video h1 {
    color: #ffffff !important;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
}

.main-banner-three .col-lg-5 {
    position: relative;
}

.main-banner-three .hero-image {
    position: absolute;
    right: 0;
    text-align: right;
    top: -155px;
}

.boxes-area {
    padding-top: 0;
    position: relative;
    margin-top: -150px;
    z-index: 10;
}

.single-box {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 30px 28px;
    border-radius: 5px 30px 5px 5px;
    background: #fff;
    position: relative;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.single-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0;
    visibility: hidden;
    border-radius: 5px 30px 5px 5px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-box:hover::before {
    opacity: 1;
    height: 100%;
    visibility: visible;
}

.single-box i {
    font-size: 40px;
    color: #eb621b;
}

.single-box h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.single-box h3,
.single-box i,
.single-box p {
    position: relative;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-box:hover h3,
.single-box:hover i,
.single-box:hover p {
    color: #fff;
}

.about-image img {
    width: 100%;
}

.about-image .col-lg-6:first-child .image img {
    border-radius: 25px 0 0 0;
}

.about-image .col-lg-6:nth-child(2) .image img {
    border-radius: 0 25px 0 0;
}

.about-image .col-lg-6:nth-child(3) .image img {
    border-radius: 0 0 0 25px;
}

.about-image .col-lg-6:last-child .image img {
    border-radius: 0 0 25px 0;
}

.why-choose-us .section-title {
    text-align: left;
    margin-bottom: 0;
}

.why-choose-us .section-title span {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

.why-choose-us .section-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    height: 2px;
    width: 20px;
    background: #3b566e;
}

.why-choose-us-text p {
    margin-bottom: 16px;
}

.why-choose-us-text ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 30px;
    margin-top: 25px;
}

.why-choose-us-text ul li {
    position: relative;
    color: #6f8ba4;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 25px;
}

.why-choose-us-text ul li:last-child {
    margin-bottom: 0;
}

.why-choose-us-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.who-we-are .section-title {
    text-align: left;
    margin-bottom: 0;
}

.who-we-are .section-title span {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

.who-we-are .section-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    height: 2px;
    width: 20px;
    background: #3b566e;
}

.who-we-are-text p {
    margin-bottom: 20px;
}

.team-members {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.team-members li>div {
    float: left;
    width: 20%;
}

.team-members li:nth-child(2)>div:first-child {
    margin-left: 20%;
}

.team-members li:last-child>div:first-child {
    margin-left: 40%;
}

.member-details>div {
    background-color: #fff;
    margin: 5px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
}

.member-details img {
    -webkit-transform: rotate(45deg) translate(0, 15px) scale(1.2);
    transform: rotate(45deg) translate(0, 15px) scale(1.2);
}

.member-details>div {
    position: relative;
    overflow: hidden;
}

.member-info {
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg) translate(-25px, -15px);
    transform: rotate(45deg) translate(-25px, -15px);
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

.member-info h3,
.member-info p {
    margin: 0;
    color: #fff;
    position: relative;
    opacity: 0;
    visibility: hidden;
}

.member-info h3 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    top: -100px;
}

.member-info p {
    font-weight: 300;
    font-size: 14px;
    bottom: -150px;
}

.member-details>div::after {
    content: "";
    background-image: linear-gradient(45deg, rgba(0, 117, 255, 0.8) 100%, transparent 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.member-details *,
.member-details>div::after {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.member-details:hover *,
.member-details:hover>div::after {
    opacity: 1;
    visibility: visible;
}

.member-details:hover .member-info h3 {
    top: 0;
}

.member-details:hover .member-info p {
    bottom: 0;
}

.member-info ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.member-info ul li {
    display: inline-block;
}

.member-info ul li a {
    display: inline-block;
    color: #fff;
}

.member-details:hover .member-info ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Doctor Carousel - Modern Minimal Design */
.doctor-carousel-wrapper {
    position: relative;
    padding: 0 20px 0 40px;
}

.doctor-carousel {
    padding-bottom: 0;
}

.doctor-testimonial-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px 0 0;
    background: transparent;
}

.doctor-testimonial-minimal .doctor-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 35px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.doctor-testimonial-minimal .doctor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-testimonial-content {
    max-width: 100%;
}

.doctor-testimonial-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.doctor-testimonial-content h3 .founder-badge {
    font-size: 18px;
    font-weight: 600;
    color: #0078ff;
    display: inline-block;
    margin-left: 8px;
}

.doctor-testimonial-content .doctor-credentials {
    display: block;
    font-size: 14px;
    color: #0078ff;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.doctor-testimonial-content p {
    color: #6f8ba4;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.doctor-testimonial-content p:last-child {
    margin-bottom: 0;
}

/* Owl Carousel Custom Styles */
.doctor-carousel {
    position: relative;
}

.doctor-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
    padding: 0 !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none;
    width: 100%;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* Remove any line/span elements that create lines */
.doctor-carousel .owl-dots .owl-dot {
    border: none;
    outline: none;
}

.doctor-carousel .owl-dots .owl-dot span {
    display: none !important;
}

.doctor-carousel .owl-dots .owl-dot span::before,
.doctor-carousel .owl-dots .owl-dot.active span::before,
.doctor-carousel .owl-dots .owl-dot span::after,
.doctor-carousel .owl-dots .owl-dot.active span::after {
    display: none !important;
    content: none !important;
}

.doctor-carousel .owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 8px;
    border-radius: 50%;
    background: #d0dae5;
    border: none !important;
    outline: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
}

.doctor-carousel .owl-dots button.owl-dot:hover {
    background: #eb621b;
}

.doctor-carousel .owl-dots button.owl-dot.active {
    background: #eb621b;
    width: 28px;
    height: 10px;
    border-radius: 5px;
}

.doctor-carousel .owl-nav {
    display: none;
}

/* Smooth fade transitions for carousel */
.doctor-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.doctor-carousel .owl-item.active {
    opacity: 1;
}

/* Left Content Styles */
.who-we-are-content {
    padding-right: 50px;
    padding-left: 0;
}

.who-we-are-content .section-title {
    text-align: left;
    margin-bottom: 0;
}

.who-we-are-content .section-title h3 {
    font-size: 36px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 18px;
    line-height: 1.2;
}

.who-we-are-content .section-title span {
    display: inline-block;
    color: #0078ff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-left: 0;
}

/* Remove the overlaying line from Meet Our Doctors */
.who-we-are-content .section-title span::before {
    display: none;
}

.who-we-are-content .section-title p {
    color: #6f8ba4;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    padding-right: 0;
}

.who-we-are-content .btn {
    margin-top: 35px;
}

@media (max-width: 991px) {
    .who-we-are-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .who-we-are-content .section-title {
        text-align: center;
        margin-bottom: 0;
    }

    .who-we-are-content .section-title h3 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .who-we-are-content .section-title span {
        margin-bottom: 25px;
    }

    .who-we-are-content .btn {
        margin-top: 35px;
    }

    .doctor-carousel-wrapper {
        padding: 0 20px;
    }

    .doctor-testimonial-minimal {
        padding: 0;
    }

    .doctor-testimonial-minimal .doctor-image-wrapper {
        width: 180px;
        height: 180px;
        margin-bottom: 35px;
    }

    .doctor-testimonial-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .doctor-testimonial-content .doctor-credentials {
        margin-bottom: 28px;
    }

    .doctor-carousel .owl-dots {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .doctor-carousel-wrapper {
        padding: 0 15px;
    }

    .doctor-testimonial-minimal {
        padding: 0;
    }

    .doctor-testimonial-minimal .doctor-image-wrapper {
        width: 160px;
        height: 160px;
        margin-bottom: 30px;
    }

    .doctor-testimonial-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .doctor-testimonial-content .doctor-credentials {
        margin-bottom: 24px;
        font-size: 13px;
    }

    .doctor-testimonial-content p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
    }

    .who-we-are-content .section-title h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .who-we-are-content .section-title span {
        margin-bottom: 20px;
    }

    .who-we-are-content .section-title p {
        font-size: 14px;
    }

    .who-we-are-content .btn {
        margin-top: 30px;
    }

    .doctor-carousel .owl-dots {
        margin-top: 35px;
    }
}

.departments-area {
    background-image: url(../../assets/img/pattern.png);
    background-attachment: fixed;
}

.tabs {
    list-style-type: none;
    margin-bottom: 30px;
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.tabs li {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
}

.tabs li a {
    display: block;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
    border-radius: 3px;
    padding: 25px 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #3b566e;
    position: relative;
    z-index: 1;
}

.tabs li a:hover,
.tabs li a:hover i,
.tabs li.current a,
.tabs li.current a i {
    color: #fff;
}

.tabs li a i {
    color: #0075ff;
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tabs li:first-child a {
    border-radius: 30px 0 0 0;
}

.tabs li:last-child a {
    border-radius: 0 30px 0 0;
}

.tabs li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    z-index: -1;
    opacity: 0;
    border-radius: 3px;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    visibility: hidden;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tabs li:first-child a::before {
    border-radius: 30px 0 0 0;
}

.tabs li:last-child a::before {
    border-radius: 0 30px 0 0;
}

.tabs li a:hover::before,
.tabs li.current a::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.tabs_item:first-child {
    display: block;
}

.tabs_item {
    display: none;
    background: #fff;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.tabs_item_img img {
    width: 100%;
}

.tabs_item_content {
    padding: 30px 20px;
}

.tabs_item_content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tabs_item_content p {
    font-size: 15px;
}

.tabs_item_content ul {
    padding: 0;
    margin: 10px 0 20px 0;
    list-style-type: none;
}

.tabs_item_content ul li {
    position: relative;
    color: #6f8ba4;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 25px;
}

.tabs_item_content ul li:last-child {
    margin-bottom: 0;
}

.tabs_item_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.appointment-area {
    position: relative;
}

.appointment-area::after,
.appointment-area::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.appointment-area::before {
    background: linear-gradient(45deg, rgba(235, 98, 27, 0.8) 100%, transparent 100%);
    z-index: 1;
}

.appointment-area::after {
    background-image: url(../../assets/img/appointment-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.appointment-area .section-title {
    text-align: left;
    margin-bottom: 15px;
    margin-top: 35px;
}

.appointment-area .section-title span {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

.appointment-area .section-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    height: 2px;
    width: 20px;
    background: #3b566e;
}

.faq {
    padding-right: 20px;
}

.accordion {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accordion .accordion-item {
    display: block;
    margin-bottom: 10px;
}

.accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion .accordion-title {
    display: block;
    color: #fff;
    padding: 18px 20px;
    background: #eb621b;
    background: -webkit-linear-gradient(to right, #d4551a, #eb621b);
    background: linear-gradient(to right, #d4551a, #eb621b);
    font-size: 18px;
    position: relative;
}

.accordion .accordion-title i {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -5px;
    font-size: 14px;
}

.accordion .accordion-title.active i::before {
    content: "\ef9a";
}

.accordion .accordion-content {
    display: none;
    position: relative;
    overflow: hidden;
    padding: 15px;
    background: #f9faff;
}

.accordion .accordion-content.show {
    display: block;
}

.appointment-form {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.appointment-form form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.appointment-form form .form-group span {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    color: #fff;
    z-index: -1;
}

.appointment-form form .form-control {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}

.appointment-form form .form-control::placeholder {
    color: #fff;
}

.appointment-form form .form-control option {
    color: #92a5b8;
}

.appointment-form form .btn {
    border: 1px solid #fff;
    margin-top: 5px;
    color: #eb621b;
}

.appointment-form form .btn:hover {
    color: #fff;
}

.appointment-form form .btn::after {
    background: #fff !important;
}

.single-services {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    position: relative;
    border-radius: 30px 5px 5px 5px;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-services::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    border-radius: 30px 5px 5px 5px;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-services:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    border-radius: 0;
}

.single-services:hover::before {
    opacity: 1;
    visibility: visible;
    border-radius: 0;
}

.single-services i {
    font-size: 40px;
    color: #0075ff;
}

.single-services h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.single-services h3,
.single-services i,
.single-services p {
    position: relative;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-services p {
    flex-grow: 1;
}

.single-services:hover h3,
.single-services:hover i,
.single-services:hover p {
    color: #fff;
}

.single-services a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: 25px;
    font-size: 20px;
    border-radius: 50%;
    color: #fff;
    position: relative;
    z-index: 1;
}

.single-services:hover a {
    color: #0075ff;
    background: #fff;
}

.single-services a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    border-radius: 50%;
    z-index: -1;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-services:hover a::after {
    opacity: 0;
    visibility: hidden;
}

.fun-facts-area {
    position: relative;
    background-image: url(../../assets/img/fun-facts-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.fun-facts-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0.8;
    z-index: -1;
}

.fun-fact {
    text-align: center;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.fun-fact:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.fun-fact i {
    font-size: 40px;
    color: #fff;
}

.fun-fact h3 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 28px;
    margin-top: 30px;
}

.fun-fact span {
    font-size: 18px;
    color: #fff;
    display: block;
}

.funFact {
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    padding-left: 60px;
}

.funFact:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.funFact i {
    font-size: 40px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.funFact h3 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 28px;
}

.funFact span {
    font-size: 18px;
    color: #fff;
    display: block;
}

.gallery-area {
    padding-bottom: 70px;
}

.shorting-menu {
    text-align: center;
    margin-bottom: 35px;
}

.shorting-menu .filter {
    display: inline-block;
    cursor: pointer;
    background: #fff;
    border: none;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    padding: 10px 22px;
    margin: 0 2px;
    font-size: 14px;
    font-weight: 700;
    color: #3b566e;
    text-transform: uppercase;
    outline: 0 !important;
    position: relative;
    z-index: 1;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.shorting-menu .filter.mixitup-control-active,
.shorting-menu .filter:hover {
    color: #fff;
}

.shorting-menu .filter:first-child,
.shorting-menu .filter:first-child::before {
    border-radius: 20px 0 0 20px;
}

.shorting-menu .filter:last-child,
.shorting-menu .filter:last-child::before {
    border-radius: 0 20px 20px 0;
}

.shorting-menu .filter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    visibility: hidden;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.shorting-menu .filter.mixitup-control-active::before,
.shorting-menu .filter:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.single-photo {
    position: relative;
    margin-bottom: 30px;
    border: 5px solid #f9faff;
    border-radius: 5px;
}

.single-photo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-photo:hover::before {
    opacity: 0.77;
    width: 100%;
    visibility: visible;
}

.single-photo .gallery-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-photo:hover .gallery-content {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.single-photo .gallery-content h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.single-photo .gallery-content span {
    display: block;
    color: #fff;
    font-size: 14px;
}

.single-photo .gallery-content .link-btn {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #fff;
    font-size: 22px;
}

.single-photo .gallery-content .popup-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 22px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-photo:hover .gallery-content .popup-btn {
    bottom: 15px;
    right: 15px;
}

.single-photo img {
    width: 100%;
}

.pricing-table {
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding-bottom: 35px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-table:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.pricing-table .pricing-header {
    background: #fff;
    position: relative;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    border-bottom: 2px solid #f0f3f6;
    margin-bottom: 30px;
    z-index: 1;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-table .pricing-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    border-radius: 5px 5px 0 0;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.pricing-table:hover .pricing-header::before {
    opacity: 1;
    visibility: visible;
}

.pricing-table .pricing-header h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-table:hover .pricing-header h3 {
    color: #fff;
}

.pricing-table .price {
    margin-bottom: 20px;
}

.pricing-table .price span {
    color: #eb621b;
    font-size: 34px;
    font-weight: 700;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 250px;
}

.pricing-features ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features ul li {
    color: #3b566e;
    font-size: 14px;
    margin-bottom: 10px;
}

.pricing-features ul li:last-child {
    margin-bottom: 0;
}

.pricing-area .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.pricing-area .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.pricing-area .row>[class*="col-"]:not(:nth-child(-n+4)) {
    margin-top: 40px;
}

.pricing-area .row>[class*="col-"]>.pricing-table {
    width: 100%;
}

.testimonials-area {
    padding-bottom: 70px;
}

.single-feedback {
    background: #fff;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 25px;
}

.single-feedback:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-feedback::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-feedback:hover::before {
    opacity: 1;
    visibility: visible;
}

.single-feedback .client-info {
    position: relative;
    padding-left: 118px;
    margin-bottom: 30px;
}

.single-feedback .client-info .img {
    position: absolute;
    left: 0;
    top: -45px;
    width: 100px;
}

.single-feedback .client-info .img img {
    border-radius: 0 25px 0 0;
}

.single-feedback .client-info h4 {
    font-size: 18px;
}

.single-feedback .client-info span {
    display: block;
    font-size: 14px;
    color: #6f8ba4;
    margin-top: 5px;
}

.single-feedback .client-info h4,
.single-feedback .client-info span,
.single-feedback p {
    position: relative;
    z-index: 1;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-feedback:hover .client-info h4,
.single-feedback:hover .client-info span,
.single-feedback:hover p {
    color: #fff;
}

.single-feedback i {
    font-size: 104px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #6f8ba4;
    z-index: -1;
    margin-top: -6px;
    margin-left: -70px;
    opacity: 0.14;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-feedback:hover i {
    color: #fff;
    opacity: 0.14;
}

.blog-area .single-blog-post {
    margin-bottom: 30px;
}

.single-blog-post {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-blog-post:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-blog-post img {
    border-radius: 15px 15px 0 0;
    width: 100%;
}

.blog-img {
    width: 100%;
}

.single-blog-post .post-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.single-blog-post .post-content h4 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.single-blog-post .post-content h4 a {
    color: #3b566e;
}

.single-blog-post .post-content h4 a:hover {
    color: #007aff;
}

.single-blog-post .post-content p {
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-area .row,
.blog-area .row {
    display: flex;
    flex-wrap: wrap;
}

.news-area .row>[class*="col-"],
.blog-area .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.news-area .row>[class*="col-"]>.single-blog-post,
.blog-area .row>[class*="col-"]>.single-blog-post {
    width: 100%;
}

.contact-box {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    border-radius: 15px 5px 5px 5px;
    margin-bottom: 40px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.contact-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px 5px 5px 5px;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.contact-box:hover::before {
    opacity: 1;
    visibility: visible;
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-box h3 i {
    color: #eb621b;
    margin-right: 5px;
}

.contact-box ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: left;
}

.contact-box ul li {
    font-size: 14px;
    color: #6f8ba4;
    margin-bottom: 4px;
    overflow: hidden;
}

.contact-box ul li span {
    float: right;
}

.contact-box h3,
.contact-box h3 i,
.contact-box p a,
.contact-box ul li {
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.contact-box:hover h3,
.contact-box:hover h3 i,
.contact-box:hover p a,
.contact-box:hover ul li {
    color: #fff;
}

.get-in-touch h3 {
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.get-in-touch ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-top: 15px;
}

.get-in-touch ul li {
    display: inline-block;
}

.get-in-touch ul li a {
    color: #92a5b8;
    font-size: 18px;
    margin-right: 5px;
}

.get-in-touch ul li a:hover {
    color: #0075ff;
}

#contactForm .btn:focus,
#contactForm .btn:hover {
    background: #fff;
}

#contactForm .btn {
    margin-top: 10px;
}

#contactForm .list-unstyled {
    padding: 0;
    margin: 0;
}

#contactForm .list-unstyled li {
    color: red;
}

.page-title {
    position: relative;
    background-image: url(../../assets/img/fun-facts-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00c6ff;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
    opacity: 0.8;
}

.page-title h3 {
    color: #fff;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
}

.pagination-area {
    text-align: center;
    margin-top: 10px;
}

.pagination-area ul {
    padding: 0;
    margin: 0;
}

.page-link {
    padding: 11px 20px;
    margin: 0 3px;
    color: #6f8ba4;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 2px 10px 0 #d8dde6;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #0075ff;
}

.page-link:focus,
.page-link:hover {
    color: #fff;
    background-color: #0075ff;
}

.page-link:focus {
    box-shadow: unset;
}

.blog-details {
    max-width: 750px;
    margin: 0 auto;
}

.blog-details .thumb {
    position: relative;
}

.blog-details .date {
    position: absolute;
    left: 0;
    bottom: 0;
    text-transform: uppercase;
    background: #0075ff;
    color: #fff;
    padding: 10px 20px;
    font-size: 22px;
    border-radius: 0 10px 0 0;
}

.blog-details-heading {
    margin: 30px 0 0;
}

.blog-details-heading h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-details-heading ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-details-heading ul li {
    display: inline-block;
    margin-right: 15px;
    color: #777;
    font-size: 15px;
}

.blog-details-heading ul li i {
    color: #0075ff;
}

.blog-details-content p {
    margin-top: 15px;
}

.blog-details-content .blockquote {
    margin: 25px 0;
    background: #0075ff;
    padding: 25px;
    color: #fff;
}

.blog-details-content .blockquote p {
    color: #fff;
    font-size: 18px;
    margin-top: 0;
}

.blog-details-content .blockquote .blockquote-footer {
    color: #fff;
    margin-top: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.blog-details-meta {
    border-top: 1px solid #eee;
    margin: 25px 0;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.blog-details-meta .tags {
    display: inline-block;
}

.blog-details-meta ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-details-meta ul .title {
    font-size: 18px;
    font-weight: 500;
    color: #777;
    margin-right: 5px;
    margin-bottom: 0;
}

.blog-details-meta ul li {
    display: inline-block;
}

.blog-details-meta .tags li a {
    border: 1px solid #eee;
    padding: 5px 14px;
    border-radius: 6px;
    color: #6f8ba4;
    font-size: 15px;
}

.blog-details-meta .tags li a:hover {
    background: #0075ff;
    color: #fff;
    border-color: #0075ff;
}

.blog-details-meta .share {
    float: right;
}

.blog-details-meta .share li a {
    color: #6f8ba4;
    border: 1px solid #eee;
    width: 35px;
    font-size: 14px;
    height: 35px;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
}

.blog-details-meta .share li a:hover {
    background: #0075ff;
    color: #fff;
    border-color: #0075ff;
}

.blog-details-content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.blog-details-comments .single-comments {
    position: relative;
    padding-left: 130px;
}

.blog-details-comments .single-comments .thumb {
    position: absolute;
    left: 0;
    top: 0;
}

.blog-details-comments .single-comments .thumb img {
    border-radius: 50%;
}

.blog-details-comments .single-comments .content h4 {
    font-size: 18px;
    font-weight: 600;
}

.blog-details-comments .single-comments .content span {
    font-size: 14px;
    color: #6f8ba4;
    display: block;
    margin: 8px 0 15px;
}

.blog-details-comments .single-comments .content p {
    margin-bottom: 20px;
}

.single-comments.left-mr {
    margin-left: 80px;
    margin-top: 30px;
}

.blog-details-comments .border {
    border-color: #eee !important;
    margin: 25px 0;
}

.blog-details-comments-form {
    margin-top: 25px;
}

.footer-area {
    padding: 60px 0 40px;
    background: #f9faff;
    overflow: hidden;
}

.footer-area .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-area .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.footer-area .row>div {
    padding-left: 15px;
    padding-right: 15px;
    align-self: flex-start;
}

/* Ensure all footer column sections align at top */
.footer-content,
.footer-links,
.footer-contact {
    padding-top: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Make sure footer links and contact align with content */
.footer-links h4,
.footer-contact h4 {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
    line-height: 1.2;
    font-size: 18px;
    font-weight: 700;
    color: #3b566e;
    width: 100%;
}

/* Align footer logo to start at same vertical position as h4 headers */
/* Calculate: h4 font-size (18px) * line-height (1.2) = ~21.6px, logo is 50px */
/* We want logo top to align with h4 top, so we add padding to match baseline */
.footer-content .footer-logo {
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 0;
    height: auto;
    display: block;
}

.footer-area p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #6f8ba4;
    line-height: 1.8;
}

/* Footer Content Styles - Aligned with other columns */
.footer-content {
    margin-bottom: 0;
    padding-top: 0;
}

.footer-content .footer-logo {
    margin-bottom: 20px;
    padding-top: 0;
    margin-top: 0;
    display: block;
    line-height: 1.2;
}

.footer-content .footer-logo img {
    height: 50px !important;
    max-height: 50px !important;
    width: auto;
    display: block;
    vertical-align: top;
}

.footer-content>p {
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 0;
}

.footer-social {
    margin-top: 25px;
    padding-top: 0;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color: #6f8ba4;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-social a:hover {
    background: #eb621b;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Links Styles */
.footer-links {
    margin-bottom: 30px;
    padding-top: 0;
    margin-top: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 20px;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    line-height: 1.2;
    width: 100%;
    text-align: left;
}

.footer-links ul {
    list-style-type: none;
    list-style-position: outside;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0;
    margin-left: 0 !important;
    margin-right: 0;
    text-align: left !important;
    width: 100%;
    padding-left: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links ul li {
    display: block;
    margin-bottom: 12px;
    margin-left: 0 !important;
    margin-right: 0;
    padding-left: 0 !important;
    padding-right: 0;
    padding-top: 0;
    position: relative;
    width: auto;
    list-style: none;
    list-style-type: none;
    list-style-position: outside;
    text-align: left !important;
    align-self: flex-start;
}

.footer-links ul li:first-child {
    margin-top: 0;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li::before {
    display: none !important;
    content: none !important;
}

.footer-links ul li::marker {
    display: none;
    content: '';
}

.footer-links ul li a {
    color: #6f8ba4;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.6;
    padding: 0 !important;
    margin: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
    width: auto;
}

.footer-links ul li a:hover {
    color: #0078ff;
    padding-left: 5px;
}

/* Footer Contact Styles */
.footer-contact {
    margin-bottom: 30px;
    padding-top: 0;
}

.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3b566e;
    margin-bottom: 20px;
    margin-top: 0;
    padding-top: 0;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #6f8ba4;
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact .contact-item i {
    color: #eb621b;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact .contact-item span {
    flex: 1;
}

/* Footer Bottom Styles */
.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 0;
    border-top: 1px solid #e8edf2;
    clear: both;
}

.footer-bottom .row {
    align-items: center;
    margin: 0;
}

.footer-bottom .row>div {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6f8ba4;
    line-height: 1.6;
}

.footer-bottom-links {
    text-align: right;
    padding: 0;
}

.footer-bottom-links a {
    color: #6f8ba4;
    font-size: 14px;
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #0078ff;
}

/* Simple Footer (for non-treatment pages) */
.footer-area ul {
    text-align: right;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-area>.container>.row>.col-lg-6:last-child ul li {
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-area>.container>.row>.col-lg-6:last-child ul li::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    background: #6f8ba4;
    width: 2px;
    height: 14px;
}

.footer-area>.container>.row>.col-lg-6:last-child ul li:first-child::before {
    display: none;
}

.go-top,
.back-to-top {
    position: fixed;
    cursor: pointer;
    bottom: 100px;
    right: 20px;
    font-size: 25px;
    color: #fff;
    background-color: #000;
    z-index: 1;
    display: none;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 39px;
    border-radius: 50%;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.go-top:hover,
.back-to-top:hover {
    color: #fff;
    background: #007aff;
}

textarea.form-control {
    min-height: 125px;
}

/* About Us Page Styles */
.page-title-area {
    background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    margin-top: 130px;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-title-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-title-content ul li {
    display: inline-block;
    margin: 0 5px;
}

.page-title-content ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.page-title-content ul li:last-child {
    opacity: 0.8;
}

.about-hero-area {
    padding: 100px 0;
}

.about-hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.about-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.about-features {
    margin-top: 40px;
}

.single-feature {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.single-feature:hover {
    transform: translateY(-5px);
}

.single-feature i {
    font-size: 48px;
    color: #007aff;
    margin-bottom: 20px;
}

.single-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.single-feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.our-story-area {
    padding: 100px 0;
}

.story-timeline {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.story-timeline:hover {
    transform: translateY(-10px);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #007aff, #00c6ff);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.story-timeline h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.story-timeline p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.our-values-area {
    padding: 100px 0;
}

.our-values-area .row:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
}

.our-values-area .row:not(:first-child)>[class*="col-"] {
    display: flex;
}

.our-values-area .row:first-child {
    display: block;
}

.single-value {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.single-value:hover {
    transform: translateY(-10px);
}

.single-value i {
    font-size: 60px;
    color: #007aff;
    margin-bottom: 25px;
}

.single-value h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.single-value p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

.about-hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Location Page Styles */
.location-hero-area {
    padding: 100px 0;
}

.location-hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.location-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.location-features {
    margin-top: 40px;
}

.location-feature {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.location-feature:hover {
    transform: translateY(-5px);
}

.location-feature i {
    font-size: 48px;
    color: #007aff;
    margin-bottom: 20px;
}

.location-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.location-feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.map-area {
    padding: 100px 0;
}

.map-area .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.map-area .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.map-area .row>[class*="col-"]>.map-container,
.map-area .row>[class*="col-"]>.location-info {
    width: 100%;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

.location-info {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.location-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.address-details,
.contact-details,
.opening-hours {
    margin-bottom: 30px;
}

.address-details p,
.contact-details p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.opening-hours ul {
    list-style: none;
    padding: 0;
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.directions-area {
    padding: 100px 0;
}

.directions-area .row {
    display: flex;
    flex-wrap: wrap;
}

.directions-area .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.directions-area .row>[class*="col-"]>.direction-method {
    width: 100%;
}

.direction-method {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.direction-method:hover {
    transform: translateY(-10px);
}

.direction-method i {
    font-size: 60px;
    color: #007aff;
    margin-bottom: 25px;
}

.direction-method h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.direction-method p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.direction-method ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.direction-method ul li {
    padding: 5px 0;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.direction-method ul li:before {
    content: "•";
    color: #007aff;
    position: absolute;
    left: 0;
}

.facilities-area {
    padding: 100px 0;
}

.facilities-area .row {
    display: flex;
    flex-wrap: wrap;
}

.facilities-area .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.facilities-area .row>[class*="col-"]>.facility-item {
    width: 100%;
}

.facility-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.facility-item:hover {
    transform: translateY(-10px);
}

.facility-item i {
    font-size: 60px;
    color: #007aff;
    margin-bottom: 25px;
}

.facility-item h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.facility-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Contact Page Styles */
.contact-hero-area {
    padding: 100px 0;
}

.contact-hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.contact-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.contact-features {
    margin-top: 40px;
}

.contact-feature {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-feature:hover {
    transform: translateY(-5px);
}

.contact-feature i {
    font-size: 48px;
    color: #eb621b;
    margin-bottom: 20px;
}

.contact-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-info-area {
    padding: 100px 0;
}

.contact-info-area .row:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-area .row:not(:first-child)>[class*="col-"] {
    display: flex;
}

.contact-info-area .row:first-child {
    display: block;
}

.contact-info-box {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-10px);
}

.contact-info-box i {
    font-size: 60px;
    color: #eb621b;
    margin-bottom: 25px;
}

.contact-info-box h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.contact-info-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-info-box .btn {
    margin-top: auto;
}

.contact-form-area {
    padding: 100px 0;
}

.contact-form-section {
    background: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007aff;
    box-shadow: 0 0 0 0.2rem rgba(0, 122, 255, 0.25);
}

.contact-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.emergency-info {
    text-align: center;
}

.emergency-number {
    font-size: 36px;
    font-weight: 700;
    color: #dc3545;
    margin: 15px 0;
}

.out-of-hours-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.social-links ul {
    list-style: none;
    padding: 0;
}

.social-links ul li {
    margin-bottom: 10px;
}

.social-links ul li a {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links ul li a:hover {
    color: #007aff;
}

.social-links ul li a i {
    margin-right: 10px;
    font-size: 18px;
}

.faq-area {
    padding: 100px 0;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button {
    background: #fff;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #007aff;
    color: #fff;
}

.faq-accordion .accordion-body {
    padding: 25px;
    background: #f8f9fa;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .page-title-content h2 {
        font-size: 32px;
    }

    .about-hero-content h2,
    .location-hero-content h2,
    .contact-hero-content h2 {
        font-size: 28px;
    }

    .single-feature,
    .story-timeline,
    .single-value,
    .location-feature,
    .contact-feature,
    .direction-method,
    .facility-item,
    .contact-info-box {
        margin-bottom: 20px;
    }

    .contact-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }
}

/* Treatments Dropdown Hover Effect */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-radius: 12px;
    padding: 15px 0;
    margin-top: 8px;
    min-width: 280px;
    background: #fff;
    border: 1px solid #e9ecef;
}

.navbar-nav .dropdown-item {
    padding: 15px 25px;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
    text-decoration: none;
    display: block;
    position: relative;
}

.navbar-nav .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-nav .dropdown-item:hover {
    background-color: transparent;
    color: #007bff;
    padding-left: 25px;
    text-decoration: none;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0;
}

.navbar-nav .dropdown-toggle:hover::after {
    border-top-color: #007bff;
}

/* Logo Consistency - ULTRA AGGRESSIVE - Enforce across all pages */
img[src*="logo"],
img[src*="Logo"],
img[alt*="Shenfield"],
.navbar-brand img,
.navbar .navbar-brand img,
.navbar-two .navbar-brand img,
.navbar-light .navbar-brand img,
nav img,
.navbar img[src*="logo"],
.navbar img[src*="Logo"],
a.navbar-brand img {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    width: auto !important;
    min-width: auto !important;
    max-width: 250px !important;
    display: block !important;
    object-fit: contain !important;
}

/* Better navbar brand container sizing */
.navbar-brand {
    padding: 8px 15px !important;
    display: flex !important;
    align-items: center !important;
}

/* Navbar Phone Number */
.navbar-phone {
    display: block;
    text-align: center;
    margin-top: 8px;
    text-decoration: none;
    font-weight: 700;
    color: #eb621b;
    transition: color 0.3s ease;
}

.navbar-phone:hover {
    color: #d4551a;
    text-decoration: none;
}

.navbar-phone .area-code {
    font-size: 18px;
    font-weight: 700;
    color: inherit;
}

.navbar-phone .main-number {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: inherit;
}

@media (max-width: 991px) {
    .navbar-phone {
        margin-top: 12px;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .navbar-phone .area-code {
        font-size: 16px;
        color: #6f8ba4;
    }

    .navbar-phone .main-number {
        font-size: 16px;
        color: #6f8ba4;
        font-weight: 600;
    }
}

.mobile-visible-phone strong {
    color: #00c6ff !important;
    margin-left: 5px;
}

/* Footer logo consistency */
.footer-logo img,
.footer-content img,
footer img[src*="logo"],
footer img[src*="Logo"] {
    height: 55px !important;
    min-height: 55px !important;
    max-height: 55px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

/* Responsive logo sizing */
@media (max-width: 991px) {

    img[src*="logo"],
    img[src*="Logo"],
    img[alt*="Shenfield"],
    .navbar-brand img,
    .navbar .navbar-brand img,
    .navbar-two .navbar-brand img,
    .navbar-light .navbar-brand img,
    nav img,
    .navbar img[src*="logo"],
    .navbar img[src*="Logo"] {
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
    }
}

@media (max-width: 767px) {

    img[src*="logo"],
    img[src*="Logo"],
    img[alt*="Shenfield"],
    .navbar-brand img,
    .navbar .navbar-brand img,
    .navbar-two .navbar-brand img,
    .navbar-light .navbar-brand img,
    nav img,
    .navbar img[src*="logo"],
    .navbar img[src*="Logo"] {
        height: 45px !important;
        min-height: 45px !important;
        max-height: 45px !important;
    }

    .footer-logo img,
    .footer-content img,
    footer img[src*="logo"],
    footer img[src*="Logo"] {
        height: 45px !important;
        min-height: 45px !important;
        max-height: 45px !important;
        margin: 0 auto;
    }

    .navbar,
    .navbar.navbar-two {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {

    img[src*="logo"],
    img[src*="Logo"],
    img[alt*="Shenfield"],
    .navbar-brand img,
    .navbar .navbar-brand img,
    .navbar-two .navbar-brand img,
    .navbar-light .navbar-brand img,
    nav img,
    .navbar img[src*="logo"],
    .navbar img[src*="Logo"] {
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
    }
}

/* Enhanced Dropdown Menu Styles */
.dropdown-menu-enhanced {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px !important;
    padding: 20px 0 !important;
    margin-top: 15px !important;
    min-width: 600px !important;
    max-width: 700px !important;
    background: #fff !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: dropdownFadeIn 0.3s ease forwards;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
}

.dropdown-menu-enhanced>li {
    width: 100% !important;
    display: block !important;
}

.dropdown-menu-enhanced>li:first-child {
    grid-column: 1 / -1;
    width: 100% !important;
}

.dropdown-menu-enhanced>li.dropdown-divider,
.dropdown-menu-enhanced hr.dropdown-divider {
    grid-column: 1 / -1;
    width: 100%;
    margin: 10px 20px !important;
}

/* Responsive adjustments for dropdown */
@media (max-width: 768px) {
    .dropdown-menu-enhanced {
        min-width: 280px !important;
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
    }
}

.dropdown-menu-enhanced.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

.dropdown-menu-enhanced .dropdown-item {
    padding: 12px 25px !important;
    font-size: 14px !important;
    color: #3b566e !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    position: relative;
    border-left: 3px solid transparent;
    width: 100% !important;
    white-space: nowrap !important;
}

.dropdown-menu-enhanced .dropdown-item i {
    margin-right: 12px;
    font-size: 18px;
    color: #eb621b;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-menu-enhanced .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(0, 120, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%) !important;
    color: #0078ff !important;
    border-left-color: #0078ff;
    padding-left: 30px;
}

.dropdown-menu-enhanced .dropdown-item:hover i {
    color: #eb621b;
    transform: scale(1.2);
}

.dropdown-menu-enhanced .dropdown-divider {
    margin: 10px 20px !important;
    border-color: #e8eef5 !important;
}

.dropdown-menu-enhanced .dropdown-item:first-child {
    font-weight: 600;
    color: #0078ff !important;
}

.dropdown-menu-enhanced .dropdown-item:first-child:hover {
    background: linear-gradient(90deg, rgba(0, 120, 255, 0.1) 0%, rgba(0, 198, 255, 0.1) 100%) !important;
}

/* Dropdown toggle arrow animation */
.nav-item.dropdown .dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.nav-item.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Smooth dropdown close animation */
.dropdown-menu-enhanced:not(.show) {
    animation: dropdownFadeOut 0.25s ease forwards;
}

@keyframes dropdownFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
}

/* Stagger animation for dropdown items */
.dropdown-menu-enhanced .dropdown-item {
    opacity: 0;
}

.dropdown-menu-enhanced.show .dropdown-item {
    animation: dropdownItemFadeIn 0.3s ease forwards;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(1) {
    animation-delay: 0.05s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(2) {
    animation-delay: 0.1s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(3) {
    animation-delay: 0.15s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(4) {
    animation-delay: 0.2s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(5) {
    animation-delay: 0.25s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(6) {
    animation-delay: 0.3s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(7) {
    animation-delay: 0.35s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(8) {
    animation-delay: 0.4s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(9) {
    animation-delay: 0.45s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(10) {
    animation-delay: 0.5s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(11) {
    animation-delay: 0.55s;
}

.dropdown-menu-enhanced.show .dropdown-item:nth-of-type(12) {
    animation-delay: 0.6s;
}

@keyframes dropdownItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom fix for Why Choose Us images size */
.about-image .image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Custom 5 column grid for pricing */
@media (min-width: 992px) {
    .col-lg-custom-5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Announcement Bar Styles */
.announcement-bar {
    background: linear-gradient(135deg, #d4551a 0%, #eb621b 100%);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.announcement-bar-track {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
}

.announcement-bar-content {
    display: flex;
    align-items: center;
    padding-right: 80px;
}

.announcement-bar-content span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.announcement-bar-content span i {
    color: #fff !important;
    margin-right: 8px;
    font-size: 16px;
}

.announcement-bar-content .divider {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 30px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.announcement-bar:hover .announcement-bar-track {
    animation-play-state: paused;
}

/* Doctor Availability Tag */
.doctor-image-wrapper {
    position: relative;
    display: inline-block;
    /* Ensures wrapper fits image */
}

.doctor-availability-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #d4551a 0%, #eb621b 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-top-left-radius: 8px;
    /* Rounded corner only on inner side */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .announcement-bar {
        padding: 8px 0;
    }

    .announcement-bar-content span {
        font-size: 13px;
    }

    .announcement-bar-content .divider {
        margin: 0 20px;
    }

    .announcement-bar-track {
        animation-duration: 20s;
    }

    /* Adjust navbar position for smaller announcement bar on mobile */
    .navbar,
    .navbar.navbar-two,
    .navbar-light.is-sticky {
        top: 36px;
    }
}

/* Mobile visible phone fix */
@media (max-width: 767px) {
    .mobile-visible-phone {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #fff !important;
    }
}

/* Announcement Bar Phone Number Visibility */
.announcement-bar .mobile-visible-phone strong {
    color: #00008B !important;
    /* DarkBlue */
    -webkit-text-fill-color: #00008B !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 700 !important;
    opacity: 1 !important;
}