/* ========================================
   CoordinatorZ Medical Billing - Main Styles
   ======================================== */

/* Poppins Font Import - All Weights */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-blue: #2B4B8C;
    --secondary-blue: #3FA9D8;
    --accent-red: #E74C3C;
    --footer-bg: #E8EAED;
    --font-primary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.top-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.logo-container img {
    max-height: 100px;
    width: auto;
}

.navbar {
    background-color: #fff !important;
    padding: 0;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: var(--primary-blue) !important;
    font-size: 20px;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-blue) !important;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    margin-left: 8px;
}

.btn-contact-us {
    background-color: var(--primary-blue);
    color: #fff !important;
    border-radius: 25px;
    padding: 10px 30px !important;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-contact-us:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
@media (min-width: 1025px)
{
    .container-fluid.topheadercont
    {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (min-width: 1024px)
{
    .Mobileheader{
        display: none;
    }
    div#mobileSidebar{
        display: none;
    }
}
@media (max-width: 1023px)
{
    .desktopheader{
        display: none;
    }
}

/* ========================================
   MEGA MENU STYLES - HOVER FUNCTIONALITY
   ======================================== */

.mega-menu-item {
    position: static;
}

.navbar {
    position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    border: none;
    border-radius: 0;
    background-color: #F0F8FF;
    box-shadow: none;
    padding: 50px 0 60px 0;
    margin-top: 0;
    border-top: 1px solid #e0e0e0;
    display: none; /* Hidden by default */
}

/* Show mega menu on hover - DESKTOP ONLY */
@media (min-width: 992px) {
    .mega-menu-item:hover .mega-menu {
        display: block;
    }
}

.mega-menu .container-fluid {
    max-width: 100% !important;
    margin: 0;
    padding-left: 0px;
    padding-right: 0px;
}

.mega-menu-item-block {
    margin-bottom: 35px;
}

.mega-menu-item-block:last-child {
    margin-bottom: 0;
}

.mega-menu-title {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.mega-menu-desc {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mega Menu Link Styling */
.mega-menu-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Prevent child elements from blocking clicks */
.mega-menu-link h6,
.mega-menu-link p {
    pointer-events: none;
}

.mega-menu-link:hover {
    transform: translateX(5px);
}

.mega-menu-link:hover .mega-menu-title {
    color: var(--secondary-blue);
}

/* Mobile dropdown behavior */
@media (max-width: 991px) {
    .mega-menu-item .nav-link {
        pointer-events: auto;
    }
    
    .mega-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 20px 15px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-top: 1px solid #e0e0e0 !important;
        background-color: #f8f9fa;
    }
}

     /* ========================================
           MOBILE HEADER & SIDEBAR MENU
           ======================================== */
        @media (max-width: 1023px) {
            /* Mobile Header - Fixed */
            .Mobileheader {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1050;
                background-color: #fff;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .Mobileheader .logo-container img {
                max-height: 65px;
            }

            /* Custom Hamburger Button */
            .navbar-toggler {
                border: none;
                padding: 8px;
                background-color: transparent;
            }

            .navbar-toggler:focus {
                box-shadow: none;
            }

            .navbar-toggler-icon {
                width: 28px;
                height: 2px;
                background-color: var(--primary-blue);
                display: block;
                position: relative;
                transition: all 0.3s ease;
            }

            .navbar-toggler-icon::before,
            .navbar-toggler-icon::after {
                content: '';
                width: 28px;
                height: 2px;
                background-color: var(--primary-blue);
                position: absolute;
                left: 0;
                transition: all 0.3s ease;
            }

            .navbar-toggler-icon::before {
                top: -8px;
            }

            .navbar-toggler-icon::after {
                bottom: -8px;
            }

            /* Sidebar Menu */
            .mobile-sidebar {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: #fff;
                box-shadow: -2px 0 10px rgba(0,0,0,0.2);
                z-index: 1060;
                transition: right 0.3s ease;
                overflow-y: auto;
            }

            .mobile-sidebar.active {
                right: 0;
            }

            /* Overlay */
            .mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: rgba(0,0,0,0.5);
                z-index: 1055;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .mobile-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            /* Sidebar Header */
            .sidebar-header {
                padding: 10px;
                border-bottom: 1px solid #e0e0e0;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .sidebar-close {
                background: none;
                border: none;
                font-size: 28px;
                color: var(--primary-blue);
                cursor: pointer;
                padding: 0;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Sidebar Navigation */
            .sidebar-nav {
                padding: 0;
                margin: 0;
                list-style: none;
            }

            .sidebar-nav .nav-item {
                border-bottom: 1px solid #f0f0f0;
            }

            .sidebar-nav .nav-link {
                display: block;
                padding: 15px 20px;
                color: var(--primary-blue);
                text-decoration: none;
                font-size: 18px;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .sidebar-nav .nav-link:hover {
                background-color: #f8f9fa;
                color: var(--secondary-blue);
                padding-left: 25px;
            }

            /* Services Dropdown in Sidebar */
            .sidebar-dropdown {
                position: relative;
            }

            .sidebar-dropdown-toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }


            .sidebar-dropdown-toggle a.services-link {
                text-decoration: none;
                color: var(--primary-blue);
                font-weight: 500;
            }

            .sidebar-dropdown-toggle::after {
                content: '▾';
                font-size: 20px;
                transition: transform 0.3s ease;
            }

            .sidebar-dropdown-toggle.active::after {
                transform: rotate(180deg);
            }

            .sidebar-dropdown-menu {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background-color: #f8f9fa;
            }

            .sidebar-dropdown-menu.active {
                max-height: 1000px;
            }

            .sidebar-dropdown-menu .nav-link {
                padding: 12px 20px 12px 40px;
                font-size: 15px;
            }

            .sidebar-service-title {
                color: var(--primary-blue);
                font-weight: 600;
                margin-bottom: 5px;
            }

            .sidebar-service-desc {
                color: #666;
                font-size: 12px;
                line-height: 1.4;
            }

            /* Contact Button in Sidebar */
            .sidebar-contact {
                padding: 20px;
            }

            .sidebar-contact .btn-contact-us {
                display: block;
                width: 100%;
                text-align: center;
            }

        }


/* ========================================
   FOOTER STYLES
   ======================================== */

.footer-section {
    background-color: #E6EBF3;
}

.footer-logo img {
    height: auto;
    width: 30vw;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-blue);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 10px;
    font-style: normal;
    min-width: 20px;
    font-size: 18px;
}

.footer-contact a,
.footer-contact span {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--secondary-blue);
}

.footer-bottom {
    border-top: 1px solid #ccc;
}

.copyright-text {
    font-size: 14px;
    color: #000;
}

.footer-legal-links a {
    color: #000;
    text-decoration: underline;
    margin: 0 10px;
    font-size: 14px;
}

.footer-legal-links a:hover {
    color: var(--secondary-blue);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
    }
    .homesecrow{
        text-align: center !important;
    }
    .hero-buttons{
        display: block !important;
    }
    .footer-logo img{
        width: 80vw;
    }
    .footer-content{
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

/*.social-icons a:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
}*/

.social-icon {
    font-style: normal;
    font-weight: bold;
}
.mega-menu-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 15px;
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .btn-contact-us {
        margin-top: 15px;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Mobile Mega Menu - Full Width Below Header */
    .mega-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 20px 15px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-top: 1px solid #e0e0e0 !important;
        background-color: #f8f9fa;
    }
    
    .mega-menu .container-fluid {
        padding: 0;
    }
    
    .mega-menu .row {
        margin: 0;
    }
    
    .mega-menu-item-block {
        margin-bottom: 20px;
        padding: 0;
    }
    
    .mega-menu-title {
        font-size: 16px;
    }
    
    .mega-menu-desc {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .top-header {
        padding: 15px 0;
    }
    
    .logo-container img {
        max-height: 76px;
    }

    
    .copyright-text {
        text-align: center;
    }
    
    .footer-legal-links {
        display: block;
        margin-top: 10px;
    }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                      HOME PAGE CSS START                               ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(110deg, #C1E6F9 10%, rgba(79,176,233,0.4) 50%, #75C2E9 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 75, 140, 0.3);
    color: #fff;
}

.btn-link-custom {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-link-custom:hover {
    color: var(--secondary-blue);
    gap: 12px;
}

.arrow-icon {
    font-style: normal;
    transition: transform 0.3s ease;
}

.btn-link-custom:hover .arrow-icon {
    transform: translateX(4px);
}

.hero-image {
    width: 100%;
    height: 342px;
    border-radius: 20px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.about-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-img {
    width: 50px;
    height: 50px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    width: 505px;
    height: 505px;
    border-radius: 50%;
    float: right;
}

/* ========================================
   /*SERVICES SECTION*/
======================================== */

.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-label {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
}
.tabssection{
    background-color: #CED7E8;
    border-radius: 20px;
}

.service-tabs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.service-tabs-wrapper::-webkit-scrollbar {
    height: 0;
}

.service-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: fit-content;
    padding: 0 0px;
    height: 80px;
    border-bottom: 1px solid #a7a7a8;
}

.service-tab {
    color: #000;
    padding: 15px 60px;
    border-radius: 0;
    border: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    background-color: transparent;
    border-right: 1px solid #a7a7a8;
}

.service-tab:hover {
    background-color: #e3e5e8;
}

.service-tab.active {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(43, 75, 140, 0.3);
    color: #fff;
}

.service-tab-more {
    color: #4B5563;
    padding: 15px 30px;
    border-radius: 0;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-tab-more:hover {
    background-color: #e3e5e8;
    color: #fff;
}

#service-content-wrapper {
    position: relative;
    min-height: 500px;
}

.service-content-card {
    padding: 50px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.service-content-card.active {
    display: block;
    opacity: 1;
    position: relative;
}

.service-content-title {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.service-content-subtitle {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-content-description {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background-color: #4B5563;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

.arrow-left,
.arrow-right {
    font-style: normal;
}

/* ========================================
   PERFORMANCE SECTION
   ======================================== */

.performance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4A6FA5 0%, #2B4B8C 100%);
}

.section-label-white {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title-white {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.section-subtitle-white {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 auto;
}

.performance-card {
    background-color: #3348A1;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.performance-card:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.performance-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
}

.performance-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.performance-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.performance-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.form-intro-text {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-top: 20px;
}

.contact-form {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form .form-control {
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #000;
    font-weight: 500;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(63, 169, 216, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary-custom {
    margin-top: 10px;
}

/* ========================================
   HOME PAGE RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 32px !important;
    }
    
    .section-title {
        font-size: 28px !important;
    }
    
    .hero-image, 
    .about-image, 
    .service-image {
        margin-top: 30px;
    }
    
    .service-content-card {
        padding: 10px;
    }
    
    .service-content-subtitle {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 25px !important;
        line-height: 36px;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .about-section,
    .services-section,
    .performance-section,
    .contact-form-section {
        padding: 50px 0;
    }
    
    .performance-card {
        margin-bottom: 20px;
    }
    
    .service-tabs {
        gap: 0px;
    }
    
    .service-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title-white {
        font-size: 28px;
    }
    .abouthomesectionrow{
        text-align: center;
    }
    .about-icon{
        margin: auto;
    }
    .about-buttons{
        display: block;
    }
    .service-content-title{
        font-size: 20px;
    }
    .service-tabs{
        height: 65px;
    }
    .contacthomesectioncol{
        text-align: center;
    }
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                      HOME PAGE CSS END                                 ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

   /* ╔════════════════════════════════════════════════════════════════════════╗
   ║                      ABOUT US PAGE CSS START                           ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ========================================
   ABOUT HERO BANNER
   ======================================== */

.about-hero-banner {
    background: linear-gradient(110deg, #C1E6F9 10%, rgba(79,176,233,0.4) 50%, #75C2E9 100%);
    padding: 100px 0;
    text-align: center;
}

.about-hero-title {
    font-size: 45px;
    font-weight: 700;
    color: #354BA3;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin: 0 auto;
}

/* ========================================
   PRECISION SECTION
   ======================================== */

.precision-section {
    padding: 80px 0;
    background-color: #E8EAED;
}

.section-subtitle-small {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features-list li {
    font-size: 16px;
    color: #000;
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-weight: 400;
}

.about-features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 20px;
}

.about-image-circle {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.about-circle-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========================================
   VISION SECTION
   ======================================== */

.vision-section {
    padding: 80px 0;
    background-color: #fff;
}

/* ========================================
   CORE PRINCIPLES SECTION
   ======================================== */

.core-principles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A6FA5 0%, #2B4B8C 100%);
}

.section-label-white {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.section-title-white {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.core-principles-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.principle-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 35px;
    height: 100%;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.principle-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.principle-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.principle-description {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   ABOUT PAGE RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-section-title {
        font-size: 30px;
    }
    
    .section-title-white {
        font-size: 34px;
    }
    
    .about-image-circle {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .precision-section,
    .vision-section,
    .core-principles-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .about-hero-banner {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 24px;
    }
    .about-image{
        width: 100% !important;
        height: auto !important;
    }
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .about-section-title {
        font-size: 26px;
    }
    
    .section-title-white {
        font-size: 28px;
    }
    
    .principle-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .precision-section,
    .vision-section,
    .core-principles-section {
        padding: 50px 0;
    }
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                      ABOUT US PAGE CSS END                             ║
   ╚════════════════════════════════════════════════════════════════════════╝ */


   /* ╔════════════════════════════════════════════════════════════════════════╗
   ║                   SPECIALTIES PAGE CSS START                           ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ========================================
   SPECIALTIES HERO SECTION
   ======================================== */

.specialties-hero-section {
    background-color: #fff;
    padding: 80px 0;
}

.specialties-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.specialties-hero-description {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-image-container {
    width: 100%;
    max-width: 550px;
    margin-left: auto;
}

.specialties-hero-img {
    width: 100%;
    height: auto;
    border-radius: 0 0 50% 50%;
}

/* ========================================
   TAILORED SECTION
   ======================================== */

.tailored-section {
    padding: 80px 0;
    background-color: #E6EBF3;
}

.section-subtitle-small {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title-dark {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description-center {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
}

.specialty-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.specialty-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialty-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.specialty-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.specialty-description {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   ADDITIONAL SPECIALTIES SECTION
   ======================================== */

.additional-specialties-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.additional-specialty-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.additional-specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.additional-specialty-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.additional-specialty-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.additional-specialty-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

/* ========================================
   SPECIALTIES PAGE RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .specialties-hero-title {
        font-size: 36px;
    }
    
    .section-title-dark {
        font-size: 30px;
    }
    
    .hero-image-container {
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tailored-section,
    .additional-specialties-section {
        padding: 60px 0;
    }
    
    .specialty-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .specialties-hero-section {
        padding: 60px 0;
    }
    
    .specialties-hero-title {
        font-size: 25px;
        text-align: center;
        line-height: 35px;
    }
    .specialtiesrow{
        text-align: center;
    }
    .specialties-hero-description {
        font-size: 16px;
        text-align: center;
    }
    
    .section-title-dark {
        font-size: 30px;
    }
    
    .section-description-center {
        font-size: 16px;
    }
    
    .specialty-card {
        padding: 30px 20px;
    }
    
    .specialty-title {
        font-size: 18px;
    }
    
    .additional-specialty-card {
        padding: 25px 15px;
    }
    
    .tailored-section,
    .additional-specialties-section {
        padding: 50px 0;
    }
    .desktop{
        display: none;
    }
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                   SPECIALTIES PAGE CSS END                             ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                     SERVICES PAGE CSS START                            ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ========================================
   SERVICES HERO SECTION
   ======================================== */

.services-hero-section {
        background: linear-gradient(110deg, #C1E6F9 10%, rgba(79,176,233,0.4) 50%, #75C2E9 100%);
        padding: 80px 0;
}

.services-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-hero-description {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-hero-image {
    width: 100%;
    max-width: 550px;
    margin-left: auto;
}

.services-hero-img {
    width: 100%;
    height: auto;
}

/* ========================================
   SOLUTIONS INTRO SECTION
   ======================================== */

.solutions-intro-section {
    padding: 80px 0 40px;
    background-color: #E8EAED;
}

.section-subtitle-small {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title-dark {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description-center {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   SERVICES GRID SECTION - TWO COLUMN CARDS
   ======================================== */

.services-grid-section {
    padding: 40px 0 80px;
    background-color: #E8EAED;
}

/* Service Cards - Light Background */
.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-light {
    background-color: #CED7E8;
}

.service-card-dark {
    background-color: #CED7E8;
}

.service-card-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-card-light .service-card-title {
    color: #000;
}

.service-card-dark .service-card-title {
    color: #000;
}

.service-card-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-light .service-card-subtitle {
    color: #000;
}

.service-card-dark .service-card-subtitle {
    color: #000;
}

.service-card-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-light .service-card-description {
    color: #000;
}

.service-card-dark .service-card-description {
    color: #000;
}

.service-card-highlights-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-light .service-card-highlights-title {
    color: #000;
}

.service-card-dark .service-card-highlights-title {
    color: #000;
}

.service-card-highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-card-highlights-list li {
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.6;
}

.service-card-light .service-card-highlights-list li {
    color: #000;
}

.service-card-dark .service-card-highlights-list li {
    color: #000;
}

.service-card-highlights-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
}

.service-card-light .service-card-highlights-list li:before {
    color: #000;
}

.service-card-dark .service-card-highlights-list li:before {
    color: #000;
}

.service-card-learn-more {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card-light .service-card-learn-more {
    color: var(--primary-blue);
}

.service-card-dark .service-card-learn-more {
    color: #7BC4E8;
}

.service-card-learn-more:hover {
    transform: translateX(5px);
}

.service-card-image-wrapper {
    margin-top: auto;
}

.service-card-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ========================================
   FULL WIDTH SERVICE CARDS (5th & 10th)
   ======================================== */

.service-full-width-card {
    background-color: #CED7E8;
    border-radius: 15px;
    padding: 40px;
}

.service-full-content {
    padding-right: 20px;
}

.service-full-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-full-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-full-description {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-full-highlights-title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.service-full-highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-full-highlights-list li {
    font-size: 16px;
    color: #000;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.service-full-highlights-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.service-full-learn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-full-learn-more:hover {
    color: var(--secondary-blue);
    transform: translateX(5px);
}

.service-full-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ========================================
   SERVICES PAGE RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .services-hero-title {
        font-size: 36px;
    }
    
    .section-title-dark {
        font-size: 30px;
    }
    
    .services-hero-image {
        margin-top: 40px;
        margin-left: 0;
        margin-right: auto;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-full-width-card {
        padding: 30px;
    }
    
    .service-full-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .solutions-intro-section,
    .services-grid-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .services-hero-section {
        padding: 60px 0;
    }
    
    .services-hero-title {
        font-size: 28px;
        text-align: center;
    }
    .contsection
    {
        text-align: center;
    }
    
    .services-hero-description {
        font-size: 16px;
        text-align: center;
    }
    
    .section-title-dark {
        font-size: 26px;
    }
    
    .section-description-center {
        font-size: 15px;
    }
    
    .service-card {
        padding: 25px 20px 20px;
    }
    
    .service-card-title {
        font-size: 20px;
    }
    
    .service-full-width-card {
        padding: 25px 20px;
    }
    
    .service-full-title {
        font-size: 22px;
    }
    
    .solutions-intro-section,
    .services-grid-section {
        padding: 50px 0;
    }
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                     SERVICES PAGE CSS END                              ║
   ╚════════════════════════════════════════════════════════════════════════╝ */


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                     SERVICES PAGE CSS Start                             ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

   /* HERO */
.contact-hero {
    background: linear-gradient(
        110deg,
        #C1E6F9 10%,
        rgba(79,176,233,0.4) 50%,
        #75C2E9 100%
    );
 padding: 130px 0 130px;
}
.contact-hero .container {
 max-width:1100px; 
}
.contact-hero h1 { 
    color:#27378A; font-weight:800; font-size:50px; text-align:center; margin-bottom:10px; 
}
.contact-hero p.lead {
 text-align:center; max-width:780px; margin:0 auto; color:#000;
 font-weight: 500; 
}


/* CONTACT AREA */
.contact-wrap{ 
    padding: 60px 0; 
}
.card-contact{
 border:0; border-radius:8px; 
}
.left-info {
 padding:28px; 
}
.left-info h3{ 
    font-size:35px; 
    font-weight:800; 
    margin-bottom:6px; 
}
.left-info p 
{ 
  color: #000; 
  margin-bottom:8px; 
  font-size: 18px;
}
.meta-item 
{ 
    display:block; 
    gap:12px; 
    align-items:flex-start; 
    margin-bottom:14px; 
    color:#000; 
}
.meta-item .bi
{ font-size:18px;
 color:#3c4a80;
  margin-top:3px;
   }
.meta-item a
{ 
    color:#1d3a7a;
    text-decoration:none;
    font-size: 18px;
 }

/* Form styles */
.contact-form 
{ 
    padding:28px; 
}
.form-label{ 
    font-weight:500;
     font-size:16px; 
     color:#000; 
    }
.btn-submit{ 
    background:#3d3e9e; 
    border-radius:18px;
     padding:6px 18px; 
     border:0; 
     box-shadow:none; 
     font-size: 18px;
    }


/* Map section */
.map-section{ 
    padding:60px 0 90px; 
}
.map-card { 
    border-radius:12px; 
    overflow:hidden;
     }


/* big brand footer-like area (logo + links) */
.brand-cta
{ 
    background:#eef3fa; 
    padding:36px 0; 
    margin-top:40px; 
    border-top:1px solid rgba(0,0,0,0.03); 
}
.brand-cta .logo{ 
    font-weight:800; 
    color:#2b4aa6; 
    font-size:34px; 
}


/* Responsiveness */
@media (max-width:991px)
{ 
    .contact-hero{
        padding:60px 0 60px;
    } 
    .contact-hero h1{
        font-size:30px;
    } 
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                  CREDENTIALING PAGE CSS START                          ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ========================================
   CREDENTIALING HERO BANNER
   ======================================== */

.credentialing-hero-banner {
    background: linear-gradient(180deg, rgba(91, 155, 213, 0.3) 0%, rgba(91, 155, 213, 0.1) 100%);
    padding: 0px 0 0;
    overflow: hidden;
}

.credentialing-hero-img {
    width: 100%;
    height: 535px;
    display: block;
    margin: 0 auto;
}

/* ========================================
   CREDENTIALING CONTENT SECTION
   ======================================== */

.credentialing-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.credentialing-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 25px;
}

.credentialing-description {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 35px;
}

.credentialing-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.credentialing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentialing-benefits-list li {
    font-size: 18px;
    color: #333;
    padding-left: 30px;
    margin-bottom: 5px;
    position: relative;
    line-height: 1.6;
}

.credentialing-benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
}

.credentialing-image-circle {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.credentialing-dashboard-img {
    width: 100%;
    height: 500px;
/*    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);*/
}

/* ========================================
   CREDENTIALING PAGE RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .credentialing-hero-banner {
        padding: 0px 0 0;
    }
    
    .credentialing-hero-img {
        max-width: 100%;
    }
    
    .credentialing-content-section {
        padding: 60px 0;
    }
    
    .credentialing-main-title {
        font-size: 34px;
    }
    
    .credentialing-image-circle {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1023px)
{
.servicesbannerimage
{
    height: 350px !important;
}
.destoptop
{
    display: none !important;
}
.credentialing-dashboard-img
{
    height: auto !important;
}
}


@media (max-width: 767px) {
    .credentialing-hero-banner {
        padding: 0px 0 0;
    }
    
    .credentialing-hero-img {
        max-width: 100%;
    }
    
    .credentialing-content-section {
        padding: 20px 0;
    }
    
    .credentialing-main-title {
        font-size: 24px;
        text-align: center;
    }
    
    .credentialing-description {
        font-size: 16px;
        text-align: center;
    }
    
    .credentialing-subtitle {
        font-size: 18px;
    }
    
    .credentialing-benefits-list li {
        font-size: 16px;
        line-height: 1.5;
    }
    .servicesbannerimage{
        height: 250px !important;
    }
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                  CREDENTIALING PAGE CSS END                            ║
   ╚════════════════════════════════════════════════════════════════════════╝ */


   /*Mobile responsiveness */
   @media only screen and (max-width: 1023px){
    .contact-hero{
        margin-top: 5rem;
    }
    .lead{
        font-size: 18px !important;
    }
    .specialties-hero-section{
        margin-top: 5.5rem;
    }
    .specialtiesrow
    {
        text-align: center;
    }
    section.about-hero-banner{
        margin-top: 5.5rem;
    }
    .services-hero-section{
        margin-top: 5.5rem;
    }

    .credentialing-hero-banner{
       margin-top: 5.5rem; 
    }
    .hero-section{
       margin-top: 5.5rem;  
    }

   } 

   @media only screen and (min-width: 1023px){
    .herocontaiersect{
        padding-right: 3rem;
        padding-left: 3rem;
    }
   }