 /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.5;
            background-color: #fafafa;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background-color: #0b5fa5;
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

header .logo {
    /* max-width: 180px; */
    height: auto;
    width: auto;
    /* max-height: 60px; */
    object-fit: contain;
}


/* ========== ENHANCED LOGO STYLES ========== */
.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 5px 0; /* Add some vertical padding */
}

.logo {
    /* Base constraints */
    max-width: 200px; /* Maximum width */
    max-height: 60px; /* Maximum height */
    width: auto; /* Auto width */
    height: auto; /* Auto height */
    object-fit: contain; /* Maintain aspect ratio */
    transition: all 0.3s ease;
    
    /* Ensure visibility */
    display: block;
    opacity: 1;
}

/* For wider logos (landscape orientation) */
.logo.wide {
    max-width: 220px;
    max-height: 50px;
}

/* For taller logos (portrait orientation) */
.logo.tall {
    max-width: 150px;
    max-height: 70px;
}

/* For square logos */
.logo.square {
    max-width: 60px;
    max-height: 60px;
}

/* Logo hover effects */
.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ========== RESPONSIVE LOGO SIZING ========== */
@media (max-width: 1200px) {
    .logo {
        max-width: 180px;
        max-height: 55px;
    }
    
    .logo.wide {
        max-width: 200px;
        max-height: 45px;
    }
    
    .logo.tall {
        max-width: 140px;
        max-height: 65px;
    }
}

@media (max-width: 992px) {
    .logo {
        max-width: 160px;
        max-height: 50px;
    }
    
    .logo.wide {
        max-width: 180px;
        max-height: 40px;
    }
    
    .logo.tall {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 140px;
        max-height: 45px;
    }
    
    .logo.wide {
        max-width: 160px;
        max-height: 35px;
    }
    
    .logo.tall {
        max-width: 100px;
        max-height: 55px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
        max-height: 40px;
    }
    
    .logo.wide {
        max-width: 140px;
        max-height: 30px;
    }
    
    .logo.tall {
        max-width: 80px;
        max-height: 50px;
    }
    
    .logo.square {
        max-width: 50px;
        max-height: 50px;
    }
}

        /* Main Content */
        main {
            margin-top: 20px;
        }

        main .section {
            margin-bottom: 50px;
        }

        main .section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        main .section p {
            font-size: 1rem;
            color: #555;
        }

        button, a {
            cursor: pointer;
        }

        /* Cards */
        .card {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .card img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 15px;
        }

        .card-text {
            font-size: 1rem;
            margin-top: 10px;
            color: #666;
        }

        /* Footer */
        footer {
            background-color: #0b5fa5;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        /* ========== NAVBAR STYLES ========== */
        .top-bar {
        background: #0b5fa5;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 20px;
        flex-wrap: wrap;
        font-size: 14px;
        }

        .top-bar-links {
        display: flex;
        gap: 20px;
        }

        .top-bar a {
        color: #fff;
        text-decoration: none;
        }

        .navbar {
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding:10px 20px;
        /* padding-left: 15px 20px;
        padding-right: 15px 20px;
        padding-top: 0;
        padding-bottom: 0; */
        position: sticky;
        top: 0;
        z-index: 1200;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        }

        .nav-links {
        display: flex;
        gap: 20px;
        align-items: center;
        position: relative;
        }

        .dropdown {
        position: relative;
        }

        .dropbtn {
        color: #222;
        font-weight: 500;
        padding: 8px 0;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 18px; /* adjust this value to make the icon text larger */
        font-family: 'Times New Roman', Times, serif;
        }

        .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        color: #222;
        cursor: pointer;
        padding: 10px; /* add padding to make it look like a button */
        border-radius: 5px; /* add border radius to make it look like a button */
        background-color: #f7f7f7; /* add background color to make it look like a button */
        border: 1px solid #ddd; /* add border to make it look like a button */
        }

        .dropdown-content, .mega {
        display: none;
        position: absolute;
        background: #fff;
        box-shadow: 0 6px 25px rgba(0,0,0,0.1);
        border-radius: 8px;
        z-index: 999;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(10px) scale(0.98);
        }

        .dropdown-content {
        min-width: 200px;
        padding: 10px;
        top: 45px;
        left: 0;
        }

        .mega {
        left: -200px;
        top: 45px;
        width: 850px;
        background: linear-gradient(145deg,#ffffff,#f7fbff);
        padding: 30px;
        }

        .mega-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 40px;
        }

        .dropdown-content a, .mega a {
        display: block;
        text-decoration: none;
        color: #333;
        padding: 8px 12px;
        }

        .dropdown-content a:hover, .mega a:hover {
        background: #f0f8ff;
        color: #0b5fa5;
        border-radius: 4px;
        }

        .mega a:hover {
        background: #edf5ff;
        border-radius: 6px;
        }

.cta-button {
  background: #0b5fa5;
  color: #fff;
  margin-right: 10px;
  padding: 10px 20px; /* increased padding for better visibility */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: glow 2s infinite;
}

@keyframes glow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.cta-button:hover {
  background: #02a7d9;
}




        /* ========== VIDEO SECTION ========== */
        .video-section {
            position: relative;
            height: 70vh;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }

        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* ========== CONTACT FORM ========== */
