body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e1f0f8;
}

/* ================================== */
/* ========== TOP BAR CSS =========== */
/* ================================== */
.top-bar {
    position: relative;
    height: auto;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.top-bar .logo h1 {
    margin: 0;
    color: #021024;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
}

/* Purane .top-bar-item ko isse replace karein */
.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Items ko apne andar left align rakhega */
    flex-wrap: nowrap;
}

/* Agar aapko pixels mein gap dena hai toh ye CSS use karein */
.top-bar .d-flex.gap-4 {
    gap: 70px !important;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Updated Icon Color */
.top-bar .top-bar-icon i {
    margin: 0;
    font-size: 35px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #021024;
    font-size: 16px;
    font-weight: 600;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #021024;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 30px;
    }
}

@media (min-width: 1200px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar {
        padding: 15px;
        text-align: center;
    }

    .top-bar .logo {
        text-align: center;
        justify-content: center;
    }

    .top-bar .row>div {
        width: 100%;
    }

    .top-bar .top-bar-item {
        justify-content: center;
        margin-bottom: 15px;
    }

    .top-bar .top-bar-item:last-child {
        margin-bottom: 0;
    }
}

/* ================================== */
/* =========== NAV BAR CSS ========== */
/* ================================== */
.nav-bar {
    position: relative;
    transition: .3s;
    width: 100%;
    z-index: 9999;
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-bar .navbar {
    height: 100%;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA) !important;
    padding: 10px 15px;
}

.navbar-dark .navbar-nav {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #e1f0f8;
    transition: none;
}

/* ================================== */
/* ======== NEW DROPDOWN CSS ======== */
/* ================================== */
.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 8px;
    background: #e1f0f8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Premium shadow */
    padding: 10px 0;
}

.nav-bar .dropdown-item {
    color: #021024;
    font-weight: 500;
    padding: 10px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-bar .dropdown-item:hover,
.nav-bar .dropdown-item.active {

    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff !important;
    padding-left: 25px;

}

/* Desktop ke liye pure CSS hover logic (JS ki zaroorat nahi) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInUP 0.3s forwards;
    }

    .nav-bar {
        padding: 0 30px;
    }

    .nav-bar.nav-sticky {
        padding: 0;
    }

    .nav-bar .navbar {
        padding: 15px 20px;
    }

    .nav-bar .navbar-brand {
        display: none;
    }

    .nav-bar a.nav-link {
        padding: 8px 12px !important;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 500;
    }
}

/* Dropdown smooth fade-in animation */
@keyframes fadeInUP {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1200px) {
    .nav-bar {
        padding: 0 60px;
    }

    .nav-bar a.nav-link {
        padding: 8px 15px !important;
    }
}

/* Mobile View Fixes */
@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }

    .nav-bar a.nav-link {
        padding: 10px 5px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-bar .navbar-nav {
        margin-top: 15px;
    }

    /* Mobile dropdown UI fixed */
    .nav-bar .dropdown-menu {
        box-shadow: none;
        background: #021024;
        /* Darker shade of blue for contrast */
        margin-left: 0;
        margin-right: 0;
        border-radius: 5px;
    }

    .nav-bar .dropdown-item {
        color: #ffffff;
    }

    .nav-bar .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 20px;
    }
}


/* ================================== */
/* ========= Hero Section =========== */
/* ================================== */

