/* ==========================================================================
   Base & Resets - PREMIUM B2B MEDICAL THEME
   ========================================================================== */
:root {
    /* Colors matching the design */
    --primary: #123B33;
    /* Deep Teal */
    --primary-hover: #0E2E28;

    --bg-white: #FFFFFF;
    --bg-light: #F9F9F7;
    /* Main off-white background */
    --bg-beige: #F4EFEB;
    /* Card backgrounds */

    --text-dark: #1F2422;
    /* Primary text */
    --text-muted: #5E6765;
    /* Secondary text */
    --text-light: #9EA5A3;
    /* Labels */

    --border-color: #E2DFDA;
    --accent: #C5A059;
    /* Secondary Bronze/Gold */

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-primary {
    color: var(--primary);
}

.text-dark {
    color: var(--text-dark);
    font-weight: 500;
}

.text-muted {
    color: var(--text-muted);
}

.text-white {
    color: var(--bg-white) !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-beige {
    background-color: var(--bg-beige);
}

.bg-primary {
    background-color: var(--primary);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.w-full {
    width: 100%;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.label-muted {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.label-muted.small {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-primary.small {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: #b5924f;
    /* slightly darker gold */
    border-color: #b5924f;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-dark);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-outline-white:hover {
    border-color: var(--bg-white);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    background-color: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.custom-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary);
}

.custom-logo:hover {
    opacity: 0.9;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text-top {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--primary);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border: 1px solid rgba(18, 59, 51, 0.2);
    border-radius: 4px;
    background-color: rgba(18, 59, 51, 0.03);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 1px;
}

.logo-sub {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    border-color: var(--accent);
}

.nav-links a.active {
    color: var(--text-dark);
    border-color: var(--accent);
}

/* ==========================================================================
   Home Section
   ========================================================================== */
.section-home {
    background-color: var(--bg-white);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.section-title.text-center {
    text-align: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.headline {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ==========================================================================
   Stats Banner Section (Executive Performance Metrics)
   ========================================================================== */
.stats-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
}

.stats-bg-container {
    position: absolute;
    inset: 0;
}

.stats-bg-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 59, 51, 0.90);
    /* Deep teal overlay */
}

.stats-content {
    position: relative;
    z-index: 10;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .stats-row {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .stats-row {
        flex-wrap: nowrap;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: white;
}

.stat-icon {
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 200px;
    line-height: 1.4;
}

/* Value Proposition */
.value-prop-section {
    padding-top: 2rem;
    /* border removed */
}

.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.vp-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem 2.5rem;
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.vp-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(18, 59, 51, 0.08);
    border-color: transparent;
}

.vp-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: rgba(18, 59, 51, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.vp-item:hover .vp-icon {
    background-color: var(--primary);
    color: white;
}

.vp-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.vp-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* City Banner */
.city-banner {
    background: linear-gradient(rgba(18, 59, 51, 0.85), rgba(18, 59, 51, 0.85)), url('assets/hero.png') center/cover;
    border-radius: var(--radius-lg);
    padding: 3rem 4rem;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.city-banner .banner-title {
    font-size: 2.25rem;
    color: var(--bg-white);
    line-height: 1.2;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.25rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    padding: 5rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.about-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.leader-name {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.leader-title {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.about-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-images .img-main {
    width: 85%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.profile-card {
    position: absolute;
    bottom: -3rem;
    left: -2rem;
    width: 75%;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-pic {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(18, 59, 51, 0.2);
}

.quote-box {
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    position: absolute;
    top: -15px;
    left: -5px;
    opacity: 0.2;
    font-family: serif;
}

.quote-box p {
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: rgba(18, 59, 51, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.section-services {
    padding: 5rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.services-header-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.services-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 90%;
}

.services-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-box {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--bg-white);
    position: relative;
}

.service-num {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    display: flex;
    justify-content: flex-end;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.table-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.table-container {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    background-color: var(--bg-white);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.data-table th {
    font-weight: 600;
    color: var(--bg-white);
    background-color: var(--primary);
}

.data-table th:first-child {
    border-top-left-radius: 4px;
}

.data-table th:last-child {
    border-top-right-radius: 4px;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table td {
    color: var(--text-muted);
}

.data-table td svg {
    margin-right: 0.5rem;
    vertical-align: middle;
    color: var(--text-light);
}

.smarter-way {
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(rgba(18, 59, 51, 0.9), rgba(18, 59, 51, 0.9)), url('assets/clinical.png');
    background-size: cover;
    background-position: center;
}

.smarter-way h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.25rem;
}

/* ==========================================================================
   Partner Section
   ========================================================================== */
.section-partner {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}

.partner-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.partner-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.partner-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.assessment-box {
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.box-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.numbered-list {
    list-style: none;
}

.numbered-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.num-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-box {
    padding: 3rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-toggle-wrapper {
    display: flex;
    gap: 0.5rem;
    background: transparent;
}

.form-toggle-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-toggle-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ==========================================================================
   Success Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.modal-icon svg {
    width: 30px;
    height: 30px;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 2rem 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .nav-links a {
    color: var(--bg-white);
    opacity: 0.8;
}

.footer .nav-links a:hover {
    opacity: 1;
}

/* ==========================================================================
   Banner Carousel (Annai Packers Reference)
   ========================================================================== */
.banner-carousel {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-bg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 800px;
    color: white;
}

.banner-title {
    font-size: 3.5rem;
    color: var(--bg-white);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 6px 6px 14px rgba(0, 0, 0, 0.35);
}

.banner-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.banner-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.banner-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot:hover {
    background-color: white;
}

.banner-dot.active {
    background-color: var(--primary);
    transform: scale(1.25);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 2.75rem;
    }

    .hero-layout,
    .about-top-grid,
    .services-header-layout,
    .table-layout,
    .partner-header,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metrics-grid,
    .vp-grid,
    .features-grid,
    .services-cards {
        grid-template-columns: 1fr 1fr;
    }

    .about-images {
        justify-content: center;
    }

    .profile-card {
        width: 80%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.25rem;
    }

    .banner-carousel {
        height: 60vh;
    }

    .nav-links {
        display: none;
    }

    .metrics-grid,
    .vp-grid,
    .features-grid,
    .services-cards {
        grid-template-columns: 1fr;
    }

    .headline {
        font-size: 2.5rem;
    }

    .city-banner {
        padding: 2rem;
        text-align: center;
    }

    .banner-title {
        justify-content: center;
        flex-direction: column;
    }

    .table-container {
        overflow-x: auto;
    }
}

/* ==========================================================================
   Footer (Annai Layout Adaptation)
   ========================================================================== */
.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
        gap: 2rem;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    display: inline-flex;
}

.social-icons a:hover {
    color: var(--accent);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-list li a:hover {
    color: var(--accent);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
    background-color: var(--accent);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #dcb66f;
    transform: translateY(-3px);
}

/* ==========================================================================
   Breadcrumb Header (Internal Pages)
   ========================================================================== */
.breadcrumb-section {
    background-color: var(--primary);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.breadcrumb-nav {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.breadcrumb-nav a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* ==========================================================================
   Internal Pages (SpringsIndia Style Overhaul)
   ========================================================================== */

.internal-page {
    font-family: 'Poppins', sans-serif;
    color: #4a5568;
}

.internal-page h1,
.internal-page h2,
.internal-page h3,
.internal-page h4,
.internal-page h5,
.internal-page h6,
.internal-page .section-title {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
}

/* Redesign Breadcrumb/Hero for Internal Pages */
.internal-page .breadcrumb-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2b25 100%);
    padding: 6rem 0;
    text-align: center;
}

.internal-page .breadcrumb-section h1,
.internal-page .breadcrumb-section h2,
.internal-page .breadcrumb-title,
.internal-page .breadcrumb-section .section-title {
    color: #ffffff !important;
}

/* Light background for the main content sections */
.internal-page .section-about,
.internal-page .section-services,
.internal-page .section-partner {
    background-color: #f8f9fa !important;
}

/* Global internal card redesign (SpringsIndia Style) */
.internal-page .feature-card,
.internal-page .service-box,
.internal-page .assessment-box,
.internal-page .contact-form-wrapper {
    background-color: #ffffff;
    border: none !important;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.internal-page .feature-card:hover,
.internal-page .service-box:hover,
.internal-page .assessment-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

/* Center and round the icons */
.internal-page .icon-circle,
.internal-page .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50% !important;
    background-color: rgba(18, 59, 51, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto !important;
    transition: all 0.3s ease;
}

.internal-page .feature-card:hover .icon-circle,
.internal-page .service-box:hover .service-icon {
    background-color: var(--primary);
    color: white;
}

/* Adjust card typography */
.internal-page .feature-card h4,
.internal-page .service-box h4,
.internal-page .assessment-box h3 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
}

.internal-page .feature-card p,
.internal-page .service-box p,
.internal-page .assessment-box p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service box numbers */
.internal-page .service-num {
    display: none;
}

/* Form */
.internal-page .form-control {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.internal-page .form-control:focus {
    border-color: var(--primary);
    background-color: #fff;
}

/* Additional SpringsIndia Theme Integration for Homepage Cards & Hover Fixes */

/* Make sure SVGs change color on hover properly */
.internal-page .feature-card:hover .icon-circle svg,
.internal-page .service-box:hover .service-icon svg,
.internal-page .assessment-box:hover .icon-circle svg,
.internal-page .vp-item:hover .vp-icon svg {
    stroke: #ffffff !important;
}

/* Apply SpringsIndia Theme to Homepage Value Proposition Cards */
.internal-page .vp-item {
    background-color: #ffffff;
    border: none !important;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.internal-page .vp-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

.internal-page .vp-icon {
    width: 72px;
    height: 72px;
    border-radius: 50% !important;
    background-color: rgba(18, 59, 51, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto !important;
    transition: all 0.3s ease;
}

.internal-page .vp-item:hover .vp-icon {
    background-color: var(--primary);
    color: white;
}

.internal-page .vp-text h4 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
}

.internal-page .vp-text p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Modern Comparison Grid */
.modern-comparison-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 3rem;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid #edf2f7;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-header {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2d3748;
}

.compare-cell {
    padding: 1.75rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.compare-metric {
    font-weight: 600;
    color: #2d3748;
    gap: 1rem;
}

.compare-standard {
    color: #718096;
}

.compare-ipf {
    background-color: rgba(18, 59, 51, 0.04);
    color: var(--primary);
    font-weight: 600;
    border-left: 1px solid rgba(18, 59, 51, 0.05);
}

.compare-header .compare-ipf {
    background-color: var(--primary);
    color: white;
    border: none;
}

/* ==========================================================================
   Mobile Sidebar Drawer Navigation
   ========================================================================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.close-drawer-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #2d3748;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.drawer-links a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.drawer-links a:hover {
    color: var(--primary);
}

.drawer-links a.btn-primary {
    color: white !important;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Modern Comparison Table (Desktop)
   ========================================================================== */
.modern-comparison-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}
.compare-row:last-child {
    border-bottom: none;
}
.compare-header {
    background-color: rgba(18, 59, 51, 0.03);
    font-weight: 700;
    color: var(--primary);
}
.compare-cell {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-color);
    font-size: 1rem;
    color: var(--text-dark);
}
.compare-cell:last-child {
    border-right: none;
}
.compare-metric {
    font-weight: 600;
    color: var(--primary);
    gap: 0.75rem;
}
.compare-standard {
    color: var(--text-muted);
}
.compare-ipf {
    color: var(--primary);
    font-weight: 600;
    background-color: rgba(197, 160, 89, 0.05);
}
.compare-header .compare-ipf {
    background-color: var(--primary);
    color: var(--bg-white);
}

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {

    /* Mobile Comparison Table */
    .compare-row {
        grid-template-columns: 1fr !important;
    }

    .compare-header {
        display: none !important;
    }

    .compare-metric {
        background-color: #f8f9fa;
        padding: 1rem 1.5rem;
        border-top: 4px solid #edf2f7;
    }

    .compare-row:first-child .compare-metric {
        border-top: none;
    }

    .compare-cell {
        padding: 1rem 1.5rem;
    }

    .compare-standard::before {
        content: "Standard Department";
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        color: #a0aec0;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .compare-ipf::before {
        content: "IPF Managed";
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .compare-ipf {
        border-left: none;
        border-top: 1px solid rgba(18, 59, 51, 0.05);
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .form-toggle-wrapper {
        flex-direction: column;
    }
}