.contact-form-section {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(131, 45, 112, 0.15);
    padding: 25px 35px 0px 35px;
    max-width: 900px;
    margin: 40px auto;
    color: #333;
    border: 1px solid rgba(131, 45, 112, 0.1);
    position: relative;

}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #832D70, #591667);
    border-radius: 16px 16px 0 0;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 26px;
    color: #2d3748;
    margin-bottom: 6px;
    font-weight: 700;
    background: linear-gradient(135deg, #832D70, #591667);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-section p {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* First Row - Name, Email, Phone */
.form-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Second Row - Message */
.form-row-middle {
    margin: 0;
}

/* Third Row - Submit Button */
.form-row-bottom {
    text-align: center;
    margin-top: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    display: block;
    margin-bottom: 5px;
}

.required {
    color: #e53e3e;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #832D70;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(131, 45, 112, 0.1);
    transform: translateY(-1px);
}

.form-input:hover, .form-textarea:hover {
    border-color: #cbd5e0;
}

.form-textarea {
    resize: none;
    height: 90px;
    line-height: 1.4;
}

.submit-btn {
    width: 200px;
    height: 46px;
    cursor: pointer;
    border: none;
    border-radius: 23px;
    background: linear-gradient(135deg, #832D70, #591667);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(131, 45, 112, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 45, 112, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn i {
    font-size: 13px;
}

.response-msg {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.response-msg.success {
    background: #f0fff4;
    color: #2d7d32;
    border: 1px solid #c8e6c9;
}

.response-msg.error {
    background: #ffebee;
    color: #c53030;
    border: 1px solid #ffcdd2;
}

/* Loading state */
.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 20px 25px 15px 25px;
        margin: 30px 20px;
        max-width: calc(100% - 40px);
        box-shadow: 0 8px 30px rgba(131, 45, 112, 0.12);
    }

    .contact-form-section h2 {
        font-size: 22px;
    }

    .contact-form-section p {
        margin-bottom: 18px;
    }

    .form-row-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-input, .form-textarea {
        padding: 11px 12px;
        font-size: 13px;
    }

    .form-textarea {
        height: 80px;
    }

    .submit-btn {
        width: 100%;
        max-width: 180px;
        height: 44px;
        font-size: 14px;
    }

    .response-msg {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 18px 20px 12px 20px;
        margin: 20px 15px;
        max-width: calc(100% - 30px);
        box-shadow: 0 6px 25px rgba(131, 45, 112, 0.1);
    }

    .contact-form-section h2 {
        font-size: 20px;
    }

    .contact-form-section p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .form-input, .form-textarea {
        padding: 10px 12px;
    }

    .form-textarea {
        height: 70px;
    }

    .submit-btn {
        height: 42px;
        font-size: 14px;
    }

    .response-msg {
        margin-top: 6px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Enhanced focus styles for accessibility */
.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid #832D70;
    outline-offset: 2px;
}

/* Placeholder styling */
.form-input::placeholder,
.form-textarea::placeholder {
    color: #a0aec0;
    font-size: 13px;
}




        /* ========== POPUP STYLES ========== */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 600px;
            background-color: #fff;
            border: 1px solid #e6e6e6;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            padding: 30px;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.4s ease, transform 0.4s ease;
            border-radius: 10px;
        }

        .popup-close {
            position: absolute;
            top: -15px;
            right: -15px;
            cursor: pointer;
            z-index: 10000;
        }

        .popup-close img {
            width: 25px;
            height: 25px;
        }

        .popup-content h2 {
            margin: 0 0 10px 0;
            font-size: 24px;
            color: #222;
            text-align: center;
        }

        .popup-content p {
            font-size: 16px;
            color: #555;
            text-align: center;
            margin-bottom: 20px;
        }

        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .popup-form input {
            padding: 10px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .popup-form button {
            padding: 10px;
            font-size: 16px;
            background-color: #5f114f;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .popup-form button:hover {
            background-color: #e91e63;
        }

        .show {
            display: none;
            opacity: 1;
        }

        /* ========== SERVICES SECTION ========== */
        .services-section {
            background-color: #fbfeff;
            padding: 60px 20px;
            font-family: 'Poppins', sans-serif;
        }

        .services-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .services-text {
            flex: 1;
            text-align: center;
        }

        .services-text h2 {
            font-size: 28px;
            font-weight: 650;
            color: #000;
            margin-bottom: 10px;
        }

        .services-text p {
            font-size: 14px;
            color: #000;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }

        .services-text a {
            color: #000;
            text-decoration: underline;
            font-weight: bold;
        }

        /* ========== VERTICAL CARDS ========== */
        .vertical-card-container {
            display: flex;
            max-width: 1200px;
            margin: 50px auto;
            gap: 1rem;
            height: 400px;
            font-family: 'Poppins', sans-serif;
            padding: 0 20px;
        }

        .vertical-card {
            position: relative;
            flex: 0.25;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
            transition: all 0.6s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .vertical-card:hover {
            flex: 0.75;
        }

        .vertical-card-overlay {
            position: absolute;
            inset: 0;
            background: transparent;
            z-index: 1;
            transition: background 0.6s ease;
        }

        .vertical-card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .vertical-card-top img {
            max-width: 50px;
            margin-bottom: 10px;
            background-color: white;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.6s ease;
        }

        .vertical-card-bottom {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .vertical-card-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            color: #000;
            transition: all 0.6s ease;
        }

        .vertical-card-text {
            font-size: 14px;
            color: #fff;
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            overflow: hidden;
            margin-top: 5px;
            transition: all 0.6s ease;
        }

        .vertical-card-btn {
            margin-top: auto;
            background-color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .vertical-card-btn svg {
            width: 18px;
            height: 18px;
            stroke: #222;
        }

        .vertical-card:hover .vertical-card-text {
            opacity: 1;
            visibility: visible;
            max-height: 200px;
        }

        .vertical-card:hover .vertical-card-title {
            color: #fff;
        }

        .vertical-card:hover .vertical-card-overlay {
            background: rgba(0,0,0,0.5);
        }

        .vertical-card:hover .vertical-card-btn {
            background-color: rgba(255,255,255,0.8);
        }

        .vertical-card:hover .vertical-card-btn svg {
            stroke: #222;
        }

        .vertical-card:hover .vertical-card-top img {
            background-color: transparent;
        }

        /* ========== WHY CHOOSE US ========== */
        .trusted-section {
            font-family: 'Poppins', sans-serif;
            padding: 60px 20px;
            background: url('images/background2.webp') center/cover no-repeat;
            color: #fff;
            text-align: center;
            position: relative;
        }

        .trusted-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .trusted-content {
            position: relative;
            z-index: 2;
        }

        .trusted-content h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }

        .trusted-content p {
            font-size: 16px;
            opacity: 0.85;
            margin-bottom: 50px;
        }

        .highlight-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .highlight-card {
            flex: 1 1 180px;
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 15px;
            transition: transform 0.4s, box-shadow 0.4s;
            max-width: 200px;
        }

        .highlight-card img {
            width: 86px;
            height: 86px;
            margin-bottom: 15px;
        }

        .highlight-card p {
            font-weight: 600;
            font-size: 16px;
            margin: 0;
        }

        /* ========== SUCCESS IN NUMBERS ========== */
        .success-numbers {
            font-family: 'Poppins', sans-serif;
            padding: 60px 20px;
            background: linear-gradient(135deg, #5f114f, #a92c94);
            color: #fff;
        }

        .success-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .success-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin: 0;
            color: white;
        }

        .success-header p {
            font-size: 16px;
            opacity: 0.8;
            margin-top: 10px;
        }

        .counter-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }

        .counter-card {
            flex: 1 1 220px;
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s;
            max-width: 280px;
        }

        .counter-card div:first-child {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .counter-value {
            font-size: 28px;
            font-weight: 700;
        }

        /* ========== BILLING PROCESS ========== */
        .billing-process {
            font-family: 'Poppins', sans-serif;
            padding: 80px 20px;
            background: #fdf5fb;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .process-container h2 {
            font-size: 2.5rem;
            color: #832D70;
            margin-bottom: 10px;
        }

        .process-container p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 60px;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .step-box {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            flex: 1 1 250px;
            max-width: 300px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards;
        }

        .step-box img {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }

        .step-box h3 {
            color: #832D70;
            margin-bottom: 10px;
        }

        .step-box p {
            color: #555;
            margin: 0;
        }

        /* ========== SPECIALTIES ========== */
        .specialties-section {
            font-family: 'Poppins', sans-serif;
            background: #ffffff;
            padding: 70px 20px;
        }

        .specialties-container {
            max-width: 1200px;
            margin: auto;
        }

        .specialties-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .specialties-header h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #980dad;
            text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }

        .specialties-header p {
            font-size: 1.1rem;
            color: #555;
            max-width: 750px;
            margin: 0 auto;
        }

        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            align-items: start;
            margin-bottom: 60px;
        }

        .specialty-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            border: 1px solid #eee;
            border-radius: 10px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .specialty-item:hover {
            box-shadow: 0 8px 20px rgba(106, 13, 173, 0.15);
            transform: translateY(-3px);
        }

        .spec-icon {
            width: 45px;
            height: 45px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .specialty-item span {
            font-size: 1.05rem;
            color: #6a0dad;
            font-weight: 600;
        }

        .specialties-button {
            text-align: center;
        }

        .specialties-button a {
            background: linear-gradient(135deg, #5f114f, #e91e63);
            color: #fff;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 4px 10px rgba(106,13,173,0.3);
            transition: all 0.3s;
            display: inline-block;
        }

        /* ========== EHR PARTNERS ========== */
        .ehr-partners {
            background: #e2f5f7;
            padding: 80px 20px;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        .ehr-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .ehr-header h2 {
            font-size: 2.2rem;
            color: #5f1496;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .ehr-header p {
            color: #555;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .ehr-carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-bottom: 50px;
        }

        
        .ehr-carousel-track {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
        animation: ehrScrollAnim 25s linear infinite;
        width: 350%; /* Track ki width ko double karein */
        }

        .ehr-card {
            flex: 0 0 auto;
            width: 220px;
            height: 120px;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }

        .ehr-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .ehr-card img {
            width: 180px;
            height: auto;
            object-fit: contain;
        }

        .ehr-button {
            text-align: center;
        }

        .ehr-button a {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #5f114f, #e91e63);
            color: white;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(95, 20, 150, 0.3);
            transition: all 0.3s ease;
        }
        @keyframes ehrScrollAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

        /* ========== PROVIDER SECTION ========== */
        .provider-section {
            position: relative;
            background: url('/images/background2.webp') center/cover no-repeat;
            color: white;
            font-family: 'Poppins', sans-serif;
            padding: 60px 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            margin: 0 20px;
        }

        .provider-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .provider-left {
            flex: 1 1 500px;
            max-width: 600px;
            backdrop-filter: blur(3px);
            z-index: 2;
        }

        .provider-right {
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            gap: 18px;
        }

        .badge-container {
            position: relative;
            height: 180px;
            width: 100%;
            overflow: hidden;
        }

        .badge {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            padding: 16px 26px;
            border-radius: 14px;
            font-size: 1.05rem;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: all 1s ease-in-out;
        }

        .badge i {
            font-size: 1.4rem;
            color: #e69aff;
        }

        .badge.active {
            top: 50%;
            transform: translate(-50%, -50%) scale(1.1);
            opacity: 1;
            z-index: 3;
        }

        .badge.prev {
            top: 15%;
            opacity: 0.5;
            transform: translate(-50%, -50%) scale(0.85);
            z-index: 1;
        }

        .badge.next {
            top: 85%;
            opacity: 0.5;
            transform: translate(-50%, -50%) scale(0.85);
            z-index: 1;
        }

        .badge.hidden {
            opacity: 0;
            z-index: 0;
        }

        .provider-left h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #e500ec;
            border-right: 4px solid #c00043;
            padding-right: 15px;
            margin-bottom: 25px;
            line-height: 1.4;
            text-shadow: -1px -1px 0 #96004b, 1px -1px 0 #4a0050, -1px 1px 0 #4a0050, 1px 1px 0 #4a0050;
        }

        .provider-left ul {
            list-style: none;
            padding: 0;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .provider-left li {
            margin: 10px 0;
            font-size: 1.05rem;
        }

        .provider-left i {
            color: #c084fc;
            margin-right: 8px;
        }

        .provider-button {
            background: linear-gradient(135deg, #5f114f, #e91e63);
            color: white;
            padding: 13px 32px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(95, 20, 150, 0.4);
            transition: all 0.3s ease;
            display: inline-block;
        }

  /* ========== TESTIMONIALS - RESPONSIVE ONLY ========== */
.testimonials-section {
    font-family: 'Poppins', sans-serif;
    padding: 80px 20px;
    background: #f5f5f5;
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #5f114f, #e91e63);
    margin: 15px auto 0;
    border-radius: 2px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 300px;
    perspective: 1200px;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-card {
    position: absolute;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #333;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 25px 30px;
    min-width: 460px;
    max-width: 460px;
    height: 220px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    overflow: visible;
}

.carousel-card.center {
    transform: translateX(0) scale(1.15);
    z-index: 4;
    opacity: 1;
}

.carousel-card.center .text-content {
    opacity: 1;
    transform: translateX(0);
}

.carousel-card.left {
    transform: translateX(-220px) scale(0.9);
    z-index: 3;
    opacity: 0.75;
    pointer-events: none;
}

.carousel-card.right {
    transform: translateX(220px) scale(0.9);
    z-index: 3;
    opacity: 0.75;
    pointer-events: none;
}

.carousel-card.behind-left {
    transform: translateX(-450px) scale(0.8);
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
}

.carousel-card.behind-right {
    transform: translateX(450px) scale(0.8);
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
}

.carousel-card img {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.carousel-card .text-content {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: calc(100% - 160px);
}

.carousel-card .text-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.carousel-card .text-content strong {
    font-weight: 600;
    font-size: 1rem;
    color: #5f114f;
}

.carousel-card.center:hover {
    transform: scale(1.18);
    border-radius: 30px;
}

.carousel-card.center::before,
.carousel-card.center::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
    z-index: 2;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-card.center::before {
    top: -15px;
    background: linear-gradient(to bottom, rgba(95,17,79,0.6), transparent);
}

.carousel-card.center::after {
    bottom: -15px;
    background: linear-gradient(to top, rgba(95,17,79,0.6), transparent);
}

.carousel-card.center:hover::before,
.carousel-card.center:hover::after {
    opacity: 1;
}

/* ========== RESPONSIVE BREAKPOINTS ONLY ========== */

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    
    .testimonials-section h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .carousel-wrapper {
        height: 280px;
        padding: 0 15px;
    }
    
    .carousel-card {
        min-width: 380px;
        max-width: 380px;
        height: 200px;
        padding: 20px 25px;
    }
    
    .carousel-card img {
        width: 100px;
        height: 100px;
        margin-right: 25px;
    }
    
    .carousel-card .text-content {
        max-width: calc(100% - 125px);
    }
    
    .carousel-card .text-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .carousel-card.left {
        transform: translateX(-180px) scale(0.9);
    }
    
    .carousel-card.right {
        transform: translateX(180px) scale(0.9);
    }
    
    .carousel-card.behind-left {
        transform: translateX(-360px) scale(0.8);
    }
    
    .carousel-card.behind-right {
        transform: translateX(360px) scale(0.8);
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 50px 10px;
    }
    
    .testimonials-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .carousel-wrapper {
        height: 250px;
        padding: 0 10px;
    }
    
    .carousel-card {
        min-width: 320px;
        max-width: 320px;
        height: 180px;
        padding: 15px 20px;
        border-radius: 15px;
    }
    
    .carousel-card img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
        border-radius: 12px;
    }
    
    .carousel-card .text-content {
        max-width: calc(100% - 100px);
    }
    
    .carousel-card .text-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .carousel-card .text-content strong {
        font-size: 0.9rem;
    }
    
    .carousel-card.left {
        transform: translateX(-150px) scale(0.85);
    }
    
    .carousel-card.right {
        transform: translateX(150px) scale(0.85);
    }
    
    .carousel-card.behind-left {
        transform: translateX(-300px) scale(0.7);
    }
    
    .carousel-card.behind-right {
        transform: translateX(300px) scale(0.7);
    }
}

/* Mobile Portrait (under 576px) */
@media (max-width: 575px) {
    .testimonials-section {
        padding: 40px 8px;
    }
    
    .testimonials-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .carousel-wrapper {
        height: 220px;
        padding: 0 5px;
    }
    
    .carousel-card {
        min-width: 280px;
        max-width: 280px;
        height: 160px;
        padding: 12px 15px;
        border-radius: 12px;
    }
    
    .carousel-card img {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        border-radius: 10px;
    }
    
    .carousel-card .text-content {
        max-width: calc(100% - 75px);
    }
    
    .carousel-card .text-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .carousel-card .text-content strong {
        font-size: 0.8rem;
    }
    
    .carousel-card.left {
        transform: translateX(-120px) scale(0.8);
    }
    
    .carousel-card.right {
        transform: translateX(120px) scale(0.8);
    }
    
    .carousel-card.behind-left {
        transform: translateX(-240px) scale(0.6);
    }
    
    .carousel-card.behind-right {
        transform: translateX(240px) scale(0.6);
    }
}

/* Small Mobile (under 400px) */
@media (max-width: 400px) {
    .testimonials-section {
        padding: 30px 5px;
    }
    
    .testimonials-section h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .carousel-wrapper {
        height: 200px;
        padding: 0;
    }
    
    .carousel-card {
        min-width: 250px;
        max-width: 250px;
        height: 140px;
        padding: 10px 12px;
        border-radius: 10px;
    }
    
    .carousel-card img {
        width: 50px;
        height: 50px;
        margin-right: 12px;
        border-radius: 8px;
    }
    
    .carousel-card .text-content {
        max-width: calc(100% - 62px);
    }
    
    .carousel-card .text-content p {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    
    .carousel-card .text-content strong {
        font-size: 0.75rem;
    }
    
    .carousel-card.left {
        transform: translateX(-100px) scale(0.75);
    }
    
    .carousel-card.right {
        transform: translateX(100px) scale(0.75);
    }
    
    .carousel-card.behind-left {
        transform: translateX(-200px) scale(0.5);
    }
    
    .carousel-card.behind-right {
        transform: translateX(200px) scale(0.5);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .carousel-card.center:hover {
        transform: scale(1.15);
        border-radius: 20px;
    }
}

        /* ========== CERTIFICATIONS ========== */
        .certifications-section {
            font-family: 'Poppins', sans-serif;
            padding: 50px 20px;
            overflow: visible;
        }

        .cert-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, rgba(95, 17, 79, 0.9), rgba(43, 0, 75, 0.9)), url('images/web-certification-section-1.png') center/cover no-repeat;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
            padding: 60px 40px;
            color: #fff;
            position: relative;
            overflow: visible;
        }

        .cert-text {
            flex: 1;
            max-width: 550px;
            z-index: 2;
        }

        .cert-text h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #d66eff, #8a0f78);
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            border-right: 4px solid #8a0f78;
            text-shadow: -1px -1px 0 #ee00ff, 1px -1px 0 #4a0050, -1px 1px 0 #140015, 1px 1px 0 #4a0050;
        }

        .cert-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #f0f0f0;
            margin: 0;
        }

        .cert-badge {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            z-index: 3;
            overflow: visible;
            position: relative;
        }

        .cert-badge img {
            width: 420px;
            max-width: 100%;
            transform: translateX(-60px);
            transition: transform 0.3s ease;
            filter: drop-shadow(0px 8px 20px rgba(0,0,0,0.4));
        }

        .cert-badge img:hover {
            transform: translateX(-60px) scale(1.05);
        }

        /* ========== GOOGLE TESTIMONIALS ========== */
        .google-testimonials {
            position: relative;
            width: 100%;
            padding: 80px 0;
            background: linear-gradient(180deg,#e2f1f1 0%,#dee8fc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        .testimonial-carousel {
            position: relative;
            width: 90%;
            max-width: 900px;
            height: 320px;
            perspective: 1500px;
        }

        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 12px 25px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 35px;
            text-align: center;
            transition: all 1s cubic-bezier(0.25, 1, 0.3, 1);
            border: 1.5px solid rgba(0,74,173,0.2);
            opacity: 1;
        }

        .testimonial-card.active {
            transform: translateY(0) scale(1);
            z-index: 3;
            box-shadow: 0 15px 35px rgba(0,74,173,0.25);
        }

        .testimonial-card.mid {
            transform: translateY(30px) scale(0.97);
            z-index: 2;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .testimonial-card.back {
            transform: translateY(60px) scale(0.94);
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .testimonial-card img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
            transition: transform 0.3s;
        }

        .testimonial-card h3 {
            color: #004aad;
            margin-bottom: 4px;
            font-size: 1.1em;
            font-weight: 600;
        }

        .testimonial-card .stars {
            color: #f4b400;
            margin-bottom: 12px;
            font-size: 1.1em;
        }

        .testimonial-card p {
            color: #555;
            font-size: 0.9em;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .testimonial-card a {
            color: #004aad;
            text-decoration: none;
            font-weight: 500;
        }

        .testimonial-card.active:hover {
            animation: borderGlow 2.5s infinite alternate ease-in-out;
            box-shadow: 0 0 25px rgba(0,74,173,0.4), 0 0 60px rgba(0,74,173,0.25);
            border: 3px solid #004aad;
            transform: translateY(-5px) scale(1.02);
        }

        /* ========== NATIONWIDE BILLING ========== */
        .nationwide-billing {
            font-family: 'Poppins', sans-serif;
            padding: 80px 20px;
            background: url('/States-bg.jpg') no-repeat center center/cover;
            position: relative;
            color: #fff;
            overflow: hidden;
        }

        .nationwide-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .nationwide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
        }

        .nationwide-content h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #5f114f, #e91e63);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .nationwide-content p {
            font-size: 1.15rem;
            color: #f0f0f0;
            margin-bottom: 50px;
            line-height: 1.6;
        }

        .state-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .state-btn {
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            background: linear-gradient(135deg, #5f114f, #e91e63);
            color: #fff;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(40px);
            display: inline-block;
        }

        .state-btn:hover {
            transform: scale(1);
            color: white;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 15px 30px rgba(0, 0, 0, 0.1), 0 25px 50px rgba(233, 30, 99, 0.05);
        }

        .state-btn.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }

        /* ========== KNOWLEDGE CENTER ========== */
        .knowledge-center {
            font-family: 'Poppins', sans-serif;
            padding: 50px 20px;
            background: #faf4f4;
            text-align: center;
        }

        .knowledge-center h2 {
            color: #5f114f;
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
        }

        .knowledge-center h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #5f114f, #e91e63);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .knowledge-center p.intro {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 50px;
        }

        .kc-card-wrapper {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .kc-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .kc-card {
            background: #fff;
            flex: 1 1 30%;
            min-width: 280px;
            max-width: 350px;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }

        .kc-card .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            width: 100%;
            height: 160px;
        }

        .kc-card .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.5s ease;
            display: block;
        }

        .kc-card .img-container .hover-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            color: #fff;
            font-size: 1.6rem;
            font-weight: 600;
            text-align: center;
            text-shadow: 0 2px 15px rgba(0,0,0,0.7);
            padding: 12px 20px;
            border-radius: 25px;
            background: rgba(95, 17, 79, 0.85);
            opacity: 0;
            transition: all 0.4s ease;
            pointer-events: none;
        }

        .kc-card:hover .img-container .hover-title {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 8px 25px rgba(143, 0, 255, 0.5);
        }

        .kc-card h3 {
            color: #5f114f;
            font-size: 1.4rem;
            margin: 15px 0 10px;
            transition: opacity 0.4s ease;
        }

        .kc-card:hover h3 {
            opacity: 0;
        }

        .kc-card p {
            color: #666;
            margin-bottom: 15px;
            text-align: justify;
        }

        .kc-card a.button {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 25px;
            background: linear-gradient(135deg, #5f114f, #e91e63);
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .kc-card a.button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.2);
        }

        .kc-card:hover img {
            transform: scale(1.08);
        }

        .kc-card::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            border-right: 4px solid rgba(95, 17, 79, 0.7);
            border-bottom: 4px solid rgba(95, 17, 79, 0.7);
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .kc-card:hover::after {
            opacity: 1;
        }

        /* ========== BLOG SECTION ========== */
        .blog-section {
            background: #f9fbff;
            padding: 80px 20px;
            font-family: 'Segoe UI', Arial, sans-serif;
            color: #222;
            overflow: hidden;
        }

        .blog-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .blog-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin: 0;
            color: #1b3a57;
        }

        .blog-header p {
            font-size: 18px;
            color: #555;
            margin-top: 10px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .blog-article {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all .8s;
        }

        .blog-article a {
            display: block;
            overflow: hidden;
            text-decoration: none;
        }

        .blog-article img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            transition: transform .6s;
        }

        .blog-content {
            padding: 24px;
        }

        .blog-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: #1b3a57;
        }

        .blog-content h3 a {
            color: inherit;
            text-decoration: none;
        }

        .blog-date {
            font-size: 13px;
            color: #888;
            margin-bottom: 10px;
        }

        .blog-content p {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 16px;
        }

        .blog-content a.read-more {
            color: #0074cc;
            font-weight: 600;
            text-decoration: none;
        }

       /* ========== COMPACT PROFESSIONAL FOOTER ========== */

