@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #00519f;
    --dark-blue: #12213a;
    --accent-green: #2fc2ea;
    --text-white: #ffffff;
    --text-gray: #b0b8c4;
    --text-dark: #333333;
    --nav-text: #4a5568;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
    color: var(--text-dark);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Bar */
.top-bar {
    background: white;
    color: var(--dark-blue);
    padding: 8px 0;
    font-size: 13px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.btn-payment {
    background: var(--accent-green);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    font-size: 20px;
    background-color: #00012b;
    cursor: pointer;
}

/* Nav Bar */
.main-nav {
    background: var(--dark-blue);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 160px;
    transform: scaleY(2.6);
    margin-top: 15px;

}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-green);
}

.nav-links i {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

/* Main Nav Layout Adjustments */
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1400px;
}

.logo img {
    height: 50px;
    /* Reduced slightly to fit better */
}

/* Nav Right & Talk Button */
.nav-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-talk {
    background: var(--primary-blue);
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-talk:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 193, 119, 0.3);
}

/* Dropdown & Mega Menu Redesign */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Small Mega Menu (1 column) */
.mega-menu.sm-menu {
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Arrow for Menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.mega-grid.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mega-title {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.mega-title i {
    font-size: 12px;
    color: var(--accent-green);
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mega-list li a:hover {
    background: #f8fafc;
    transform: translateX(4px);
}

.m-icon {
    width: 36px;
    height: 36px;
    background: #f0fdf4;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.mega-list li a:hover .m-icon {
    background: var(--accent-green);
    color: white;
}

.m-text strong {
    font-size: 14px;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
}

.m-text span {
    font-size: 12px;
    color: #64748b;
    display: block;
    line-height: 1.3;
}

/* Nav Links Base */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-links i {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown:hover>a i,
.mega-dropdown:hover>a i {
    transform: rotate(180deg);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-green);
}

/* Featured Section in Mega Menu */
.mega-featured {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
}

.featured-card span {
    font-size: 11px;
    background: var(--accent-green);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.featured-card h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin: 15px 0 10px;
    line-height: 1.3;
}

.featured-card p {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 20px;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.featured-btn:hover {
    gap: 12px;
}

.search-icon {
    background: #2b4570;
    color: white;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(18, 33, 58, 0.8), rgba(18, 33, 58, 0.8)), url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.rating-pill {
    display: flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 40px;
    width: max-content;
    margin-bottom: 25px;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
}

.rating-text {
    margin-left: 15px;
    font-size: 14px;
}

.rating-text .stars {
    color: #f4b400;
    font-size: 13px;
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.desc {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: #1e293b;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.badge img {
    width: 24px;
    height: auto;
}

.badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.badge strong {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.badge .stars {
    color: #f59e0b;
    font-size: 11px;
    letter-spacing: -2px;
    margin: 2px 0;
}

.badge span {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.aapc,
.hipaa {
    flex-direction: row;
    align-items: center;
    min-width: auto;
}

.aapc strong,
.hipaa strong {
    font-size: 15px;
}

.hipaa i {
    color: var(--accent-green);
    font-size: 16px;
    background: rgba(0, 193, 119, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-blue);
    padding: 16px 28px;
    border-radius: 35px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    background: #eaf1ff;
}

/* Form Container */
.form-card {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.851);
    padding: 40px;
    border-radius: 10px;
    color: #1d1c1c;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #e2e8f0;
    padding: 10px 0;
    font-size: 1rem;
    outline: none;
    background: transparent;
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--accent-green);
}

.form-features {
    list-style: none;
    margin: -10px 0 25px 0;
}

.form-features li {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.form-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group textarea {
    height: 40px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #00a868;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.services-sectionn {
    padding: 80px 0;
    /* background: #f8f9fa; */
    text-align: center;
}

.section-header {
    /* max-width: 800px; */
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 40px;
    color: #4a5568;
    /* The screenshot shows simplified dark line icons. FontAwesome gray/slate works well. */
}

.service-card h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card h3 i {
    font-size: 14px;
    color: var(--dark-blue);
    transform: rotate(-45deg);
    /* Optional stylistic arrow angle */
    transition: var(--transition);
}

.service-card:hover h3 i {
    /* border: 1px solid var(--dark-blue); */
    transform: translateX(5px) rotate(-45deg);
}

.service-card:hover {
    border: 1px solid var(--dark-blue);
    /* transform: translateX(5px) ; */
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-dark {
    display: inline-block;
    background: var(--dark-blue);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.btn-dark:hover {
    background: #2a3b55;
    transform: translateY(-2px);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.sub-title {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 14px;
    padding-left: 3px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.mission-content h2 {
    font-size: 42px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

.lead-text {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 500;
}

.mission-details {
    margin-bottom: 30px;
}

.mission-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.mission-item i {
    color: var(--accent-green);
    font-size: 18px;
    margin-top: 5px;
    flex-shrink: 0;
}

.mission-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.closing-text {
    font-style: italic;
    color: var(--dark-blue);
    border-left: 4px solid var(--accent-green);
    padding-left: 20px;
    font-size: 15px;
}

/* Stats Card */
.stats-card {
    background: var(--dark-blue);
    color: white;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-green);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stat-item {
    text-align: center;
    padding: 20px 0;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* Line connecting steps (desktop only) */
@media (min-width: 1024px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step h4 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.process-step p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


/* Responsive */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Page Headers (Internal) */
/* Page Hero Refinements */
.page-hero {
    background: linear-gradient(rgba(18, 33, 58, 0.9), rgba(18, 33, 58, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 0 190px;
    text-align: left;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.page-hero .container {
    position: relative;
    z-index: 10;
}

.page-hero h1 {
    font-size: 64px;
    margin-bottom: 25px;
    max-width: 800px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0;
    line-height: 1.6;
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    padding: 16px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-white:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background: #f8fafc;
    padding: 40px;
    border-radius: 7px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.why-item:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 193, 119, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.why-item h4 {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
}

.why-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
    position: relative;
}

/* Medical Billing Specific Clinical UI */
.med-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.med-card {
    background: white;
    padding: 50px 40px;
    border-radius: 7px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.med-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(18, 51, 102, 0.1);
    border-color: var(--primary-blue);
}

.med-card .icon-box i {
    color: var(--primary-blue);
    width: 70px;
    height: 70px;
    background: #f0fdf4;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.med-card:hover .icon-box i {
    background: var(--primary-blue);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.med-card h4 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.med-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.med-card .benefits-list {
    margin-top: auto;
    padding-left: 20px;
}

.med-card .benefits-list li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}

.med-card .benefits-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -25px;
    color: var(--accent-green);
}

/* Performance Why Section */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.stat-val {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Radial Section - Fixed & Polished */
.radial-section {
    padding: 120px 0;
    background: #f4faff;
    overflow: hidden;
}

.radial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.radial-visual {
    flex: 0 0 600px;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.79);
}

.radial-center {
    width: 160px;
    height: 160px;
    background: white;
    border: 10px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 15px 45px rgba(18, 51, 102, 0.15);
    text-align: center;
}

.radial-center img {
    height: 132px;
    border-radius: 50%;
    font-weight: 900;
    background-color: var(--primary-blue);
}

/* .radial-center .center-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    color: #475569;
    font-weight: 700;
} */

.outer-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
    z-index: 1;
}

.radial-item {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
}

.node {
    width: 65px;
    height: 65px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.radial-item:hover .node {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.label-box {
    background: #1e293b;
    /* Darker as per screenshot */
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Precise Positioning for 600x600 container */
.pos-1 {
    top: 9%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
}

.pos-2 {
    top: 17%;
    right: -3%;
}

.pos-3 {
    top: 50%;
    right: -17%;
    transform: translateY(-50%);
}

.pos-4 {
    bottom: 20%;
    right: -10%;
}

.pos-5 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
}

.pos-6 {
    bottom: 20%;
    left: -13%;
    flex-direction: row-reverse;
}

.pos-7 {
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    flex-direction: row-reverse;
}

.pos-8 {
    top: 17.9%;
    left: -15%;
    flex-direction: row-reverse;
}

/* Adjust label positions for top/bottom nodes */
.pos-1 .label-box {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: -60px;
    position: absolute;
    top: 0;
}

.pos-5 .label-box {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: -50px;
    position: absolute;
    bottom: 0;
}

.pos-7 .label-box {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0p;
    position: relative;
    left: 20px;
    transform: scaleX(0.89);
    bottom: 0;
}

.radial-content {
    flex: 1;
    max-width: 500px;
}

.radial-content h2 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.radial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 30px;
}

.check-list-modern {
    list-style: none;
    margin-bottom: 40px;
}

.check-list-modern li {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list-modern li i {
    color: var(--primary-blue);
    font-size: 22px;
}

@media (max-width: 1200px) {
    .radial-container {
        flex-direction: column;
        text-align: center;
        gap: 100px;
    }

    .check-list-modern li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .radial-visual {
        display: none;
        transform: scale(0.85);
        margin: 0 -50px;
    }
}

@media (max-width: 500px) {
    .radial-visual {
        transform: scale(0.6);
    }

    .label-box {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Service Boxed Styling */
.boxed-service {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.boxed-service:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.boxed-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.boxed-service.reverse .boxed-content {
    direction: rtl;
}

.boxed-service.reverse .boxed-text {
    direction: ltr;
}

.boxed-image {
    min-height: 450px;
    background-size: cover;
    background-position: center;
}

.boxed-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.boxed-text h3 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
}

.boxed-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-green);
}

.boxed-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.service-intro {
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto 60px;
}

.service-intro h2 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.service-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.service-intro h2::before {
    content: 'TRUSTED SOLUTIONS';
    display: block;
    font-size: 1.4rem;
    color: var(--accent-green);
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Cross Layout for Services */
.service-cross-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-cross-layout.reverse {
    direction: rtl;
}

.service-cross-layout.reverse>* {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-text h3 {
    color: var(--dark-blue);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-text p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.service-block {
    margin-bottom: 50px;
}

.service-block h3 {
    color: var(--dark-blue);
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-green);
    padding-left: 15px;
}

.service-block p {
    color: #555;
    line-height: 1.7;
}

/* Responsive Cross Layout */
@media (max-width: 900px) {

    .service-cross-layout,
    .service-cross-layout.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .service-image img {
        height: 300px;
    }
}

/* Footer (Existing styles continue...) */
.footer {
    background: var(--dark-blue);
    padding-top: 80px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 140px;
}

.footer-desc {
    color: #e0e0e0;
    line-height: 1.8;
    padding-right: 20px;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d8d8d8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.contact-list i {
    color: var(--dark-blue);
    margin-top: 4px;
}

.contact-list a {
    color: #e0e0e0;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    background:white;
    color: var(--dark-blue);
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom-inner {
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    opacity: 0.8;
}

.dmca-btn {
    background: #8BC34A;
    /* Similar green to screenshot */
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dmca-btn i {
    background: white;
    color: #8BC34A;
    padding: 2px;
    border-radius: 50%;
    font-size: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--dark-blue);
    opacity: 0.8;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(66, 66, 66, 0.838);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    opacity: 1;
    color: white;
}

.legal-links a {
    color: var(--dark-blue);
    text-decoration: none;
    opacity: 0.8;
}

.legal-links span {
    margin: 0 10px;
    opacity: 0.5;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {

    /* .nav-links,
    .search-icon {
        display: none;
    } */

    .mobile-toggle {
        display: block;
        color: white;
    }

    .top-bar .btn-payment {
        margin-right: 15px;
    }

    .contact-info {
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

/* =========================================
   SPECIALTIES PAGE DESIGN SYSTEM
   ========================================= */

/* Common Section Padding */
.specialty-section {
    padding: 100px 0;
    overflow: hidden;
}

.specialty-section.bg-light {
    background: #f8fafc;
}

.specialty-section.bg-white {
    background: #ffffff;
}

.section-title {
    color: var(--dark-blue);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    /* text-decoration: underline 3px var(--accent-green);
    text-underline-offset: 7px; */
}

.section-titlee {
    color: var(--dark-blue);
    font-size: 3rem;
    /* text-align: center; */
    margin: 20px 0;
    margin-bottom: 30px;
    font-weight: 800;
    /* text-decoration: underline 3px var(--accent-green);
    text-underline-offset: 7px; */
}

.section-titleee {
    color: var(--text-white);
    font-size: 3rem;
    /* text-align: center; */
    margin: 20px 0;
    margin-bottom: 30px;
    font-weight: 800;
    /* text-decoration: underline 3px var(--accent-green);
    text-underline-offset: 7px; */
}

.section-desc {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

/* 1. SPLIT LAYOUT (Image + Text) */
.spec-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spec-split.reverse {
    flex-direction: row-reverse;
}

.spec-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.spec-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spec-content {
    flex: 1;
}

.spec-list {
    list-style: none;
    margin-top: 30px;
}

.spec-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
}

.spec-list li strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.spec-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-blue);
    font-size: 20px;
}

/* 2. GRID LAYOUT (Icon Cards) */
.spec-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spec-grid-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.spec-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-green);
}

.spec-icon-lg {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

/* 3. CARD ROW LAYOUT (Horizontal Cards) */
.spec-card-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.spec-row-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.spec-row-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* 4. CLINICAL HEADER (For Section Titles) */
.clinical-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.clinical-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 900px) {

    .spec-split,
    .spec-split.reverse {
        flex-direction: column;
    }

    .spec-visual {
        width: 100%;
        min-height: 300px;
    }
}

/* =========================================
   HIPAA Compliance Page Styles
   ========================================= */

/* Hero Trust Pill */
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 193, 119, 0.2);
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 193, 119, 0.3);
    backdrop-filter: blur(5px);
}

.center-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.icon-box-lg {
    width: 70px;
    height: 70px;
    background: #f0fdf4;
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .icon-box-lg {
    background: var(--accent-green);
    color: white;
    transform: rotateY(180deg);
}

/* Technical Safeguards (Split Layout) */
.tech-safe-section {
    padding: 100px 0;
    background: var(--dark-blue);
    color: white;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-safe-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tech-safe-section p {
    color: #b0b8c4;
    line-height: 1.6;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 0px;
}

.check-list li i {
    color: var(--accent-green);
    background: rgba(255, 255, 255, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.check-list span {
    font-size: 14px;
    color: #94a3b8;
}

.image-content {
    position: relative;
}

.image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    color: var(--dark-blue);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.floating-badge i {
    color: var(--accent-green);
    font-size: 20px;
}

/* Administrative Safeguards Grid */
.admin-safe-section {
    padding: 100px 0;
    background: #f8fafc;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.comp-box {
    background: white;
    padding: 70px 40px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 12px;
    border-top: 4px solid var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.comp-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.comp-icon {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.comp-box h4 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.comp-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Roadmap / Timeline */
.roadmap-section {
    padding: 100px 0;
    background: white;
}

.timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 50px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 40px;
}

.time-dot {
    position: absolute;
    top: 0;
    right: -9px;
    width: 18px;
    height: 18px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #e2e8f0;
}

.timeline-item:nth-child(even) .time-dot {
    right: auto;
    left: -9px;
}

.time-content h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.time-content p {
    color: #64748b;
    font-size: 15px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item .time-dot {
        left: 11px !important;
        right: auto !important;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-blue);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #64748b;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-green);
}

.faq-question i {
    transition: transform 0.3s;
    color: #94a3b8;
}

/* Trust Strip */
.trust-strip {
    background: var(--primary-blue);
    padding: 30px 0;
    color: white;
}

.badges-flex {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    opacity: 0.9;
}

.trust-item i {
    color: var(--accent-green);
    font-size: 18px;
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .floating-badge {
        right: 0;
        bottom: -20px;
    }

    .badges-flex {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================
   Blog Section Styles
   ========================================= */

.blog-section {
    padding: 80px 0;
    /* background: #f8fafc; */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-green);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.meta-tags {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.meta-tags i {
    margin-right: 5px;
}

.blog-content h3 {
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 20px;
}

.blog-content h3 a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-content h3 a:hover {
    color: var(--accent-green);
}

.blog-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 12px;
    color: var(--accent-green);
}

/* Article Page Styles */
.article-section {
    padding: 60px 0 100px;
    background: #fff;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
}

.breadcrumb {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb i {
    font-size: 11px;
    color: #cbd5e1;
}

.article-title {
    font-size: 42px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    color: #64748b;
    font-size: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-blue);
}

.author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.article-featured-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
}

.article-body {
    color: #334155;
    font-size: 18px;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body .lead {
    font-size: 22px;
    color: var(--dark-blue);
    font-weight: 500;
    line-height: 1.6;
}

.article-body h2 {
    color: var(--dark-blue);
    font-size: 28px;
    margin: 40px 0 20px;
}

.article-body h3 {
    color: var(--dark-blue);
    font-size: 24px;
    margin: 30px 0 15px;
}

.article-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}

.sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.image-wrapper {
    position: sticky;
    top: 110px;
    height: fit-content;
}


/* =========================================
   Why Choose Us Page Styles
   ========================================= */

.why-choose .why-item h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin: 20px 0 15px;
    font-weight: 700;
}

.why-choose .why-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 18px;
}

.comparison-table td {
    color: #4a5568;
    font-size: 16px;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: #f0fdf4;
    border-bottom-color: #d1fae5;
    position: relative;
}

.comparison-table th.highlight {
    color: var(--accent-green);
    border-top: 4px solid var(--accent-green);
}

.comparison-table td.highlight strong {
    color: var(--accent-green);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}


.widget h4 {
    color: var(--dark-blue);
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 15px;
}

.recent-posts a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    display: block;
    transition: color 0.2s;
}

.recent-posts a:hover {
    color: var(--accent-green);
}

/* Responsive Blog */
@media (max-width: 900px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 32px;
    }
}

.legal-content {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 20px;
    color: #4a5568;
    background-color: rgb(252, 252, 255);
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.131);
}

.legal-content h2 {
    color: var(--dark-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
}

.legal-content h3 {
    color: var(--dark-blue);
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.last-updated {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 40px;
    display: block;
}



/* =========================================
   MODERN ASC SECTION DESIGN
   ========================================= */

.asc-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.asc-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #00d68f 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 193, 119, 0.3);
}

.asc-icon-badge i {
    font-size: 36px;
    color: white;
}

.asc-title {
    font-size: 2.8rem;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 20px;
}

.asc-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.asc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Image Card */
.asc-image-card {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 30px;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.overlay-badge i {
    color: var(--accent-green);
    font-size: 20px;
}

.overlay-badge span {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 14px;
}

/* Services Cards */
.asc-services {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: start;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 193, 119, 0.1);
    transform: translateX(5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00d68f 100%);
    transform: scale(1.1);
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.card-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .asc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .asc-title {
        font-size: 2.2rem;
    }

    .image-wrapper img {
        height: 350px;
    }

    .image-wrapper {
        position: sticky;
        /* top: 110px; */
        height: fit-content;
    }

}

@media (max-width: 600px) {
    .asc-title {
        font-size: 1.8rem;
    }

    .asc-icon-badge {
        width: 70px;
        height: 70px;
    }

    .asc-icon-badge i {
        font-size: 30px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px 20px;
    }

    .image-wrapper img {
        height: 280px;
    }
}

/* =========================================
   PATHOLOGY UNIQUE HORIZONTAL LAYOUT
   ========================================= */

.pathology-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.path-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(27, 51, 90, 0.3);
}

.path-icon-wrapper i {
    font-size: 40px;
    color: white;
}

.path-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 10px;
}

.path-text p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.pathology-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pathology-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 51, 90, 0.95) 0%, rgba(27, 51, 90, 0.7) 100%);
    padding: 40px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    text-align: center;
}

.stat-item i {
    font-size: 32px;
    color: var(--accent-green);
}

.stat-item span {
    font-size: 1rem;
    font-weight: 600;
}

.pathology-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.path-feature-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.path-feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(27, 51, 90, 0.15);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    margin-bottom: 15px;
}

.path-feature-card h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.path-feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 900px) {
    .pathology-header {
        flex-direction: column;
        text-align: center;
    }

    .pathology-features {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .pathology-banner img {
        height: 300px;
    }
}

/* =========================================
   WOUND CARE UNIQUE STACKED LAYOUT
   ========================================= */

.wound-title-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.wound-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #00d68f 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.wound-title-section h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.wound-title-section p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.wound-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.wound-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wound-block:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.wound-block.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.wound-block.reverse .wound-block-content {
    order: 2;
}

.wound-block.reverse .wound-block-image {
    order: 1;
}

.wound-block-content {
    display: flex;
    gap: 25px;
}

.wound-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wound-block:hover .wound-number {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00d68f 100%);
    transform: scale(1.1);
}

.wound-number i {
    font-size: 30px;
    color: white;
}

.wound-text h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.wound-text p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.wound-block-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wound-block-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.wound-block:hover .wound-block-image img {
    transform: scale(1.05);
}

@media (max-width: 900px) {

    .wound-block,
    .wound-block.reverse {
        grid-template-columns: 1fr;
    }

    .wound-block.reverse .wound-block-content,
    .wound-block.reverse .wound-block-image {
        order: unset;
    }

    .wound-title-section h2 {
        font-size: 2.2rem;
    }

    .wound-block {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .wound-block-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .wound-title-section h2 {
        font-size: 1.8rem;
    }

    .wound-block {
        padding: 25px 20px;
    }
}

/* 1. SPLIT LAYOUT (Image + Text) */
.spec-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spec-split.reverse {
    flex-direction: row-reverse;
}

.spec-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.spec-visual:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.spec-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spec-content {
    flex: 1;
}

.spec-list {
    list-style: none;
    margin-top: 30px;
}

.spec-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 40px;
    color: #555;
    line-height: 1.7;
}

.spec-list li strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.spec-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-green);
    font-size: 22px;
}

/* 2. GRID LAYOUT (Icon Cards) */
.spec-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spec-grid-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.spec-grid-item h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.spec-grid-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.spec-icon-lg {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.spec-grid-item:hover .spec-icon-lg {
    transform: scale(1.1);
    color: var(--primary-blue);
}

/* 3. CARD ROW LAYOUT (Horizontal Cards) */
.spec-card-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.spec-row-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spec-row-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.spec-row-item h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.spec-row-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.spec-row-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.spec-row-item:hover .spec-row-icon {
    background: var(--accent-green);
    color: white;
    transform: scale(1.1);
}

/* 4. CLINICAL HEADER (For Section Titles) */
.clinical-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.clinical-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    font-weight: 800;
}

.clinical-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 193, 119, 0.3);
    transition: all 0.3s ease;
}

.clinical-header:hover .clinical-icon {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .specialty-section {
        padding: 80px 0;
    }

    .spec-split,
    .spec-split.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .spec-visual {
        width: 100%;
        min-height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .clinical-header {
        flex-direction: column;
        text-align: center;
    }

    .clinical-header h2 {
        font-size: 1.8rem;
    }

    .spec-grid-container {
        grid-template-columns: 1fr;
    }

    .spec-row-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .specialty-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .clinical-header h2 {
        font-size: 1.6rem;
    }

    .clinical-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .spec-list li {
        padding-left: 35px;
    }

    .spec-list li::before {
        font-size: 18px;
    }

    .spec-grid-item {
        padding: 30px 25px;
    }

    .spec-row-item {
        padding: 25px 20px;
    }
}

/* Contact Page Styling */
.contact-page-section {
    padding: 80px 0;
    /* background: #f8fbff; */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--dark-blue);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-desc {
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-green);
}

.info-item h4 {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 16px;
    font-weight: 600;
}

.social-connect h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
    margin-bottom: 30px;
    color: var(--dark-blue);
    font-size: 24px;
}

.contact-form-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.contact-form-card input,
.contact-form-card textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px 15px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--accent-green);
    background: white;
}

.map-section {
    height: 450px;
    background: #eee;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        background: white;
        padding: 0;
        margin-left: -10px;
        width: 390px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    }

    .contact-page-section {
        padding: 80px 0;
        margin-left: -10px;

        /* background: #f8fbff; */
    }


}

/* Digital Marketing Page Styles */
.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.digital-hero {
    background: linear-gradient(rgba(18, 33, 58, 0.9), rgba(18, 33, 58, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.digital-overview {
    padding-top: 100px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-weight: 800;
    font-size: 3rem;
    padding: 20px 0;
}

.overview-text p {
    font-size: 1rem;
    padding: 10px 0;
    color: gray;
}

.highlight-text {
    color: var(--accent-green);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 193, 119, 0.2);
    z-index: -1;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 0px;
    font-weight: 500;
}

.check-list i {
    color: var(--accent-green);
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-card i {
    font-size: 24px;
    color: var(--accent-green);
    background: rgba(0, 193, 119, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 20px;
    color: var(--dark-blue);
}

.floating-card span {
    font-size: 12px;
    color: #666;
}

.digital-service-row {
    padding: 80px 0;
    background-color: #f7faff;
}

.service-row-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse .service-row-content {
    direction: rtl;
    /* simple way to reverse grid */
}

.reverse .service-text,
.reverse .service-visual {
    direction: ltr;
    /* reset content direction */
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(18, 33, 58, 0.2);
}

.service-text h3 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.social-box {
    aspect-ratio: 1;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--dark-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.social-box:hover {
    transform: translateY(-10px);
    background: var(--accent-green);
    color: white;
}

.service-visual img {
    width: 100%;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-visual:hover img {

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.419);
}

.digital-grid-services {
    padding: 100px 0;
}

.grid-services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Graphic Design Section */
.graphic-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.design-card {
    background: linear-gradient(135deg, #ffffff, #f4f7ff);
    /* border-radius: 20px; */
    padding: 35px 30px;
    text-align: center;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.design-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 0, 73, 0.12), transparent 60%);
    transform: rotate(25deg);
}

/* .design-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
} */

/* Icon */
.design-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #00012b, #290089);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 30px;
    margin-top: 30px;
}

/* Title */
.design-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #111827;
}

/* Text */
.design-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Button */
.design-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, #000260, #00012d);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.design-btn i {
    transition: transform 0.3s ease;
}

.design-btn:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.design-btn:hover i {
    transform: translateX(5px);
}


.digital-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.digital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.digital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-green);
    transition: 0.4s;
}

.digital-card:hover::before {
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header i {
    font-size: 28px;
    color: var(--accent-green);
}

.card-header h4 {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 700;
}

.digital-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.learn-link {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.learn-link:hover {
    gap: 15px;
    color: var(--accent-green);
}

@media (max-width: 900px) {

    .overview-grid,
    .service-row-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reverse .service-row-content {
        direction: ltr;
        /* disable reversal on mobile */
    }

    .overview-image {
        order: -1;
        /* Image first on mobile? optional */
    }
}

/* Social Orbit Section */
.social-orbit-section {
    padding: 100px 0;
    overflow: hidden;
}

.section-badge {
    background: rgba(27, 51, 90, 0.1);
    color: var(--dark-blue);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.social-features {
    list-style: none;
    margin-top: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
    /* background-color: #d1fae5; */
}

.social-features li {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-blue);
}

.social-features i {
    color: var(--accent-green);
}

.orbit-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-container {
    width: 300px;
    height: 300px;
    position: relative;
}

.central-bubble {
    width: 80px;
    height: 80px;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 15px rgba(27, 51, 90, 0.05), 0 0 0 30px rgba(27, 51, 90, 0.02);
    z-index: 10;
}

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: orbitFloat 6s ease-in-out infinite;
}

/* Positioning Orbit Items (Manual positions for simplicity) */
.item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    color: #E1306C;
}

/* Insta */
.item-2 {
    bottom: 20px;
    right: 20px;
    animation-delay: 1s;
    color: #1877F2;
}

/* FB */
.item-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 2s;
    color: #0077b5;
}

