/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: linear-gradient(90deg, #2A2D8F, #2A2D8F);
    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: #2A2D8F !important;
    font-weight: 600;
}

.navbar-brand img{
	height:60px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
}

.nav-item a {
	margin-left:20px;
}

.nav-link:hover {
    color: #2A2D8F !important;
}

/* CTA */
.btn-cta {
    background: #d62828;
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    border: 2px solid #d62828;
    transition: 0.3s;
}

/* HOVER EFFECT (WHITE) */
.btn-cta:hover {
    background: #ffffff;
    color: #d62828;
    border: 2px solid #d62828;
}

/* ================= 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 {
    background: linear-gradient(
        to right,
        rgba(13,110,253,0.2) 30%,
        rgba(255,255,255,0.1) 60%,
        rgba(255,255,255,0) 85%
    );
}

/* 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: #2A2D8F;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-primary:hover {
    background: #153eaa;
}

/* ================= ABOUT ================= */
.section {
    padding: 80px 0;
}

.sub {
    color: #2A2D8F;
    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: #2A2D8F;
    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: #2A2D8F;
    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: #2A2D8F;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subheading */
.service-detail-card h6 {
    margin-top: 15px;
    font-weight: 600;
    color: #d62828;
}

/* 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: #f4f6f9; /* light grey */
    padding: 100px 0;
}

/* Heading */
.appointment-light h2 {
    font-size: 36px;
    font-weight: 700;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: #d62828;
    margin: 10px auto 20px;
}

/* Text */
.appointment-text {
    max-width: 800px;
    margin: auto;
    font-size: 15px;
    line-height: 1.7;
}

/* Form Box */
.form-box {
    max-width: 700px;
    margin: auto;
}

/* Inputs */
.form-control {
    margin-bottom: 15px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Focus */
.form-control:focus {
    border-color: #2A2D8F;
    box-shadow: none;
}

/* Checkbox */
.form-check-label {
    font-size: 13px;
    color: #555;
}

/* Appointment Button */
.btn-appointment {
    background: linear-gradient(90deg, #3b2ea3, #2A2D8F);
    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;
}

/* ================= FOOTER ================= */

.footer-main {
    background: #4b3f92;
    color: #fff;
    padding: 60px 0 0;
}

/* Headings */
.footer-main h5 {
    color: #ffb703;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.footer-main p {
    font-size: 14px;
    line-height: 1.7;
}

/* Icons */
.footer-main i {
    color: #ffb703;
}

/* Footer Links */
.footer-main a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-main a:hover {
    color: #ffb703;
}

/* ================= 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: #ffb703;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}