.hero-section {
    position: relative;
    padding: 140px 0;
    background: url('https://elintrcm.com/wp-content/uploads/2024/09/WhatsApp-Image-2024-09-30-at-22.52.43_2b7279d2.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 16, 36, 0.82);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h5 {
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #7DA0CA;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ========== UPGRADED BUTTONS ========== */
.btn-upgrade {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff !important;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.btn-upgrade:hover {
    background: #ffffff !important;
    border: 2px solid #5483B3;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(135deg, #052659, #5483B3, #7DA0CA) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* ========== WHY TRUST SECTION ========== */
.trust-section {
    padding: 90px 0;
}

.trust-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.trust-text {
    flex: 1;
    text-align: left;
}

.trust-text h2 {
    color: #052659;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 25px;
}

.trust-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.trust-image {
    flex: 1;
    position: relative;
}

.trust-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overlap-btn-box {
    margin-top: -30px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-demo {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff !important;
    /* Text white kar diya takay gradient par nazar aaye */
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-block;
    transition: 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-demo:hover {
    background: #ffffff;
    color: #052659 !important;
    transform: scale(1.05);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 991px) {
    .trust-container {
        flex-direction: column;
        text-align: center;
    }

    .trust-text {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .top-bar-item {
        justify-content: center;
        margin-top: 15px;
    }

    .logo {
        text-align: center;
    }
}

/*========================================= */
/* ========= services-container =========== */
/* ======================================== */
/* CSS specifically for this section */
.rcm-services-container {
    background: #e1f0f8;
    font-family: 'Poppins', sans-serif;
    padding: 60px 0;
}

.rcm-main-title {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 10px;
    color: #052659;
}

.rcm-service-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #7DA0CA;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.rcm-img-box {
    position: relative;
    height: 240px;
}

.rcm-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rcm-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #052659;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rcm-body {
    padding: 25px;
}

.rcm-card-title {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 15px;
    color: #021024;
}

.rcm-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: #052659;
    margin-bottom: 20px;
}

.rcm-key-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

/* --- Updated Link & Button Style --- */
.rcm-key-btn {
    background: #e1f0f8;
    border: 1.5px solid #7DA0CA;
    border-radius: 10px;
    padding: 0;
    /* Padding removed to let <a> fill the space */
    font-size: 12px;
    font-weight: 500;
    height: 55px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Essential Link Fix */
.rcm-key-btn a {
    text-decoration: none !important;
    color: #052659 !important;
    /* Forces your original color */
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 12px;
}

.rcm-key-btn i {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
}

.rcm-key-btn:hover {
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #052659, #5483B3, #7DA0CA) border-box;
    border: 2px solid transparent;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* --- Learn More Button --- */
.rcm-btn-learn {
    background: linear-gradient(to right, #ffffff 50%, #052659 50%, #5483B3, #7DA0CA);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff !important;
    text-align: center;
    display: block;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none !important;
    margin-top: 20px;
    border: 2px solid #5483B3;
    transition: all 0.5s ease-out;
}

.rcm-btn-learn:hover {
    background-position: left bottom;
    background-image: linear-gradient(135deg, #052659, #5483B3, #7DA0CA) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    transform: translateY(-2px);
}

/* ================================================================================== */
/* ========= Why Should Medvocate Solution Be Your Revenue Cycle Solution =========== */
/* ================================================================================== */

.elint-why-section {
    /* 'background-color' ko hata kar sirf 'background' likho */
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    font-family: 'Poppins', sans-serif;
    padding: 70px 0;
    /* Thodi spacing bhi add kar lo taaki content daba hua na lage */
    color: #ffffff;
    /* Gradient dark hai, isliye text white kar diya taaki nazar aaye */
}

/* Agar tum chahte ho ke text color gradient ke upar saaf dikhe */
.elint-why-section .feature-heading {
    color: #e1f0f8;
    font-weight: 700;
}

.elint-why-section .feature-bullets li {
    color: #e1f0f8;
}

.elint-main-title {
    color: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    /* Image wala bright green */
    font-weight: 800;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.feature-heading {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-subtext {
    font-size: 14px;
    color: #e1f0f8;
    margin-bottom: 10px;
}

.feature-bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 13.5px;
    color: #e1f0f8;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Chota sa bullet point icon image jaisa banane ke liye */
.feature-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e1f0f8;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.rounded-custom {
    border-radius: 20px;
}

.elint-image-wrapper img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .elint-main-title {
        font-size: 22px;
    }

    .feature-heading {
        font-size: 16px;
    }

    .elint-image-wrapper img {
        max-height: 400px;
    }
}

/* ================================== */
/* ========== Experience Innovative Solutions With ElintRCM =========== */
/* ================================== */

.elint-innovative-section {
    background-color: #e1f0f8;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.innovative-title {
    font-weight: 800;
    font-size: 34px;
    /* Thoda bara kiya professional look ke liye */
    color: #052659;
    line-height: 1.2;
}

.innovative-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.innovative-list li {
    display: flex;
    align-items: flex-start;
    /* Multi-line text ke liye zaroori hai */
    margin-bottom: 16px;
    font-size: 15px;
    color: #052659;
    line-height: 1.6;
}

.innovative-list i {
    /* Gradient Icon Logic */
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    /* Text ke sath align karne ke liye */
    display: inline-block;
    flex-shrink: 0;
    /* Icon ko chota hone se rokta hai */
}

/* --- Button Styling --- */
.btn-innovative-demo {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    border-radius: 50px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff !important;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(5, 38, 89, 0.2);
    cursor: pointer;
}

.btn-innovative-demo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(5, 38, 89, 0.3);
    filter: brightness(1.1);
}

.innovative-img-box img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.innovative-img-box:hover img {
    transform: scale(1.02);
    /* Halka sa zoom effect */
}

/* Mobile View Fix */
@media (max-width: 991px) {
    .innovative-title {
        font-size: 26px;
        text-align: center;
        margin-top: 20px;
    }

    .innovative-list li {
        font-size: 14px;
    }

    .btn-innovative-demo {
        display: block;
        width: 100%;
    }

    .innovative-img-box {
        text-align: center;
    }
}

/* ================================== */
/* ========== Faqs Questions =========== */
/* ================================== */

/* Wrapper & Layout */
.faq-wrapper {
    background-color: #e1f0f8;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    background: #052659;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
}

/* Desktop Vertical Divider Line */
@media (min-width: 769px) {
    .faq-grid::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1.5px;
        background: #7DA0CA;
        transform: translateX(-50%);
        opacity: 0.4;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-grid::after {
        display: none;
    }
}

/* FAQ Item Card */
.faq-item {
    border: 1px solid #7DA0CA;
    transition: all 0.3s ease;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Question Section */
.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #021024;
    transition: all 0.3s ease;
    outline: none;
}

.icon {
    margin-right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #052659;
    transition: transform 0.3s ease, color 0.3s ease;
    min-width: 20px;
    text-align: center;
}

/* --- Answer Section (The Fix) --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

.answer-content {
    /* Top padding ko 10px kiya taake header se door rahay */
    padding: 10px 20px 25px 55px;
    color: #4a5568;
    /* Thora soft color reading ke liye behtar hai */
    line-height: 1.6;
    font-size: 14px;
}

/* --- Hover & Active States --- */

/* Hover state logic */
.faq-item:hover {
    border-color: #052659;
}

.faq-item:hover .faq-question {
    background: linear-gradient(135deg, #052659, #5483B3);
    color: #ffffff;
}

.faq-item:hover .icon {
    color: #ffffff;
}

/* Active (Open) state logic */
.faq-item.active {
    border-color: #052659;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #052659, #5483B3);
    color: #ffffff;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Adjust based on content length */
}

/* ================================== */
/* ========== Client Testimonials =========== */
/* ================================== */

.elint-testimonials-wrapper {
    background-color: #e1f0f8;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.testimonials-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 80px;
    color: #052659;
}

/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 60px;
    /* Space for profile images */
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #7DA0CA;
    border-radius: 20px;
    padding: 50px 30px 40px;
    flex: 0 0 calc(44% - 15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Profile Image Styling */
.profile-img {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.profile-img img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 6px solid #e1f0f8;
    object-fit: cover;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Gradient Stars */
.stars {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    margin-bottom: 12px;
}

.client-name {
    font-size: 20px;
    font-weight: 700;
    color: #021024;
    margin-top: 10px;
}

.client-role {
    font-size: 14px;
    color: #052659;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #052659;
    line-height: 1.7;
    font-size: 15px;
    max-width: 90%;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #5483B3;
    color: #052659;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: white;
    border-color: transparent;
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

/* Dots Styling */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #7DA0CA;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    width: 30px;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .nav-btn {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }
}

/* ================================== */
/* ========== Contact us =========== */
/* ================================== */

.contact-wrapper {
    background-color: #e1f0f8;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contact-form-content h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #052659;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.full-width {
    grid-column: span 2;
}

/* FIXED INPUT FIELDS */
.input-field {
    width: 100%;
    padding: 15px 20px;
    background-color: #e1f0f8;
    border: 2px solid #7DA0CA;
    border-radius: 12px;
    font-size: 15px;
    color: #052659;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-field:focus {
    background-color: #ffffff;
    border: 2px solid #5483B3;
    box-shadow: 0 5px 15px rgba(84, 131, 179, 0.15);
}

textarea.input-field {
    height: 120px;
    resize: none;
}

.submit-btn {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}


/* ================================== */
/* ========== Footer =========== */
/* ================================== */

.main-footer {
    /* Aapka bataya hua gradient */
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 80px 20px 30px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr 1.2fr;
    gap: 40px;
}

/* Column Styles */
.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-col p {
    line-height: 1.6;
    font-size: 15px;
    opacity: 0.9;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Logo ko white karne ke liye */
}

/* List Styles */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Contact Info Styles */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    opacity: 0.9;
}

.contact-info i {
    margin-top: 4px;
    font-size: 16px;
}

/* Copyright Section */
.footer-bottom {
    max-width: 1250px;
    margin: 60px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-footer {
        padding: 50px 20px 20px;
    }
}

.grid-section {
    padding: 0;
    background: #fff;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.grid-block {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block {
    /* 'background-color' ki jagah sirf 'background' ya 'background-image' use karein */
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.text-block p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: 300;
}

.img-block {
    background-size: cover;
    background-position: center;
}

.img-1 {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1200&q=80');
}

.img-2 {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1200&q=80');
}

.img-3 {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80');
}

/* ========== CORE VALUES ========== */
.core-values-section {

    padding: 70px 0;
    border-top: 1px solid #eee;
}

.value-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.value-icon {
    font-size: 45px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card h3 {
    color: #0d3441;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
/* ========== RESPONSIVENESS ========== */

.grid-section {
    padding: 0;
    background: #fff;
}

.grid-wrapper {
    display: flex;
    flex-wrap: wrap; /* Mobile responsiveness ke liye */
    overflow: hidden;
}

/* Row-reverse class for alternating blocks */
.row-reverse {
    flex-direction: row-reverse;
}

.grid-block {
    flex: 1; /* 50% width on desktop */
    min-width: 50%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.text-block p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: 400;
}

.img-block {
    background-size: cover;
    background-position: center;
}

/* --- Responsive Media Query --- */
.grid-section {
    padding: 0;
    background: #fff;
}

.grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Zig-Zag logic for Desktop */
.row-reverse {
    flex-direction: row-reverse;
}

.grid-block {
    flex: 0 0 50%; /* Desktop par exact 50% width */
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.text-block p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.img-block {
    background-size: cover;
    background-position: center;
}

/* ========== RESPONSIVE FIX ========== */
.grid-section {
    width: 100%;
    overflow: hidden;
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
}

/* Desktop Zig-Zag Logic */
.row-reverse {
    flex-direction: row-reverse;
}

.grid-block {
    flex: 0 0 50%; /* Desktop par 50% width */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.img-block {
    background-size: cover;
    background-position: center;
}

/* ========== RESPONSIVE MOBILE FIX ========== */
.rcm-grid-section {
    width: 100%;
    background: #fff;
}

.rcm-grid-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
}

/* Desktop Zig-Zag Pattern */
.rcm-reverse {
    flex-direction: row-reverse;
}

.rcm-grid-col {
    flex: 0 0 50%; /* 50% width on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rcm-text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.rcm-img-block {
    background-size: cover;
    background-position: center;
}

/* --- Responsive series fix --- */
.rcm-grid-section {
    width: 100%;
    background: #fff;
}

.rcm-grid-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
}

/* Desktop Zig-Zag Pattern */
.rcm-reverse {
    flex-direction: row-reverse;
}

.rcm-grid-col {
    flex: 0 0 50%; /* 50% width on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rcm-text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.rcm-img-block {
    background-size: cover;
    background-position: center;
}

/* --- Responsive series fix --- */
.rcm-grid-section {
    width: 100%;
    background: #fff;
}

.rcm-grid-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
}

/* Desktop Zig-Zag Pattern */
.rcm-reverse {
    flex-direction: row-reverse;
}

.rcm-grid-col {
    flex: 0 0 50%; /* 50% width on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rcm-text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.rcm-img-block {
    background-size: cover;
    background-position: center;
}

/* --- Responsive series fix --- */
.rcm-grid-section {
    width: 100%;
    background: #fff;
}

.rcm-grid-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
}

/* Desktop Zig-Zag Pattern */
.rcm-reverse {
    flex-direction: row-reverse;
}

.rcm-grid-col {
    flex: 0 0 50%; /* 50% width on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rcm-text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.rcm-img-block {
    background-size: cover;
    background-position: center;
}

/* --- Responsive series fix --- */
.rcm-grid-section {
    width: 100%;
    background: #fff;
}

.rcm-grid-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
}

/* Desktop Zig-Zag Pattern */
.rcm-reverse {
    flex-direction: row-reverse;
}

.rcm-grid-col {
    flex: 0 0 50%; /* 50% width on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rcm-text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
}

.rcm-img-block {
    background-size: cover;
    background-position: center;
}
.rcm-grid-section {
    width: 100%;
    background: #fff;
}

.rcm-grid-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
}

.rcm-grid-section {
    width: 100%;
}

.rcm-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Desktop par 2 columns */
    min-height: 480px;
}

/* --- Zig-Zag Logic for Desktop --- */
/* Har doosri row (2nd, 4th, etc.) mein text pehle aur image baad mein dikhaye */
.rcm-grid-row:nth-child(even) .rcm-img-block {
    grid-column: 2;
}
.rcm-grid-row:nth-child(even) .rcm-text-block {
    grid-column: 1;
    grid-row: 1;
}

.rcm-text-block {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rcm-img-block {
    background-size: cover;
    background-position: center;
}

/* --- Responsive Fix --- */
@media (max-width: 768px) {
    .rcm-grid-row {
        grid-template-columns: 1fr; /* Mobile par sirf 1 column */
        min-height: auto;
    }

    /* Mobile par Zig-Zag khatam kar ke hamesha Image upar rakhega */
    .rcm-grid-row:nth-child(even) .rcm-img-block,
    .rcm-grid-row:nth-child(odd) .rcm-img-block {
        grid-column: 1;
        grid-row: 1; /* Image hamesha pehli line mein */
        min-height: 250px;
    }

    .rcm-grid-row:nth-child(even) .rcm-text-block,
    .rcm-grid-row:nth-child(odd) .rcm-text-block {
        grid-column: 1;
        grid-row: 2; /* Text hamesha doosri line mein */
        padding: 40px 20px;
    }
}
/* ================================================================================== */
/* ========= Specialties =========== */
/* ================================================================================== */

.specialties {
    padding: 80px 5%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.specialties h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #052659;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flip Card Animation */
.flip-card {
    height: 250px;
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.front {
    background: #fff;
}

.front i {
    font-size: 45px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.front h3 {
    font-size: 19px;
    color: #083240;
    font-weight: 600;
}

.back {
    background: #052659;
    color: #fff;
    transform: rotateY(180deg);
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}


/* 1. Hero Section */
.hero {
    /* Colors ko transparent kiya taake image nazar aaye */
    background: linear-gradient(135deg, rgba(5, 38, 89, 0.8), rgba(84, 131, 179, 0.7), rgba(125, 160, 202, 0.6)),
        url('https://elintrcm.com/wp-content/uploads/2025/07/WhatsApp-Image-2025-07-30-at-00.53.45_dc7c68d8.jpg');

    background-size: cover;
    background-position: center;
    padding: 100px 20px 150px;
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 45px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 2. Form Container */
.form-container {
    max-width: 1140px;
    margin: -80px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

.form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-card h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
    color: #212529;
    font-weight: 600;
}

/* Input Grid Alignment */
.grid-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
}

/* Dropdown & Input Base Styling */
.grid-form select,
.grid-form input {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* === GRADIENT FIX FOR DROPDOWN === */
/* Jab mouse upar le jayen (Hover) */
.grid-form select:hover,
.grid-form input:hover {
    border-color: #052659;
}

/* Jab Click karein (Focus) - Is se border gradient ban jayegi */
.grid-form select:focus,
.grid-form input:focus {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 10px #052659;
}

/* Dropdown ke purane arrow ko hatakar naya teal arrow lagana */
.grid-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233a5a61' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Submit Button */
.grid-form button {
    height: 55px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.grid-form button:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 90, 97, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .grid-form {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .grid-form {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 25px 20px;
    }

    .hero {
        padding: 60px 20px 100px;
    }

    .form-container {
        margin-top: -60px;
    }
}






/* ================================================================================== */
/* ========= Specialties =========== */
/* ================================================================================== */

.specialties {
    padding: 80px 5%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.specialties h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #052659;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flip Card Animation */
.flip-card {
    height: 250px;
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.front {
    background: #fff;
}

.front i {
    font-size: 45px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.front h3 {
    font-size: 19px;
    color: #083240;
    font-weight: 600;
}

.back {
    background: #052659;
    color: #fff;
    transform: rotateY(180deg);
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}


/* 1. Hero Section */
.hero {
    /* Colors ko transparent kiya taake image nazar aaye */
    background: linear-gradient(135deg, rgba(5, 38, 89, 0.8), rgba(84, 131, 179, 0.7), rgba(125, 160, 202, 0.6)),
        url('https://elintrcm.com/wp-content/uploads/2025/07/WhatsApp-Image-2025-07-30-at-00.53.45_dc7c68d8.jpg');

    background-size: cover;
    background-position: center;
    padding: 100px 20px 150px;
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 45px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 2. Form Container */
.form-container {
    max-width: 1140px;
    margin: -80px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

.form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-card h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
    color: #212529;
    font-weight: 600;
}

/* Input Grid Alignment */
.grid-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
}

/* Dropdown & Input Base Styling */
.grid-form select,
.grid-form input {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* === GRADIENT FIX FOR DROPDOWN === */
/* Jab mouse upar le jayen (Hover) */
.grid-form select:hover,
.grid-form input:hover {
    border-color: #052659;
}

/* Jab Click karein (Focus) - Is se border gradient ban jayegi */
.grid-form select:focus,
.grid-form input:focus {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 10px #052659;
}

/* Dropdown ke purane arrow ko hatakar naya teal arrow lagana */
.grid-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233a5a61' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Submit Button */
.grid-form button {
    height: 55px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.grid-form button:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 90, 97, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .grid-form {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .grid-form {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 25px 20px;
    }

    .hero {
        padding: 60px 20px 100px;
    }

    .form-container {
        margin-top: -60px;
    }
}








/*========================================= */
/* ========= services-container =========== */
/* ======================================== */

.solution-section {
    padding: 80px 0;
}

/* Heading Style */
.main-heading {
    font-weight: 700;
    font-size: 32px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Red Alert Box Style */
.stat-box {
    background-color: #fff5f5;
    border-left: 4px solid #d93025;
    padding: 15px 20px;
    color: #b91c1c;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Paragraph Style */
.content-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Button Style */
.btn-consultation {
    background-color: #052659;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    font-size: 15px;
    margin-top: 10px;
}

.btn-consultation:hover {
    background-color: #052659;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px #052659;
}

/* Image Styling */
.side-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .solution-section {
        padding: 50px 0;
    }

    .main-heading {
        font-size: 26px;
    }

    .col-md-6:last-child {
        margin-top: 40px;
    }
}


/* service */

.related-services-banner {
    position: relative;
    padding: 100px 20px;
    width: 100%;
    /* Background image with Overlay */
    background: linear-gradient(rgba(8, 22, 64, 0.8), rgba(8, 24, 64, 0.8)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.related-services-banner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.related-services-banner p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Specific Blue Color for links as per image */
.blue-text {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
}

/* Button Styling */
.btn-connect {
    background-color: #052659;
    /* Signature Green */
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-connect:hover {
    background-color: #052659;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .related-services-banner {
        padding: 60px 15px;
    }

    .related-services-banner h2 {
        font-size: 28px;
    }

    .related-services-banner p {
        font-size: 14px;
    }
}


.elint-innovative-section {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.innovative-title {
    font-weight: 800;
    font-size: 34px;
    /* Thoda bara kiya professional look ke liye */
    color: #1a1a1a;
    line-height: 1.2;
}

.innovative-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.innovative-list li {
    display: flex;
    align-items: flex-start;
    /* Multi-line text ke liye zaroori hai */
    margin-bottom: 16px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.innovative-list i {
    /* Gradient Icon Logic */
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    /* Text ke sath align karne ke liye */
    display: inline-block;
    flex-shrink: 0;
    /* Icon ko chota hone se rokta hai */
}

/* --- Button Styling --- */
.btn-innovative-demo {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    border-radius: 50px;
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    color: #ffffff !important;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(58, 90, 97, 0.2);
    cursor: pointer;
}

.btn-innovative-demo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(58, 90, 97, 0.3);
    filter: brightness(1.1);
}

.innovative-img-box img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.innovative-img-box:hover img {
    transform: scale(1.02);
    /* Halka sa zoom effect */
}

/* Mobile View Fix */
@media (max-width: 991px) {
    .innovative-title {
        font-size: 26px;
        text-align: center;
        margin-top: 20px;
    }

    .innovative-list li {
        font-size: 14px;
    }

    .btn-innovative-demo {
        display: block;
        width: 100%;
    }

    .innovative-img-box {
        text-align: center;
    }
}


/* ========== SECTION STYLING ========== */
.new-connect-wrapper {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.main-wrapper-inner {
    display: flex;
    max-width: 1050px;
    width: 100%;
    align-items: center;
    gap: 40px;
    /* Space between text and image */
}

/* Text Content Area */
.text-container-new {
    flex: 1.2;
    text-align: center;
    padding: 10px;
}

.icon-header-new {
    margin-bottom: 15px;
}

.text-container-new h2 {

    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;

    /* The Magic Sauce */
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-container-new p {
    font-size: 15px;
    line-height: 1.6;
    color: #052659;
    margin-bottom: 15px;
}

/* Contact Details Highlight */
.contact-details-new {
    padding: 20px;
    border-radius: 10px;
    font-weight: 700;
    margin: 20px 0;
    font-size: 17px;
    color: #083240;
    /* Dark Blue */
    border: 1px dashed #052659;
}

.contact-details-new a {
    color: #0056b3;
    text-decoration: none;
    transition: 0.3s;
}

.contact-details-new a:hover {
    text-decoration: underline;
    color: #052659;
}

/* Image Area */
.image-container-new {
    flex: 1;
}

.image-container-new img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container-new img:hover {
    transform: scale(1.02);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .new-connect-wrapper {
        padding: 60px 5%;
    }

    .main-wrapper-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .text-container-new {
        padding-right: 0;
    }

    .text-container-new h2 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .contact-details-new {
        font-size: 15px;
    }
}


.elint-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 1152px;
    margin: 50px auto;
    padding: 0 20px;
    color: #052659;
}

.elint-title {
    color: #052659;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.025em;
}

.elint-banner-container {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    border-radius: 4px;
    overflow: hidden;
}

.elint-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Grid Layout */
.elint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Card Styling - Same as original */
.elint-card {
    background-color: #ffffff;
    border: 3px solid #052659;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px #052659;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.elint-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #052659;
}

.elint-card h3 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: #052659;
    margin-bottom: 24px;
    margin-top: 0;
}

.elint-card ul {
    list-style-type: disc;
    margin-left: 24px;
    padding: 0;
}

.elint-card li {
    margin-bottom: 12px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.6;
}

/* Last Card Center Styling */
.elint-card-full {
    grid-column: 1 / -1;
    max-width: 990px;
    margin: 0 auto;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .elint-grid {
        grid-template-columns: 1fr;
    }

    .elint-card-full {
        max-width: 100%;
    }
}

/* ========================================== */
/* Industry Trends Section Styles (New Code)  */
/* ========================================== */
.trends-wrapper {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.trends-container {
    max-width: 1100px;
    width: 100%;
}

.trends-header-section {
    text-align: center;
    margin-bottom: 50px;
}

.trends-header-section h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.trends-top-content p {
    max-width: 850px;
    margin: 0 auto 20px auto;
    color: #e0e0e0;
    font-size: 15px;
    text-align: left;
}

.trends-btn-container {
    margin-top: 40px;
    text-align: center;
}

.trends-cta-button {
    background-color: #052659;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.trends-cta-button:hover {
    transform: scale(1.05);
    color: #ffffff;
    text-decoration: none;
}

.trends-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

.trends-column h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.trends-column p {
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 15px;
}

.trends-column strong {
    display: block;
    margin: 20px 0 10px 0;
    font-size: 15px;
}

.trends-list {
    list-style: none;
    padding-left: 0;
}

.trends-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #e0e0e0;
}

.trends-list li::before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 850px) {
    .trends-grid-section {
        grid-template-columns: 1fr;
    }
}

/* Original Styles Follow Below */
.elint-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: #ffffff;
}

.elint-title {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.elint-banner {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: block;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.f-card {
    background: #fff;
    border: 3px solid #052659;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(62, 224, 172, 0.1);
    transition: transform 0.3s ease;
}

.f-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 224, 172, 0.2);
}

.f-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.f-card ul {
    padding-left: 20px;
    margin: 0;
}

.f-card li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1rem;
}

.full-width-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .elint-title {
        font-size: 1.5rem;
    }

    .full-width-card {
        max-width: 100%;
    }
}

/* --- Base Styles --- */
.info-section-wrapper {
    --primary-green: #29d9a0;
    --text-dark: #1a1a1a;
    --text-gray: #555555;

    width: 100%;
    padding: 80px 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-column h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
    display: block;
    min-height: 80px; /* Desktop alignment */
}

.para-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.info-column p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 35px 0;
    text-align: justify;
    min-height: 180px; /* Desktop alignment */
}

.info-column p strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* --- Responsive Media Queries --- */

/* Tablet View (Laptops & iPads) */
@media (max-width: 1024px) {
    .info-container {
        gap: 30px;
    }
    
    .info-column h2 {
        font-size: 28px;
    }
}

/* Mobile View (Smartphones) */
@media (max-width: 768px) {
    .info-section-wrapper {
        padding: 50px 20px; /* Padding kam kar di */
    }

    .info-container {
        flex-direction: column; /* Columns ko upar niche kar diya */
        gap: 40px;
    }

    .info-column h2 {
        font-size: 24px;
        min-height: auto; /* Fixed height khatam */
        margin-bottom: 15px;
        text-align: center;
    }

    .info-column p {
        font-size: 15px;
        min-height: auto; /* Fixed height khatam */
        text-align: center; /* Mobile par center alignment behtar lagti hai */
        margin-bottom: 0;
    }

    /* Agar button ya link ho toh uske liye margin setup */
    .para-wrapper {
        margin-bottom: 20px;
    }
}

.methodology-wrapper {
    --text-dark: #000000;
    --text-gray: #555555;
    --card-border: #e0e0e0;


    width: 100%;
    padding: 60px 20px;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Top Image Styling */
.method-main-image {
    width: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-top: -130PX;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.method-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Headers */
.methodology-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.methodology-container p.section-subtext {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* Cards Grid */
.method-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

/* Individual Card with Perfect Alignment */
.method-card {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Flex ensures alignment regardless of text length */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: #cccccc;
}

.method-card p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    /* Pushes content to fill space evenly */
    flex-grow: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .method-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .methodology-container h2 {
        font-size: 28px;
    }

    .method-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .methodology-wrapper {
        padding: 40px 15px;
    }
}

/* Container and Section Styles */
.rcm-audit-section {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    color: white;
}

.rcm-audit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Image Styles */
.rcm-audit-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Typography and Content */
.rcm-audit-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rcm-audit-title {
    font-size: clamp(28px, 5vw, 42px);
    /* Automatically resizes */
    font-weight: 800;
    margin: 0;
}

.rcm-audit-highlight-card {
    background: white;
    color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rcm-audit-highlight-card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #052659;
}

.rcm-audit-description {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.rcm-brand-name {
    font-weight: bold;
    border-bottom: 2px solid #052659;
}

/* Button Styles */
.rcm-audit-btn {
    display: inline-block;
    background: #052659;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s ease;
    width: fit-content;
}

.rcm-audit-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Tablet & Mobile View */
@media (max-width: 991px) {
    .rcm-audit-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rcm-audit-image {
        order: 2;
    }

    .rcm-audit-content {
        order: 1;
    }

    .rcm-audit-btn {
        margin: 0 auto;
    }

    .rcm-audit-image img {
        height: 300px;
    }
}

/* Wrapper to center the card on the page */
.credential-card-wrapper {
    padding: 40px 20px;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
}

/* Main Card Container */
.credential-card {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #f1f1f1;
}

/* Image Banner Styling */
.credential-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 2.5 / 1;
    object-fit: cover;
    display: block;
}

/* Body Content Padding */
.credential-body {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.credential-heading {
    font-size: 36px;
    font-weight: 800;
    color: #030712;
    margin: 0;
}

/* Red Accent Box - Crucial for the Warning Look */
.credential-alert-box {
    background-color: #fef2f2;
    /* Light red bg */
    border-left: 5px solid #e74c3c;
    /* Red accent */
    padding: 24px;
    border-radius: 8px;
    color: #7f1d1d;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
}

.credential-text {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    font-weight: 500;
}

.credential-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.credential-link:hover {
    text-decoration: underline;
}

/* Professional Button Styling */
.credential-btn {
    background-color: #052659;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 15px -3px #052659;
}

.credential-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .credential-body {
        padding: 30px 20px;
    }

    .credential-heading {
        font-size: 28px;
    }

    .credential-alert-box {
        font-size: 18px;
    }
}

.ar-results-section {
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    /* Ya aapki preferred font */
}

.ar-results-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 60px;
    align-items: flex-start;
}

/* Typography */
.ar-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ar-intro-text,
.ar-main-text {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ar-benefit-heading {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000000;
}

/* List Styling */
.ar-benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.ar-benefit-list li {
    font-size: 17px;
    color: #333333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

/* Bullet Point custom circle */
.ar-benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Buttons Styling */
.ar-btn {
    display: inline-block;
    background-color: #052659;
    /* Mint green color from image */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.ar-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #052659;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .ar-results-container {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 40px;
    }

    .ar-title {
        font-size: 28px;
    }
}

/* new */

.industry-trends-section {
    padding: 100px 20px;
    /* Light background to make cards pop */
    font-family: 'Inter', sans-serif;
}

.trends-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* Common Card Styling */
.trend-card {
    background: linear-gradient(135deg, #052659, #5483B3, #7DA0CA);
    /* Dark background from image */
    padding: 40px 30px;
    border-radius: 5px;
    border: 8px solid white;
    /* Thick white border from image */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    height: 500px;
    /* Fixed height for consistency */
    justify-content: space-between;
    position: relative;
}

.trend-title {
    color: #fff;
    /* Mint green color */
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.trend-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.trend-text strong {
    color: white;
}

/* Button Styling */
.trend-btn {
    background-color: #052659;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.trend-btn:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Staggered Effect (Up, Mid, Down) */
.card-up {
    transform: translateY(-20px);
}

.card-mid {
    transform: translateY(20px);
}

.card-down {
    transform: translateY(60px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .trends-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .card-up,
    .card-mid,
    .card-down {
        transform: translateY(0);
        /* Remove staggered effect on mobile */
        height: auto;
    }
}

.superior-section {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.superior-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border: 6px solid #052659;
    /* Mint green border from image */
    border-radius: 8px;
    background-color: var(--card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.superior-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.superior-intro {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.superior-feature-heading {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

/* List Styling */
.superior-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.superior-list li {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

/* Custom Bullet Points */
.superior-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}

/* Button Styling */
.superior-action {
    display: flex;
    justify-content: center;
}

.superior-btn {
    display: inline-block;
    background-color: #052659;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #052659;
}

.superior-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #052659;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .superior-container {
        padding: 25px;
    }

    .superior-title {
        font-size: 28px;
    }

    .superior-btn {
        font-size: 15px;
        text-align: center;
        padding: 14px 20px;
    }
}


/* HIPAA Policy Section Styles */
.hipaa-policy-container {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: #0f172a;
        line-height: 1.8;
        padding: 80px 20px;
    }

    .hipaa-policy-container .wrapper {
        max-width: 900px;
        margin: 0 auto;
    }

    /* Header */
    .hipaa-policy-container .policy-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .hipaa-policy-container .effective-date {
        color: #2563eb;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 10px;
    }

    .hipaa-policy-container .policy-header h1 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.2;
        color: #0f172a;
    }

    /* Section Logic */
    .hipaa-policy-container .policy-section {
        margin-bottom: 50px;
    }

    .hipaa-policy-container .section-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        color: #0f172a;
    }

    .hipaa-policy-container .section-title::after {
        content: '';
        height: 1px;
        flex-grow: 1;
        background: linear-gradient(to right, #e2e8f0, transparent);
    }

    .hipaa-policy-container .content-text {
        font-size: 1.05rem;
        color: #475569;
    }

    /* Special Elements */
    .hipaa-policy-container .highlight-card {
        background-color: #f8fafc;
        border-left: 4px solid #2563eb;
        padding: 30px;
        border-radius: 12px;
        margin: 30px 0;
    }

    .hipaa-policy-container .sub-heading {
        font-weight: 700;
        color: #0f172a;
        display: block;
        margin: 20px 0 5px 0;
    }

    .hipaa-policy-container .check-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .hipaa-policy-container .check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #475569;
    }

    .hipaa-policy-container .check-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2563eb;
        font-weight: 900;
    }

    .hipaa-policy-container .alert-box {
        background-color: #fff7ed;
        border: 1px solid #ffedd5;
        color: #9a3412;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        margin-top: 15px;
    }

    /* Contact Card */
    .hipaa-policy-container .contact-card {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #ffffff;
        padding: 40px;
        border-radius: 20px;
        margin-top: 60px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .hipaa-policy-container .contact-card h2 {
        color: #ffffff;
        margin-bottom: 20px;
    }

    .hipaa-policy-container .contact-info p {
        margin: 0;
        color: #cbd5e1;
    }

    .hipaa-policy-container .footer-quote {
        text-align: center;
        margin-top: 60px;
        font-style: italic;
        color: #475569;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .hipaa-policy-container { padding: 50px 15px; }
        .hipaa-policy-container .contact-card { padding: 25px; }
    }

    /* start animation */
            /* ========== MAIN LOADER WRAPPER ========== */
        #loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #021024 0%, #052659 25%, #5483B3 50%, #7DA0CA 75%, #C1E8FF 100%);
            background-size: 400% 400%;
            animation: blueGradientFlow 20s ease infinite;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999999;
            opacity: 1;
            visibility: visible;
            transition: opacity 1s ease-out, visibility 1s ease-out;
            overflow: hidden;
        }

        #loader-wrapper.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        @keyframes blueGradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* ========== ANIMATED BLUE ORBS ========== */
        .blue-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            animation: orbFloat 25s ease-in-out infinite;
        }

        .orb-dark {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #052659, #021024);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-medium {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #5483B3, #052659);
            bottom: -150px;
            right: -150px;
            animation-delay: 5s;
        }

        .orb-light {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, #7DA0CA, #5483B3);
            top: 50%;
            right: -200px;
            animation-delay: 10s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(80px, -80px); }
        }

        /* ========== ANIMATED GRID ========== */
        .grid-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.08;
            background-image: 
                linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent);
            background-size: 60px 60px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { background-position: 0 0; }
            100% { background-position: 60px 60px; }
        }

        /* ========== PARTICLES ========== */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(193, 232, 255, 0.6);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(125, 160, 202, 0.8);
            animation: particleRise 20s infinite ease-in;
        }

        @keyframes particleRise {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(var(--tx), var(--ty)) scale(0);
                opacity: 0;
            }
        }

        /* ========== MAIN CONTENT ========== */
        .loader-content {
            position: relative;
            z-index: 10;
            text-align: center;
            animation: contentSlideIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        @keyframes contentSlideIn {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* ========== LOGO WITH ADVANCED EFFECTS ========== */
        .logo-container {
            margin-bottom: 70px;
            position: relative;
            perspective: 1200px;
        }

        /* Expanding rings */
        .pulse-ring {
            position: absolute;
            border: 2px solid rgba(125, 160, 202, 0.4);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            animation: ringExpand 2.5s ease-out infinite;
        }

        .pulse-ring:nth-child(1) {
            width: 280px;
            height: 280px;
            margin-left: -140px;
            margin-top: -140px;
            border-color: rgba(193, 232, 255, 0.3);
            animation-delay: 0s;
        }

        .pulse-ring:nth-child(2) {
            width: 340px;
            height: 340px;
            margin-left: -170px;
            margin-top: -170px;
            border-color: rgba(125, 160, 202, 0.2);
            animation-delay: 0.8s;
        }

        .pulse-ring:nth-child(3) {
            width: 240px;
            height: 240px;
            margin-left: -120px;
            margin-top: -120px;
            border-color: rgba(84, 131, 179, 0.3);
            animation-delay: 1.5s;
        }

        @keyframes ringExpand {
            0% {
                transform: scale(0.5);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Logo wrapper */
        .logo-wrapper {
            width: 280px;
            height: 280px;
            margin: 0 auto;
            position: relative;
            transform-style: preserve-3d;
        }

        .logo-box {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(125, 160, 202, 0.15), rgba(193, 232, 255, 0.1));
            border: 2px solid rgba(193, 232, 255, 0.4);
            border-radius: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 
                0 0 50px rgba(125, 160, 202, 0.3),
                0 0 100px rgba(193, 232, 255, 0.15),
                inset 0 0 40px rgba(255, 255, 255, 0.1);
            padding: 30px;
            backdrop-filter: blur(20px);
            border-radius: 45px;
            position: relative;
            overflow: hidden;
            animation: logo3dFloat 5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        .logo-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shine 3s infinite;
            border-radius: 45px;
        }

        .logo-box::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent);
            border-radius: 43px;
        }

        .logo-box img {
            width: 75%;
            height: auto;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 25px rgba(125, 160, 202, 0.5)) drop-shadow(0 0 50px rgba(193, 232, 255, 0.3));
            animation: logoPulseFloat 3s ease-in-out infinite;
        }

        @keyframes logo3dFloat {
            0% { transform: rotateX(0) rotateY(0) translateY(0); }
            25% { transform: rotateX(8deg) rotateY(12deg) translateY(-15px); }
            50% { transform: rotateX(0) rotateY(25deg) translateY(0); }
            75% { transform: rotateX(-8deg) rotateY(12deg) translateY(10px); }
            100% { transform: rotateX(0) rotateY(0) translateY(0); }
        }

        @keyframes logoPulseFloat {
            0%, 100% { transform: scale(1) translateY(0); }
            50% { transform: scale(1.1) translateY(-10px); }
        }

        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* ========== SPINNER ========== */
        .spinner-container {
            position: relative;
            width: 90px;
            height: 90px;
            margin: 70px auto;
        }

        .spinner-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-radius: 50%;
            animation: spinRing 3s linear infinite;
        }

        .spinner-ring:nth-child(1) {
            border-top: 3px solid rgba(193, 232, 255, 0.8);
            border-right: 3px solid rgba(125, 160, 202, 0.3);
            animation-duration: 1.8s;
            box-shadow: 0 0 25px rgba(193, 232, 255, 0.5);
        }

        .spinner-ring:nth-child(2) {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-bottom: 3px solid rgba(84, 131, 179, 0.7);
            border-left: 3px solid rgba(125, 160, 202, 0.2);
            animation-duration: 2.5s;
            animation-direction: reverse;
            box-shadow: 0 0 20px rgba(125, 160, 202, 0.5);
        }

        .spinner-ring:nth-child(3) {
            width: 65%;
            height: 65%;
            top: 17.5%;
            left: 17.5%;
            border-top: 2px solid rgba(125, 160, 202, 0.6);
            border-bottom: 2px solid rgba(193, 232, 255, 0.6);
            animation-duration: 3.2s;
            box-shadow: 0 0 15px rgba(84, 131, 179, 0.4);
        }

        @keyframes spinRing {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* ========== TEXT ========== */
        .loader-text {
            color: #ffffff;
            margin-top: 40px;
        }

        .company-name {
            font-size: 40px;
            font-weight: 900;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            color: #021024;
            text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
            animation: titleEntry 1s ease-out 0.2s both, titleGlow 3.5s ease-in-out 1s infinite;
        }

        .tagline {
            font-size: 13px;
            color: #021024;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 35px;
            animation: taglineEntry 1s ease-out 0.4s both;
            position: relative;
            padding-bottom: 12px;
        }

        .tagline::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(5, 38, 89, 0.8), transparent);
            animation: lineExpand 1.5s ease-out 0.6s both;
        }

        @keyframes titleEntry {
            from {
                opacity: 0;
                transform: translateY(-25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes titleGlow {
            0%, 100% {
                text-shadow: 0 0 15px rgba(193, 232, 255, 0.3), 0 0 5px rgba(125, 160, 202, 0.2);
            }
            50% {
                text-shadow: 0 0 35px rgba(193, 232, 255, 0.6), 0 0 20px rgba(125, 160, 202, 0.4);
            }
        }

        @keyframes taglineEntry {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes lineExpand {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 80px;
                opacity: 1;
            }
        }

        /* ========== PROGRESS BAR ========== */
        .progress-section {
            margin-top: 45px;
            animation: progressEntry 1s ease-out 0.6s both;
        }

        .progress-container {
            width: 280px;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 30px auto;
            overflow: hidden;
            border: 2px solid rgba(193, 232, 255, 0.25);
            box-shadow: 0 0 30px rgba(125, 160, 202, 0.25), inset 0 0 20px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, 
                #052659 0%, 
                #5483B3 30%, 
                #7DA0CA 50%, 
                #5483B3 70%, 
                #052659 100%);
            background-size: 300% 100%;
            border-radius: 10px;
            animation: progressAdvance 2.8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
            box-shadow: 0 0 20px rgba(125, 160, 202, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.2);
        }

        @keyframes progressAdvance {
            0% {
                width: 0%;
                background-position: 0% 0%;
            }
            50% {
                width: 75%;
                background-position: 100% 0%;
            }
            100% {
                width: 100%;
                background-position: 200% 0%;
            }
        }

        .loading-text {
            font-size: 12px;
            color: #052659;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: progressEntry 1s ease-out 0.8s both;
            font-weight: 600;
        }

        .dot-animate {
            display: inline-block;
            margin-left: 5px;
        }

        .dot-animate span {
            display: inline-block;
            width: 4px;
            height: 4px;
            margin: 0 3px;
            border-radius: 50%;
            background: rgba(125, 160, 202, 0.9);
            animation: dotJump 1.5s ease-in-out infinite;
        }

        .dot-animate span:nth-child(2) {
            background: rgba(193, 232, 255, 0.9);
            animation-delay: 0.2s;
        }

        .dot-animate span:nth-child(3) {
            background: rgba(84, 131, 179, 0.9);
            animation-delay: 0.4s;
        }

        @keyframes dotJump {
            0%, 100% {
                transform: translateY(0) scale(0.8);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-8px) scale(1.1);
                opacity: 1;
            }
        }

        @keyframes progressEntry {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== MAIN CONTENT ========== */
        .main-content {
            padding: 100px 40px;
            text-align: center;
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s ease-out;
            pointer-events: none;
        }

        body.loaded .main-content {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .main-content h1 {
            color: #052659;
            font-size: 50px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #052659, #5483B3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .main-content p {
            color: #555;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .logo-wrapper {
                width: 220px;
                height: 220px;
            }

            .pulse-ring:nth-child(1) {
                width: 220px;
                height: 220px;
                margin-left: -110px;
                margin-top: -110px;
            }

            .pulse-ring:nth-child(2) {
                width: 270px;
                height: 270px;
                margin-left: -135px;
                margin-top: -135px;
            }

            .pulse-ring:nth-child(3) {
                width: 190px;
                height: 190px;
                margin-left: -95px;
                margin-top: -95px;
            }

            .spinner-container {
                width: 75px;
                height: 75px;
                margin: 60px auto;
            }

            .company-name {
                font-size: 32px;
            }

            .tagline {
                font-size: 12px;
            }

            .progress-container {
                width: 240px;
            }

            .main-content h1 {
                font-size: 38px;
            }

            .blue-orb {
                filter: blur(80px);
            }
        }

        @media (max-width: 480px) {
            .logo-wrapper {
                width: 180px;
                height: 180px;
            }

            .pulse-ring:nth-child(1) {
                width: 180px;
                height: 180px;
                margin-left: -90px;
                margin-top: -90px;
            }

            .pulse-ring:nth-child(2) {
                width: 220px;
                height: 220px;
                margin-left: -110px;
                margin-top: -110px;
            }

            .pulse-ring:nth-child(3) {
                width: 160px;
                height: 160px;
                margin-left: -80px;
                margin-top: -80px;
            }

            .spinner-container {
                width: 65px;
                height: 65px;
                margin: 50px auto;
            }

            .company-name {
                font-size: 26px;
                letter-spacing: 0.5px;
            }

            .tagline {
                font-size: 11px;
                letter-spacing: 1.5px;
            }

            .progress-container {
                width: 200px;
            }

            .main-content {
                padding: 60px 20px;
            }

            .main-content h1 {
                font-size: 28px;
            }

            .blue-orb {
                filter: blur(60px);
            }
        }
    