.footer {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 50px 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    box-sizing: border-box;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subtle Background Effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 2;
}

/* Compact Footer Columns */
.footer-column {
    flex: 1 1 200px;
    min-width: 180px;
    margin-bottom: 25px;
}

/* Professional Typography */
.footer h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f1f5f9;
    position: relative;
    padding-bottom: 8px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

.footer p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #cbd5e1;
}

/* Compact Links */
.footer a {
    display: block;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 6px;
}

.footer a:hover {
    color: #3b82f6;
    transform: translateX(3px);
}

/* Contact Info */
.footer-column p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Compact Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Compact Newsletter Form */
.footer form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

#emailInput {
    flex: 1;
    min-width: 160px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

#emailInput::placeholder {
    color: #94a3b8;
}

#emailInput:focus {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
}

.subscribe-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background: #3b82f6;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Success Message */
#success-message {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Compact Footer Bottom */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: #94a3b8;
}

#yearNow {
    color: #3b82f6;
    font-weight: 600;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .footer {
        padding: 40px 25px 20px;
        gap: 25px;
    }
    
    .footer-column {
        flex: 1 1 160px;
        min-width: 160px;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .footer {
        padding: 30px 20px 15px;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-column {
        flex: 1 1 100%;
        margin-bottom: 0;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer a:hover {
        transform: translateX(0);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer form {
        flex-direction: column;
        align-items: center;
    }
    
    #emailInput {
        width: 100%;
        max-width: 250px;
    }
    
    .subscribe-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Small Mobile (under 576px) */
@media (max-width: 575px) {
    .footer {
        padding: 25px 15px 15px;
        gap: 20px;
    }
    
    .footer h2 {
        font-size: 1.6rem;
    }
    
    .footer h3 {
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        margin-top: 25px;
        padding-top: 12px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer a,
    .social-icon,
    .subscribe-btn {
        transition: none;
    }
    
    .footer a:hover,
    .social-icon:hover,
    .subscribe-btn:hover {
        transform: none;
    }
}
        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes ehrScrollAnim {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        @keyframes borderGlow {
            0% { border-color: rgba(0,74,173,0.4); }
            100% { border-color: #004aad; }
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blinkCaret {
            0%, 100% { border-color: transparent; }
            50% { border-color: #8a0f78; }
        }

        /* ========== RESPONSIVE STYLES ========== */
        @media (max-width: 1200px) {
            .mega {
                width: 700px;
                left: -150px;
            }
            
            .mega-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .vertical-card-container {
                height: 350px;
            }
            
            .cert-text h2 {
                font-size: 2.5rem;
            }
            
            .cert-badge img {
                width: 350px;
            }
        }

        @media (max-width: 992px) {
        .navbar {
            flex-wrap: wrap;
        }
        .nav-links {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .nav-links.active {
            display: flex;
            max-height: 500px;
            overflow-y: auto;
        }
        .mobile-menu-btn {
            display: block;
        }

        .dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropbtn {
  background-color: #ffffff;
  text-align: center;
align-items: center;
  color: #333;
  padding: 12px 15px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;

  border-bottom: 1px solid #ddd;
  border-radius: 2px;
}

.dropbtn:hover {
  background-color: #eee;
}

.dropbtn span {
  font-size: 10px;
  float: center;
  margin-top: 5px;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  box-shadow: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ddd;
}

.dropdown-content a {
  color: #333;
  padding: 12px 15px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #e9fcff;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

/* Show the dropdown menu on click */
.dropdown-content.active {
  display: block;
}
        .dropdown-content, .mega {
            position: static;
            box-shadow: none;
            border-radius: 0;
            width: 100%;
            padding: 0;
            opacity: 1;
            transform: none;
            display: none;
            max-height: 200px;
            overflow-y: auto;
            background-color: #f7f7f7;
            border-top: 1px solid #ddd;
            margin-left: -20px; /* adjust this value to match the navbar padding */
            margin-right: -20px; /* adjust this value to match the navbar padding */
            padding-left: 20px; /* adjust this value to match the navbar padding */
            padding-right: 20px; /* adjust this value to match the navbar padding */
              }
            .dropdown-content.active, .mega.active {
                display: block;
            }
            .mega-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .dropdown-content ul, .mega ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            .dropdown-content li, .mega li {
                border-bottom: 1px solid #ddd;
            }
            .dropdown-content li:last-child, .mega li:last-child {
                border-bottom: none;
            }
            .dropdown-content a, .mega a {
                display: block;
                text-decoration: none;
                color: #333;
                padding: 12px 0;
                font-size: 14px; /* adjust this value to make the text size smaller */
            }
            .dropdown-content a:hover, .mega a:hover {
                background-color: #eee;
            }


            .vertical-card-container {
                flex-direction: column;
                height: auto;
            }
            
            .vertical-card {
                flex: 1 1 auto;
                height: 200px;
                margin-bottom: 20px;
            }
            
            .vertical-card:hover {
                height: 300px;
            }
            
            .vertical-card-text {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
            }
            
            .provider-content {
                flex-direction: column;
            }
            
            .provider-right {
                align-items: center;
                margin-top: 30px;
            }
            
            .badge-container {
                height: 220px;
            }
            
            .carousel-card {
                min-width: 300px;
                max-width: 300px;
                height: 180px;
                padding: 15px 20px;
            }
            
            .carousel-card img {
                width: 80px;
                height: 80px;
                margin-right: 15px;
            }
            
            .carousel-card .text-content {
                max-width: calc(90% - 90px);
            }
            
            .carousel-card.left, .carousel-card.right,
            .carousel-card.behind-left, .carousel-card.behind-right {
                display: none;
            }
            
            .cert-container {
                flex-direction: column;
                text-align: center;
                padding: 50px 30px;
            }
            
            .cert-text {
                max-width: 100%;
                margin-bottom: 30px;
            }
            
            .cert-text h2 {
                font-size: 2.4rem;
                border: none;
                white-space: normal;
            }
            
            .cert-badge img {
                width: 320px;
                transform: none;
            }
            
            .testimonial-carousel {
                height: 380px;
            }
            
            .testimonial-card {
                padding: 25px;
            }
            
            .state-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .state-btn {
                width: 80%;
                text-align: center;
            }
            
            .kc-cards {
                flex-direction: column;
                gap: 30px;
                align-items: center;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .footer {
                padding: 50px 20px;
            }
            
            .footer-column {
                flex: 1 1 100%;
                min-width: auto;
            }
        }

        @media (max-width: 768px) {
        .top-bar {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
            
            .video-section {
                height: 50vh;
            }
            
            .services-text h2 {
                font-size: 1.8rem;
            }
            
            .trusted-content h2 {
                font-size: 1.8rem;
            }
            
            .success-header h2 {
                font-size: 1.8rem;
            }
            
            .process-container h2 {
                font-size: 1.8rem;
            }
            
            .specialties-header h2 {
                font-size: 1.8rem;
            }
            
            .ehr-header h2 {
                font-size: 1.8rem;
            }
            
            .provider-left h2 {
                font-size: 1.6rem;
                line-height: 1.4;
            }
            
            .testimonials-section h2 {
                font-size: 1.8rem;
            }
            
            .nationwide-content h2 {
                font-size: 1.8rem;
            }
            
            .knowledge-center h2 {
                font-size: 1.8rem;
            }
            
            .blog-header h2 {
                font-size: 1.8rem;
            }
            
            .highlight-card {
                max-width: 100%;
            }
            
            .counter-card {
                max-width: 100%;
            }
            
            .step-box {
                max-width: 100%;
            }
            
            .specialty-item {
                padding: 12px 15px;
            }
            
            .specialty-item span {
                font-size: 0.95rem;
            }
            
            .spec-icon {
                width: 38px;
                height: 38px;
            }
            
            .ehr-card {
                width: 160px;
                height: 100px;
            }
            
            .ehr-card img {
                width: 130px;
            }
            
            .provider-section {
                margin: 0 10px;
                padding: 50px 20px;
            }
            
            .carousel-wrapper {
                height: 220px;
            }
            
            .testimonial-carousel {
                height: 420px;
            }
            
            .state-btn:hover {
                transform: scale(0.95);
            }
        }

        @media (max-width: 480px) {
            
            .navbar {
                padding: 10px 15px;
            }
            .cta-button {
                padding: 8px 18px;
                font-size: 14px;
            }
            
            .contact-form-section {
                padding: 20px 15px;
            }
            
            .form-group {
                min-width: 100%;
            }
            
            .submit-btn {
                width: 100%;
            }
            
            .popup {
                width: 90%;
                padding: 20px;
            }
            
            .services-section, .trusted-section, .success-numbers, 
            .billing-process, .specialties-section, .ehr-partners,
            .testimonials-section, .certifications-section, 
            .google-testimonials, .nationwide-billing, 
            .knowledge-center, .blog-section {
                padding: 40px 15px;
            }
            
            .vertical-card-content {
                padding: 15px;
            }
            
            .vertical-card-title {
                font-size: 18px;
            }
            
            .highlight-card {
                padding: 15px;
            }
            
            .highlight-card img {
                width: 60px;
                height: 60px;
            }
            
            .counter-card {
                padding: 20px;
            }
            
            .counter-value {
                font-size: 24px;
            }
            
            .step-box {
                padding: 20px;
            }
            
            .step-box img {
                width: 50px;
                height: 50px;
            }
            
            .specialties-grid {
                grid-template-columns: 1fr;
            }
            
            .ehr-carousel-track {
                gap: 20px;
            }
            
            .ehr-card {
                width: 140px;
                height: 80px;
            }
            
            .ehr-card img {
                width: 110px;
            }
            
            .provider-button, .ehr-button a, .specialties-button a {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .carousel-card {
                min-width: 250px;
                max-width: 250px;
                height: 160px;
                padding: 10px 15px;
            }
            
            .carousel-card img {
                width: 60px;
                height: 60px;
                margin-right: 10px;
            }
            
            .carousel-card .text-content p {
                font-size: 0.9rem;
            }
            
            .cert-container {
                padding: 30px 20px;
            }
            
            .cert-text h2 {
                font-size: 2rem;
            }
            
            .cert-text p {
                font-size: 1rem;
            }
            
            .cert-badge img {
                width: 250px;
            }
            
            .testimonial-card {
                padding: 20px;
            }
            
            .testimonial-card img {
                width: 50px;
                height: 50px;
            }
            
            .state-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .kc-card {
                padding: 15px;
            }
            
            .kc-card .img-container {
                height: 140px;
            }
            
            .kc-card h3 {
                font-size: 1.2rem;
            }
            
            .blog-article img {
                height: 180px;
            }
            
            .blog-content {
                padding: 20px;
            }
            
            .blog-content h3 {
                font-size: 18px;
            }
            
            .footer {
                padding: 40px 15px;
            }
        }

        