@import url(about.css);
@import url(our-works.css);
@import url(career.css);
@import url(our-clients.css);
@import url(contact.css);

:root {
    --primary: #042d65;
    --secondary: #0099a8;
    --accent: #1c3048;
    --dark: #042d65;
    --light: #F8FCFF;
    --button-primary: #0099a8;
    --button-primary-hover: #042d65;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #334155;
    background-color: #F8FAFC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: rgba(33, 37, 41, 0.75);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 20px;
    margin-bottom: 1.25rem;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

img {
    width: 100%;
}

/* body{
    font-family: "Inter", sans-serif;
    background: var(--light);
    color: var(--dark);
} */

.navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    font-weight: 800;
    color: var(--accent);
    width: 170px;
    transition: width 300ms ease;
}

.hero {
    background: linear-gradient(135deg, #E3F7FF, #F8FCFF);
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--light);
    line-height: 1.2;
    text-transform: capitalize;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light);
}

.btn-primary {
    background: var(--button-primary);
    border: none;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 100px;
    border: 2px solid var(--button-primary);
}

.btn-primary:hover {
    background: var(--button-primary-hover);
    border: 2px solid var(--button-primary);
    color: var(--button-primary);
}

.section-title {
    text-align: center;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 70px;
}

.feature-card,
.course-card,
.stat-card,
.testimonial-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover,
.course-card:hover,
.stat-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
}

.stat-card h2 {
    margin: 0;
    color: #fff;
}

.stat-card p {
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 32px;
    color: #fff;
}

.stats {
    /* background: var(--accent); */
}

.stats .section-title {
    color: #fff;
}

/* Core section styling */
.home-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-size: 200% 200%;
    /* Enlarges gradient so it has room to move/glow */
    color: white;
    position: relative;
    overflow: hidden;
}

/* Landing Page Animation Trigger */
/* .glow-bg-load {
    animation:
        gradientShift 6s ease infinite alternate,
        ambientGlow 4s ease-in-out infinite alternate;
} */

/* Animation 1: Shifts the gradient colors smoothly */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animation 2: Creates a pulsing, glowing depth effect */
@keyframes ambientGlow {
    0% {
        box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05),
            0 0 20px rgba(216, 138, 55, 0.2);
    }

    100% {
        /* Inward soft white light + outward bright glow using a fallback mix */
        box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.15),
            0 0 50px rgba(216, 138, 55, 0.6);
    }
}

.home-cta h2 {
    font-size: 50px;
    color: #fff;
}

.footer {
    background: #0F172A;
    color: white;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.hero {
    height: 100vh;
    text-align: center;
    position: relative;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.6;
    z-index: 1;
}

.hero .hero-content {
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-content h1 {}

.hero-content h1 span {
    color: var(--secondary);
}

li.nav-item a {
    color: #1c3048;
    font-weight: 700;
    text-transform: uppercase;
}

li.nav-item a:hover {
    color: var(--secondary);
}

.section-title span {
    color: var(--button-primary);
}

/* Icon section  */

.courses-section {
    background-color: #f8fafc;
    padding: 5rem 0;
}

.section-title {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.course-card {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px var(--accent);
    transition: all 0.3s ease-in-out;
    height: 100%;
    border: 1px solid var(--primary);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

/* .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
} */

.course-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.course-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.course-list li {
    color: #475569;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.course-list li i {
    color: var(--button-primary);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.btn-corporate {
    background-color: transparent;
    border: 2px solid #e2e8f0;
    color: var(--primary);
    font-weight: 500;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: auto;
    border-radius: 100px;
}

.course-card:hover .btn-corporate {
    background-color: var(--button-primary);
    border-color: var(--button-primary);
    color: #ffffff;
}

/* Icon section  */
/* Testimonials */
.testimonial-card h5 {
    color: var(--secondary);
}

.corporate-footer {
    background-color: var(--primary);
    color: var(--footer-dark-text);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
}

.corporate-footer .footer-top {
    padding: 5rem 0 3rem;
}

.corporate-footer .footer-brand-text {
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 14px;
    color: #fff;
}

.corporate-footer .footer-title {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Subtle decorative underline matching your theme */
.corporate-footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.corporate-footer .footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.corporate-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.corporate-footer .footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

/* Interactive orange highlight states */
.corporate-footer .footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.corporate-footer .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--light);
}

.corporate-footer .contact-info i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
}

/* Social Icons Circle Badges */
.corporate-footer .social-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.corporate-footer .social-icon:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.corporate-footer .footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
}

.corporate-footer .footer-bottom a {
    color: var(--light);
    text-decoration: none;
}

.corporate-footer .footer-bottom a:hover {
    color: var(--secondary);
}

.innerHero {
    background-color: var(--primary);
    padding: 80px 0;
}

.innerHero h2 {
    color: #fff;
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
}

.btn-enroll {
    background-color: var(--primary-blue) !important;
    color: white !important;
    border-radius: 5px;
    font-weight: 500;
    padding: 8px 20px !important;
    border: none;
}

.btn-enroll:hover {
    background-color: #0077B5 !important;
}

/* Mission / Vision Cards */
.mv-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    background: #ffffff;
    border: 1px solid var(--primary);
}

.mv-card:hover {
    transform: translateY(-5px);
}

/* Team Section */
.team-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    height: 100%;
}

