/* ================= GLOBAL SETTINGS & SPACING ================= */
:root {
    --primary-color: #0d4b79;
    --accent-color: #1977cc;
    --soft-bg: #f8fbff;
    --text-light: #657a8e;
    --font-heading: 'Playfair Display', serif; /* Agar aap use kar rahe hain */
}

.section {
    padding: 60px 0; /* Desktop gap kam kiya */
}

/* ================= ARCHITECTURE SECTION ================= */
.section-architecture {
    padding: 60px 0;
}

.section-label {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.section-heading {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-box {
    border-left: 4px solid var(--accent-color);
    background: var(--soft-bg);
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1rem;
    color: #34495e;
    border-radius: 0 8px 8px 0;
}

.image-wrapper-premium {
    position: relative;
    padding: 10px;
}

.image-wrapper-premium img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 0px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    z-index: 2;
}

/* ================= 8 PHASES GRID (Compact) ================= */
.bg-soft-blue {
    background-color: #f8fbff;
    padding: 60px 0;
}

.sub-title {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.phase-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.phase-number {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0,0,0,0.03); /* Bilkul transparent taki readability na bigde */
    line-height: 1;
}

.phase-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.phase-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.phase-line {
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 25px rgba(13, 75, 121, 0.08);
}

.phase-card:hover .phase-line {
    width: 60px;
}

/* ================= MEDICAL LIST ================= */
.medical-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.medical-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.list-icon {
    color: #2ecc71;
    font-size: 1.1rem;
}

.medical-list strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.medical-list span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ================= QUOTE SECTION CLARITY FIX ================= */
/* ================= QUOTE SECTION PREMIUM REDESIGN ================= */
.quote-section {
    background: #0d4b79; /* Aapka deep blue color */
    padding: 60px 0;
    text-align: center;
    color: #ffffff; /* Default pure white */
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Quote Icon style */
.quote-wrapper::before {
    content: "\F633"; /* Bootstrap icons quote-up */
    font-family: "bootstrap-icons";
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    display: block;
    margin-bottom: 10px;
}

.quote-text {
    /* Font family change nahi ki gayi hai */
    font-size: 1.8rem;
    line-height: 1.4;
    color: #ffffff !important; /* Pure White visibility ke liye */
    margin-bottom: 30px;
    font-weight: 500;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.author-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Image ke charo taraf subtle ring */
}

.quote-author h5 {
    color: #ffffff !important;
    font-size: 1.15rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.quote-author span {
    color: rgba(255, 255, 255, 0.8) !important; /* Soft white for designation */
    font-size: 0.9rem;
    display: block;
}

.quote-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding-top: 15px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.35rem;
        padding: 0 10px;
    }
    .author-img {
        width: 55px;
        height: 55px;
    }
}