/* LinkedIn */
.item-4 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
    color: #1DA1F2;
}

/* Twitter */
.item-5 {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    animation-delay: 2.5s;
    color: #ff4757;
}

/* Heart */
.item-6 {
    top: 20px;
    right: 20px;
    opacity: 0.6;
    width: 30px;
    height: 30px;
    font-size: 14px;
    animation-delay: 3s;
}

/* Like small */

@keyframes orbitFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -15px);
    }
}

/* HR Timeline Section */
.hr-hero {
    background: linear-gradient(rgba(18, 33, 58, 0.9), rgba(18, 33, 58, 0.9)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.timeline-section {
    padding: 100px 0;
    position: relative;
    /* background: #f8f9fa; */
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    content: '';
    width: 4px;
    height: 100%;
    background: var(--dark-blue);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    width: 70%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.timeline-item.left {
    left: -70%;
    text-align: left;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-itemm {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.timeline-itemm.left {
    left: -50%;
    text-align: left;
}

.timeline-itemm.right {
    left: 50%;
    text-align: left;
}


.timeline-dot {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    top: 30px;
    right: -30px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    border: 4px solid #f8f9fa;
    box-shadow: 0 0 0 4px var(--dark-blue);
}

.timeline-item.right .timeline-dot {
    left: -30px;
    right: auto;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    color: var(--dark-blue);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Arrow */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Aligns with dot */
    right: -10px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.timeline-item.right .timeline-content::before {
    left: -10px;
    right: auto;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        /* Full width per item */
        padding-left: 80px;
        /* Space for line */
        padding-right: 0;
        text-align: left;
        /* Reset alignment */
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        /* Reset positioning */
    }

    .timeline-dot {
        left: 0px !important;
        /* Force left alignment */
        right: auto !important;
    }

    .timeline-content::before {
        left: -10px !important;
        /* Arrow always on left */
        right: auto !important;
    }


    .timeline-item.left {
        text-align: left;
    }
}

/* IT Services Page */
.it-hero {
    background: linear-gradient(rgba(18, 33, 58, 0.8), rgba(18, 33, 58, 0.8)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.feature-section {
    padding: 80px 0;
}

.feature-section.alt-bg {
    background-color: #f8f9fa;
}

.feature-section.dark-mode {
    background-color: #111827;
    color: white;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1;
}

.feature-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}


.feature-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
}

.feature-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
}

.dark-mode .feature-text p {
    color: #9ca3af;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-weight: 600;
    color: #5d5d5d;
}

.feature-list i {
    color: var(--accent-green);
}

/* Data Analytics Section */
.data-section {
    padding: 100px 0;
    background: white;
}

.section-center-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.data-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.data-card i {
    font-size: 40px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.data-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Cloud Banner */
.cloud-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue), #1e3a8a);
    color: white;
    text-align: center;
}

.cloud-content {
    max-width: 800px;
    margin: 0 auto;
}

.cloud-content .fa-cloud-upload-alt {
    font-size: 50px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cloud-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.cloud-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
}



@media (max-width: 900px) {
    .feature-row {
        flex-direction: column;
        gap: 40px;
    }

    .feature-row.reverse {
        flex-direction: column;
    }
}

/* Specialized Billing Page */
.specialize-hero {
    background: linear-gradient(rgb(18, 33, 58), rgba(18, 33, 58, 0.85)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Dental Section */
.dental-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.icon-header {
    font-size: 40px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.dental-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.dental-content h3,
.dental-process h3 {
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-green);
    margin-right: 15px;
}

.process-step {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.process-step span {
    background: var(--dark-blue);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

/* Lab Section */
.lab-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.lab-header {
    text-align: center;
    margin-bottom: 50px;
}

.lab-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.lab-card {
    background: white;
    padding: 60px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.lab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.lab-card i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.lab-card h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.lab-card p {
    font-size: 1em;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.lab-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: var(--accent-green);
    margin-right: 8px;
}

/* Home Health Section */
.home-health-section {
    padding: 80px 0;
}

.home-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.home-visual {
    flex: 1;
}

/* .home-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

.home-content {
    flex: 1;
}


.home-content ul {
    color: var(--text-gray);
}

.section-badge-soft {
    background: rgba(255, 122, 122, 0.1);
    color: #ff6b6b;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.service-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.service-pills span {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #eee;
}

/* OON Section */
.oon-section {
    padding: 80px 0;
    background: #1e293b;
    color: white;
}

.oon-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.oon-details {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.oon-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
}

.oon-col.highlight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.oon-col h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.oon-col ul {
    list-style: none;
    padding: 0;
}

.oon-col li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hospital Section */
.hospital-section {
    padding: 80px 0;
    background: white;
}

.hospital-header {
    text-align: center;
    margin-bottom: 50px;
}

.split-container {
    display: flex;
    gap: 30px;
}

.split-card {
    flex: 1;
    padding: 50px;
    border-radius: 20px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.part-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
}

.split-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.split-card.part-a {
    background: radial-gradient(circle at top right, #e0f2fe, #f0f9ff);
}

.split-card.part-b {
    background: radial-gradient(circle at top right, #f0fdf4, #f0fdf4);
}

/* DME Section */
.dme-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

.dme-row {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 30px;
}

.icon-bubble {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6366f1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.dme-list {
    margin: 30px 20px;
    line-height: 1.8;
}

.dme-stats {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    gap: 20px;
    justify-content: center;
}

.stat-box {
    background: white;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 193, 119, 0.15);
    border-color: var(--accent-green);
}

.stat-box span {
    font-size: 13px;
    line-height: 1.3;
}

.stat-box i {
    font-size: 32px;
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.stat-box:hover i {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .dental-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-row,
    .oon-details,
    .split-container,
    .dme-row {
        flex-direction: column;
        gap: 30px;
    }

    .oon-details,
    .lab-header,
    .dental-section .section-header {
        text-align: center;
    }

    .lab-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .split-card {
        padding: 30px;
    }

    .dme-row {
        padding: 30px;
    }

    .dme-stats {
        justify-content: center;
    }
}

/* =========================================
   Credentialing Page Styles
   ========================================= */

/* Hero */
.credential-hero {
    background: linear-gradient(rgb(18, 33, 58), rgba(18, 33, 58, 0.85)), url('https://images.unsplash.com/photo-1581056771107-24ca5f033842?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Credentialing General Sections */
.cred-section {
    padding: 80px 0;
    border-bottom: 1px solid #f0f4f8;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 193, 119, 0.1);
    color: var(--accent-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 1. Provider Credentialing */
.provider-cred {
    background: #fff;
}

.cred-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cred-content-text {
    flex: 1;
}

.cred-content-text h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.25;
}

.lead-p {
    font-size: 18px;
    color: #8e8e8e;
    margin-bottom: 20px;
    font-weight: 500;
}

.benefit-list-styled {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}



.b-item {
    display: flex;
    gap: 25px;
}

.b-item i {
    font-size: 30px;
    color: var(--accent-green);
    background: #e6f9f0;
    padding: 12px;
    border-radius: 10px;
    height: fit-content;
}

.b-item h4 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.b-item p {
    font-size: 14px;
    color: #707070;
    margin: 0;
}

.cred-visual {
    flex: 0.9;
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #eefbf5 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-card i {
    font-size: 150px;
    color: rgba(27, 51, 90, 0.05);
}

/* 2. Re-Credentialing */
.re-cred-section {
    background: #f8fafc;
    text-align: center;
}

.center-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.center-header h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.center-header p {
    font-size: 18px;
    color: #64748b;
}

.re-cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rc-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.rc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.rc-card:hover i {
    color: var(--primary-blue);
    transform: scale(1.2) rotate(10deg);
}

.rc-card i {
    transition: 0.4s;
}



.rc-icon {
    width: 60px;
    height: 60px;
    background: #eefbf5;
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.rc-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.rc-card p {
    color: #666;
    line-height: 1.6;
}

/* 3. Dual Services (Payer & PSV) */
.dual-services {
    background: #fff;
    padding: 100px 0;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.dual-col {
    padding: 50px;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.payer-col {
    background: var(--dark-blue);
}

.psv-col {
    background: #2b4570;
}

.dual-col:hover {
    transform: scale(1.02);
}

.dual-icon {
    font-size: 40px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.dual-col h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.dual-col p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.check-list-dark {
    list-style: none;
}

.check-list-dark li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
}

.check-list-dark i {
    color: var(--accent-green);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
}

/* 4. Network & Compliance */
.net-comp-section {
    background: #fdfdfd;
}

.nc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.nc-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.sub-h {
    color: var(--accent-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.nc-content h2 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.nc-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stat-row {
    display: flex;
    gap: 40px;
}

.micro-stat {
    display: flex;
    flex-direction: column;
}

.micro-stat strong {
    font-size: 24px;
    color: var(--dark-blue);
}

.micro-stat span {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

/* =========================================
   Medical Coding Styles (Dark Theme)
   ========================================= */
.medical-coding-section {
    background: var(--dark-blue);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.medical-coding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.3;
}

.coding-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.coding-head h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.coding-head p {
    font-size: 20px;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 1px;
}

.coding-features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.coding-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.coding-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.big-item {
    grid-column: 1 / -1;
    text-align: center;
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.big-item .ci-head {
    justify-content: center;
}

.big-item p {
    color: rgb(0, 0, 0);
    opacity: 1;
}

.p1 {
    color: rgb(0, 0, 0);
    opacity: 1;
}

.ci-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ci-head i {
    font-size: 24px;
    color: var(--accent-green);
}

.big-item .ci-head i {
    color: white;
}

.ci-head h4 {
    font-size: 18px;
    font-weight: 600;
}

.coding-item p {
    font-size: 14px;
    color: #b0b8c4;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   Practice Audit Styles (Timeline)
   ========================================= */
.audit-control-section {
    padding: 100px 0;
    background: #fff;
}

.audit-intro-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.audit-intro-box h2 {
    font-size: 38px;
    color: var(--dark-blue);
    margin-bottom: 22px;
}

.audit-intro-box .subtitle {
    font-size: 18px;
    color: var(--nav-text);
    font-weight: 600;
    margin-bottom: 26px;
}

.audit-intro-box .desc {
    color: #666;
    margin-bottom: 40px;
}

.audit-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.audit-tags span {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 29px;
    /* Adjust based on circular marker width */
    top: 90px;
    bottom: 50px;
    width: 2px;
    /* background: #e2e8f0; */
}

/* BPO Benefits List */
.benefits-list {
    margin-top: 25px;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #475569;
    font-weight: 500;
}

.benefits-list li i {
    color: var(--accent-green);
    font-size: 18px;
}

.timeline-header {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 50px;
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 0 5px white;
    /* spacing from line */
}

.step-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    flex-grow: 1;
    transition: var(--transition);
}

.step-content:hover {
    border-color: var(--accent-green);
    transform: translateX(5px);
}

.step-content h4 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Credentialing */
@media (max-width: 900px) {

    .cred-flex,
    .dual-grid,
    .nc-grid {
        flex-direction: column;
        gap: 40px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .timeline-container::before {
        left: 20px;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .visual-card {
        height: 250px;
    }

    /* Mobile Hamburger Menu Styles */
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-blue);
        font-size: 24px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        background: #f8fafc;
        transition: all 0.3s ease;
        z-index: 10001;
    }

    .mobile-toggle:hover {
        background: #e2e8f0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 10000;
        gap: 0;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links li a {
        padding: 15px 10px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid #f1f5f9;
        color: var(--primary-blue);
    }

    .nav-right {
        display: none;
    }

    /* Mega menu mobile adjustments (Accordion style) */
    .mega-dropdown .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: #f8fafc;
        border-radius: 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        border: none;
    }

    .mega-dropdown .mega-menu::before {
        display: none;
    }

    .mega-dropdown.active .mega-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .mega-dropdown.active>a {
        color: var(--accent-green);
        background: #f1f5f9;
    }

    .mega-dropdown.active>a i {
        transform: rotate(180deg);
    }

    .mega-col {
        padding: 0 10px;
    }

    .mega-title {
        margin: 15px 10px 10px;
        font-size: 10px;
    }

    .mega-list li a {
        padding: 10px 15px;
        border-bottom: none;
        font-size: 14px;
    }

    .m-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .m-text strong {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .mega-dropdown.active .mega-menu,
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
        transform: translateY(0);
    }

    /* Medical Billing Page Responsiveness */
    .page-hero h1 {
        font-size: 38px;
    }

    .section-header h2,
    .section-title {
        font-size: 28px;
    }

    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .med-service-grid {
        grid-template-columns: 1fr;
    }

    .radial-container {
        flex-direction: column;
        text-align: center;
    }

    /* Boxed Service Responsiveness */
    .boxed-content {
        grid-template-columns: 1fr;
    }

    .boxed-service.reverse .boxed-content {
        direction: ltr;
    }

    .boxed-image {
        min-height: 300px;
    }

    .boxed-text {
        padding: 40px 20px;
        text-align: center;
    }

    .boxed-text h3 {
        font-size: 28px;
    }

    .boxed-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   NETWORK & COMPLIANCE REDESIGN
   ============================================ */
.net-comp-section {
    padding: 100px 0;
    background: #f8fafc;
}

.nc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nc-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.nc-card.dark-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border: none;
}

.nc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.nc-card.dark-card:hover {
    box-shadow: 0 20px 50px rgba(27, 51, 90, 0.3);
}

.nc-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: var(--accent-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.dark-card .nc-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-green);
}

.nc-body {
    flex-grow: 1;
}

.nc-body h2 {
    font-size: 28px;
    color: var(--dark-blue);
    margin: 10px 0 20px;
    font-weight: 700;
}

.dark-card .nc-body h2 {
    color: white;
}

.nc-body p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dark-card .nc-body p {
    color: rgba(255, 255, 255, 0.8);
}

.nc-stats {
    display: flex;
    gap: 30px;
    margin-top: auto;
}

.micro-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ms-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
}

.dark-card .ms-val {
    color: var(--accent-green);
}

.ms-lab {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.dark-card .ms-lab {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsiveness */
@media (max-width: 991px) {
    .nc-wrapper {
        grid-template-columns: 1fr;
    }

    .nc-card {
        padding: 40px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0 50px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #070029);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    border-color: var(--dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(9, 0, 59, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 32px;
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-blue);
    transform: scale(1.1) rotate(5deg);
}

.why-card:hover .why-icon i {
    color: white;
}

.why-card h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.why-stat {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: auto;
}

.stat-big {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.why-badge i {
    font-size: 16px;
}

/* Responsive Why Choose */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0 40px;
    }

    .why-card {
        padding: 30px 25px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 28px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .stat-big {
        font-size: 32px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 60px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), #00e090);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    color: white;
    font-size: 20px;
}

.testimonial-card .stars {
    color: #f4b400;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent-green);
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    font-size: 14px;
    color: #64748b;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: var(--dark-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Carousel Dot Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-green);
    width: 40px;
    border-radius: 6px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--accent-green);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.newsletter-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.newsletter-form-wrapper {
    position: relative;
    z-index: 2;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-input-group i {
    position: absolute;
    left: 20px;
    color: #94a3b8;
    font-size: 16px;
}

.form-input-group input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--dark-blue);
}

.form-input-group input::placeholder {
    color: #94a3b8;
}

.btn-subscribe {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 193, 119, 0.3);
}

.btn-subscribe:hover {
    background: #00a868;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 193, 119, 0.4);
}

.btn-subscribe:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Responsive Testimonials & Newsletter */
@media (max-width: 900px) {
    .testimonials-carousel {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .newsletter-text h2 {
        font-size: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .testimonials-carousel {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
    }

    .quote-icon i {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-avatar img {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .newsletter-text h2 {
        font-size: 26px;
    }

    .newsletter-text p {
        font-size: 15px;
    }

    .form-input-group input {
        padding: 16px 20px 16px 45px;
        font-size: 14px;
    }

    .btn-subscribe {
        padding: 16px 25px;
        font-size: 14px;
    }
}


.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =====================================
   SPECIALTIES PAGE STYLES - NEW
   ===================================== */

/* Specialties Hero */
.specialties-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.specialties-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.specialties-hero .hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.specialties-hero .hero-tag i {
    margin-right: 8px;
    color: var(--accent-green);
}

.specialties-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.specialties-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Specialties Section */
.specialties-section {
    padding: 80px 0;
    background: #ffffff;
}

.specialties-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.specialties-section .section-title {
    font-size: 38px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.specialties-section .section-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

/* Specialties Grid */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* Specialty Card */
.specialty-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.specialty-card:hover::before {
    transform: scaleX(1);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
}

/* Specialty Icon */
.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 193, 119, 0.1), rgba(27, 51, 90, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.specialty-icon i {
    font-size: 30px;
    color: var(--accent-green);
    transition: all 0.4s ease;
}

.specialty-card:hover .specialty-icon {
    background: var(--accent-green);
    transform: scale(1.1) rotate(5deg);
}

.specialty-card:hover .specialty-icon i {
    color: white;
    transform: scale(1.1);
}

/* Specialty Title */
.specialty-card h3 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specialty Description */
.specialty-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Specialties CTA */
.specialties-cta {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.specialties-cta h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.specialties-cta p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.specialties-cta .btn-dark {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.specialties-cta .btn-dark:hover {
    background: #00a868;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 193, 119, 0.3);
}

/* ===================================== */

/* Responsive Design for Specialties Page */
@media (max-width: 1200px) {
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .specialties-hero h1 {
        font-size: 38px;
    }

    .specialties-hero p {
        font-size: 16px;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .specialties-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .specialties-hero {
        padding: 60px 0;
    }

    .specialties-hero h1 {
        font-size: 32px;
    }

    .specialties-hero p {
        font-size: 15px;
    }

    .specialties-section {
        padding: 60px 0;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .specialties-section .section-title {
        font-size: 28px;
    }

    .specialty-card h3 {
        min-height: auto;
        font-size: 20px;
    }

    .specialties-cta {
        padding: 40px 25px;
    }

    .specialties-cta h2 {
        font-size: 26px;
    }

    .specialties-cta p {
        font-size: 15px;
    }
}

/* End of Specialties Page Styles */


/* SEO Section Styles */
.seo-section {
    padding: 100px 0;
}

.seo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seo-content h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.seo-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.seo-card i {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 20px;
    display: block;
}

.seo-card h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.seo-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.seo-visual img {
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .seo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seo-visual {
        order: -1;
    }
}

@media (max-width: 576px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-content h2 {
        font-size: 28px;
    }
}