.team-image-container {
    height: 280px;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-blue);
    color: white;
    padding: 50px 0;
}

.btn-cta-light {
    background-color: white;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    transition: background 0.2s;
}

.btn-cta-light:hover {
    background-color: var(--light-sky);
}

.contact-info li span a {
    color: #fff;
    text-decoration: none;
}

.footer-logo img {
    width: 170px;
}

.hero-desc {
    max-width: 800px;
    margin: 0 auto;
}

/* Zentrox CSS  */
.what-we-do {
    background: var(--primary);
    color: #fff;
    overflow: hidden;
    position: relative;
    padding: 90px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, .06);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: .3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: #2f3150;
}

.feature-box i {
    font-size: 34px;
    color: #00d084;
}

.feature-box h5 {
    color: #fff;
    margin-bottom: 6px;
}

.feature-box p {
    color: #cfcfcf;
    font-size: 15px;
    margin: 0;
}

.image-wrapper {
    position: relative;
    text-align: center;
}

.main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
}

.circle-bg {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    top: -60px;
    right: -40px;
    z-index: 1;

    background: radial-gradient(circle, rgba(0, 208, 132, .35), transparent);

    animation: ripple 3s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(.8);
        opacity: .8;
    }

    50% {
        opacity: .4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.who-we-are .circle-bg {
    right: 0;
    left: 0;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #fff;
    color: #222;
    border-radius: 15px;
    padding: 25px;
    width: 280px;
    z-index: 3;
}

.floating-card h5 {
    color: var(--secondary);
    font-size: 34px;
    font-weight: 700;
}

.floating-card p {
    margin: 0;
    color: #555;
}

.solutions-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff, #f3f9f8);
    text-align: center;
    overflow: hidden;
}

.solutions-section h2 {
    font-size: 58px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    max-width: 900px;
    margin: auto;
}

.solutions-section h2 span {
    color: var(--secondary);
}

.solutions-section p {
    max-width: 760px;
    margin: 35px auto;
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.solution-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.feature {
    width: 180px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary);
}

.btn-solution {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
}

.btn-solution:hover {
    background: #0d9958;
    color: #fff;
    transform: translateY(-4px);
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(18, 183, 106, .08);
    animation: float 8s infinite ease-in-out;
}

.shape1 {
    width: 220px;
    height: 220px;
    top: -70px;
    left: -70px;
}

.shape2 {
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: -100px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-25px) scale(1.08);
    }

}

.services-section {
    background: #f7fafc;
}

.section-tag {
    color: #0099a8;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    color: #1d2746;
    margin-top: 15px;
}

.section-text {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top,
            var(--secondary),
            transparent); */
}

.service-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 26px;
    color: var(--primary);
    font-weight: 700;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin: 20px 0;
    font-size: 16px;
}

.service-content a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.service-content a i {
    transition: .3s;
}

.service-content a:hover i {
    margin-left: 8px;
}

