/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #ffffff;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: linear-gradient(90deg, #26298f, #26298f);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar i {
    margin-right: 6px;
}

/* ================= NAVBAR ================= */
.custom-navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    color: #1d4ed8 !important;
    font-weight: 600;
}

.navbar-brand img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}

.custom-navbar .navbar-toggler {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    padding: 8px 10px;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #1d4ed8 !important;
}

/* CTA */
.btn-cta {
    background: #ec1f25;
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    border: 2px solid #ec1f25;
    transition: 0.3s;
}

/* HOVER EFFECT (WHITE) */
.btn-cta:hover {
    background: #ffffff;
    color: #ec1f25;
    border: 2px solid #ec1f25;
}

/* ================= HERO ================= */
.hero-full {
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;

    background-image: url("../images/header-bg.jpg"); /* FIXED */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 50, 0.25); /* reduced from 0.5 ? 0.25 */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Button */
.btn-primary {
    background: #1d4ed8;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-primary:hover {
    background: #153eaa;
}

/* ================= ABOUT ================= */
.section {
    padding: 80px 0;
}

.sub {
    color: #26298f;
    margin-bottom: 15px;
}

.read-more {
    color: #d62828;
    font-weight: 500;
    text-decoration: none;
}


/* ================= DOCTORS ================= */

.doctor-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.doctor-card h4 {
    color: #26298f;
    font-weight: 700;
    margin-bottom: 10px;
}

.degree {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.doctor-card p {
    font-size: 15px;
}

.doctor-card ul {
    padding-left: 18px;
    margin-top: 10px;
}

.doctor-card ul li {
    margin-bottom: 6px;
    font-size: 14px;
}


/* ================= SERVICES ================= */

.section-title {
    font-weight: 700;
    font-size: 32px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #d62828;
    margin: 10px auto 20px;
    border-radius: 5px;
}

/* Service Box */
.service-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-box i {
    font-size: 40px;
    color: #1d4ed8;
    margin-bottom: 15px;
}

.service-box h6 {
    font-weight: 600;
    font-size: 15px;
}

/* Hover */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* ================= SERVICES DETAILED ================= */

.services-detailed {
    background: #f8f9fa;
}

/* Card */
.service-detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hover */
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Heading */
.service-detail-card h4 {
    color: #26298f;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subheading */
.service-detail-card h6 {
    margin-top: 15px;
    font-weight: 600;
    color: #ec1f25;
}

/* Text */
.service-detail-card p {
    font-size: 15px;
}

/* Highlight Text */
.highlight {
    margin-top: 10px;
    font-weight: 500;
    color: #333;
}

/* List */
.service-detail-card ul {
    padding-left: 18px;
    margin-top: 10px;
}

.service-detail-card ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* ================= APPOINTMENT LIGHT ================= */

.appointment-light {
    background: linear-gradient(180deg, #f4f6f9, #ffffff);
    padding: 100px 0;
}

/* Heading */
.appointment-light h2 {
    font-size: 36px;
    font-weight: 700;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: #ec1f25;
    margin: 10px auto 20px;
}

/* Text */
.appointment-text {
    max-width: 800px;
    margin: auto;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

/* Form Box */
.form-box {
    max-width: 820px;
    margin: auto;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
}

.appointment-form .form-label {
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    margin-bottom: 6px;
}

/* Inputs */
.form-control {
    margin-bottom: 15px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Focus */
.form-control:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

.appointment-note {
    font-size: 12.5px;
    color: #6b7280;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Checkbox */
.form-check-label {
    font-size: 13px;
    color: #555;
}

/* Appointment Button */
.btn-appointment {
    background: linear-gradient(90deg, #3b2ea3, #1d4ed8);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid #3b2ea3;
    transition: 0.3s;
}

/* HOVER ? WHITE */
.btn-appointment:hover {
    background: #ffffff;
    color: #3b2ea3;
    border: 2px solid #3b2ea3;
}

@media (max-width: 768px) {
    .appointment-light {
        padding: 70px 0;
    }
    .appointment-light h2 {
        font-size: 30px;
    }
    .form-box {
        padding: 18px;
        border-radius: 16px;
    }
    .btn-appointment {
        width: 100%;
    }

    .custom-navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar-brand img {
        height: 44px;
    }

    .top-bar {
        font-size: 12.5px;
    }
}

/* ================= FOOTER ================= */

.footer-main {
    background: #4b3f92;
    color: #fff;
    padding: 60px 0 0;
}

/* Headings */
.footer-main h5 {
    color: #e5692b;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.footer-main p {
    font-size: 14px;
    line-height: 1.7;
}

/* Icons */
.footer-main i {
    color: #e5692b;
}

/* Footer Links */
.footer-main a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-main a:hover {
    color: #fff;
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
    background: #3a2f78;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 14px;
}

/* Layout */
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Social Icons */
.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffb703;
    transform: translateY(-2px);
}

/* Designed By */
.footer-right span {
    color: #e5692b;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Advanced Service Box */
.service-box.advanced {
    padding: 25px 20px;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Icon */
.service-box.advanced i {
    font-size: 42px;
    color: #26298f;
    margin-bottom: 12px;
}

/* Title */
.service-box.advanced h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Description */
.service-box.advanced p {
    font-size: 13px;
    color: #666;
}

/* Hover Effect */
.service-box.advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}/* CSS Document */


/* Doctor Image */
.doctor-img-box img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Enhanced Card */
.doctor-card.enhanced {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.doctor-card.enhanced:hover {
    transform: translateY(-5px);
}

/* Name */
.doctor-card h3 {
    color: #26298f;
    font-weight: 700;
}

/* Degree */
.degree {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Expertise List */
.expertise-list {
    list-style: none;
    padding-left: 0;
}

.expertise-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.expertise-list i {
    color: #ec1f25;
    margin-right: 8px;
}

.service-box p {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* Conditions List */
.conditions-list ul {
    list-style: none;
    padding: 0;
}

.conditions-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.conditions-list i {
    color: #ec1f25;
    margin-right: 8px;
}