.parallax-section {
    position: relative;
    background-attachment: fixed;
    padding: 180px 0;
    overflow: hidden;
    background-image: url("../images/sucess.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, .70);
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.logo-slider {
    overflow: hidden;
    background: #fff;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-slide {
    width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 140px;
    max-height: 55px;
    filter: grayscale(100%);
    opacity: .7;
    transition: .3s;
}

.logo-slide img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.video-banner-container {
    width: 100%;
    height: 100vh;
    /* Or use 100vh for a full screen banner */
    overflow: hidden;
    position: relative;
}

.video-banner-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This eliminates the top/bottom bars */
    object-position: center;
    /* Keeps the focus in the center */
}


/* --- SECTION 1: HERO --- */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #0a2540;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #637381;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* --- SECTION 2: STATS STRIP --- */
.stats-strip {
    background-color: #1b365d;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item h2 {
    font-size: 3rem;
    color: #4ba3e3;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --- SECTION 3: WORKFLOW PROCESS --- */
.process-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2rem;
    color: #0a2540;
    margin-bottom: 5px;
}

.process-subtitle {
    color: #637381;
    margin-bottom: 40px;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 160px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.process-step .icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.process-step p {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1b365d;
}

/* --- SECTION 4: SPLIT GRID (SOLUTIONS & FORM) --- */
.solutions-form-section {
    padding: 80px 0;
    background-color: #f4f7fa;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.solutions-content h2 {
    font-size: 2.2rem;
    color: #0a2540;
    margin-bottom: 30px;
}

.solution-block {
    margin-bottom: 25px;
}

.solution-block h3 {
    color: #0076c0;
    margin-bottom: 8px;
}

.solution-block ul {
    list-style-type: none;
    padding-left: 5px;
}

.solution-block li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: #455a64;
}

.solution-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0076c0;
    font-weight: bold;
}

/* The Sticky Form Styling */
.sticky-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #0076c0;
    height: fit-content;
}

.sticky-form h3 {
    color: #0a2540;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #455a64;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 0.95rem;
}

.sticky-form button {
    width: 100%;
    margin-top: 10px;
}

/* --- SECTION 5: WHO WE HELP --- */
.audience-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.audience-section h2 {
    font-size: 2rem;
    color: #0a2540;
    margin-bottom: 30px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.audience-card {
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.audience-card h3 {
    color: #1b365d;
    margin-bottom: 10px;
}

/* --- SECTION 6: INSIGHTS CARDS --- */
.insights-section {
    padding: 80px 0;
    background-color: #f4f7fa;
}

.insights-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #0a2540;
    margin-bottom: 40px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.insight-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 20px;
}

.insight-content h3 {
    font-size: 1.1rem;
    color: #0a2540;
    margin-bottom: 10px;
}

.insight-content a {
    color: #0076c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.meta-date {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.highlight-box {
    background-color: #f0f4f8;
    border-left: 4px solid #134074;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.contact-info-policy {
    background-color: #f9f9f9;
    border: 1px solid #e1e4e8;
    padding: 20px;
    border-radius: 6px;
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #0b2545;
    display: inline-block;
    width: 120px;
}
.custom-alert-box {
    background: #0099a8;
    padding: 0;
}

.headerNav {
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1030;
}

.headerNav.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    /* animation: slideDown .3s ease; */
}
.fixed-nav .logo {
    width: 100px;
    transition: width 300ms ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/* Media Query  */
@media screen and (max-width: 991px) {
    .hero {
        /* height: 100%; */
    }

    .section-title {
        font-size: 40px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 20px auto 0;
    }

    .circle-bg {
        display: none;
    }

    .solutions-section {
        padding: 80px 0;
    }

    .solutions-section h2 {
        font-size: 40px;
    }

    .solutions-section p {
        font-size: 18px;
    }

    .feature {
        width: 150px;
    }

    .section-title {
        font-size: 38px;
    }

    /* RCM  */
    .hero-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-step {
        width: 100%;
    }

    .btn-solution {
        padding: 12px 30px;
        font-size: 16px;
    }

    .btn-primary {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }

    .corporate-footer .footer-top {
        padding: 2rem 0 3rem;
    }

    /* END  */
}

@media(max-width:576px) {

    .solutions-section h2 {
        font-size: 32px;
    }

    .feature {
        width: 100%;
    }

    .section-title {
        font-size: 30px;
    }

    .service-img img {
        height: 220px;
    }

    .hero {
        /* height: 100%; */
        height: 90vh;

    }

    .our-works-tap .nav-pills .nav-link {
        padding: 5px 10px;
        font-size: 10px;
    }

    .our-works-tap .nav-pills {
        gap: 5px;
        justify-content: center;
    }

    .clients-hero,
    .works-hero,
    .career-hero,
    .contact-hero {
        padding: 40px 0;
    }

}