
            :root {
                --primary: #118ec4;
                --primary-dark: #0b8fc6;
                --primary-light: #eaf7fd;
                --text-main: #0f1720;
                --text-soft: #4a5565;
                --white: #ffffff;
                --section-light: #f6fbfe;
                --border-soft: #e5eef5;
                --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.06);
                --radius: 0px;
                --transition: all 0.35s ease;
            }

            body {
                font-family: "Montserrat", sans-serif;
                color: var(--text-main);
                background: #fff;
                line-height: 1.6;
            }

            h1,
            h2,
            h3,
            h4 {
                font-family: "Bricolage Grotesque", sans-serif;
                font-weight: 700;
                letter-spacing: -0.5px;
            }

            a {
                text-decoration: none;
                transition: var(--transition);
            }

            img {
                max-width: 100%;
            }
        
        
        
        
            .topbar {
                background: #118ec4;
                color: #fff;
                font-size: 14px;
            }

            .topbar-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 8px 0;
            }

            .topbar-left {
                display: flex;
                align-items: center;
                gap: 28px;
            }

            .topbar-item {
                display: flex;
                align-items: center;
                gap: 6px;
                color: #fff;
                font-weight: 500;
            }

            .topbar-item:hover {
                opacity: 0.9;
            }

            .topbar i {
                font-size: 14px;
            }

            .social-icons {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            .social-icons a {
                color: #fff;
                font-size: 16px;
                transition: 0.3s;
            }

            .social-icons a:hover {
                transform: translateY(-2px);
                opacity: 0.85;
            }

            @media (max-width: 768px) {
                .topbar {
                    display: none;
                }
            }
        
        
        
            .navbar {
              
                padding: 18px 0;
                transition: var(--transition);
            }

            .navbar.scrolled {
                box-shadow: var(--shadow-soft);
            }

            .navbar-brand img {
                height: 50px;
            }

            .navbar-nav .nav-link {
                font-weight: 500;
                margin: 0 14px;
                color: #1f2937;
                font-size: 15px;
            }

            .navbar-nav .nav-link:hover {
                color: var(--primary);
            }
        
        
        
        /* Default state (top) */
.custom-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;
    padding: 18px 0;
    transition: all 0.3s ease;
}

/* On scroll */
.custom-navbar.scrolled {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    position: fixed;
}

/* Logo animation */
.custom-navbar img {
    height: 60px;
    transition: 0.3s;
}

.custom-navbar.scrolled img {
    height: 48px;
}


.custom-navbar.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}
        
        
            .hero {
                position: relative;
                min-height: 92vh;
                background: url("/assets/img/hero.jpg") center/cover no-repeat;
                display: flex;
                align-items: center;
            }

            .hero-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    to right,
                    rgba(255, 255, 255, 0.92),
                    rgba(255, 255, 255, 0.65),
                    rgba(255, 255, 255, 0.15)
                );
            }

            .hero-container {
                position: relative;
                z-index: 2;
            }

            .hero-content {
                max-width: 560px;
            }

            .hero-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: #118ec4;
                color: #fff;
                padding: 6px 14px;
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 18px;
            }

            .hero-title {
                font-size: 62px;
                line-height: 1.05;
                margin-bottom: 22px;
                color: #0f1720;
                text-align: left;
            }

            .hero-text {
                font-size: 20px;
                color: #4a5565;
                margin-bottom: 35px;
                text-align: left;
            }

            .hero-buttons {
                display: flex;
                gap: 16px;
                margin-bottom: 40px;
                flex-wrap: wrap;
            }

            .btn-primary-custom {
                background: #118ec4;
                color: #fff;
                padding: 16px 34px;
                font-weight: 600;
                border: 2px solid #118ec4;
                border-radius: 0;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                height: 58px;
            }

            .btn-primary-custom:hover {
                background: #0b8fc6;
                border-color: #0b8fc6;
            }

            .btn-outline-custom {
                border: 2px solid #118ec4;
                color: #118ec4;
                padding: 16px 34px;
                font-weight: 600;
                background: #fff;
                border-radius: 0;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                height: 58px;
            }

            .btn-outline-custom:hover {
                background: #118ec4;
                color: #fff;
            }

            .hero-trust {
                display: flex;
                gap: 40px;
            }

            .trust-item strong {
                display: block;
                font-size: 22px;
                color: #0f1720;
            }

            .trust-item span {
                font-size: 14px;
                color: #6b7280;
            }

            .hero-image img {
                max-width: 100%;
            }

            @media (max-width: 992px) {
                .hero {
                    text-align: center;
                }

                .hero-content {
                    margin: auto;
                }

                .hero-title {
                    font-size: 42px;
                }

                .hero-trust {
                    justify-content: center;
                }
            }

            .hero-buttons {
                display: flex;
                gap: 18px;
                margin-bottom: 40px;
                flex-wrap: wrap;
                align-items: center;
            }
        
        
        
            .about-section {
                padding: 100px 0;
                background: #f6fbfe;
            }

            .about-image img {
                width: 100%;
                border-radius: 4px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }

            .about-content {
                max-width: 540px;
            }

            .about-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: #eaf7fd;
                color: #118ec4;
                padding: 6px 14px;
                font-weight: 600;
                font-size: 14px;
                margin-bottom: 18px;
            }

            .about-text {
                font-size: 17px;
                color: #4a5565;
                margin-bottom: 18px;
            }

            .about-features {
                margin-top: 30px;
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .feature-item {
                display: flex;
                align-items: flex-start;
                gap: 16px;
            }

            .feature-icon {
                width: 44px;
                height: 44px;
                background: #eaf7fd;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 20px;
                color: #118ec4;
            }

            .feature-item h5 {
                font-size: 18px;
                margin-bottom: 4px;
            }

            .feature-item p {
                margin: 0;
                font-size: 15px;
                color: #6b7280;
            }

            @media (max-width: 992px) {
                .about-section {
                    padding: 70px 0;
                }

                .about-content {
                    max-width: 100%;
                }
            }

            .about-features {
                margin-top: 30px;
                display: flex;
                flex-direction: column;
                gap: 22px;
            }

            .about-btn {
                margin-top: 20px;
            }
        
        
        
            .why-section {
                padding: 100px 0;
                background: #fff;
            }

            .section-header {
                max-width: 700px;
                margin: auto;
                margin-bottom: 60px;
            }

            .section-subtitle {
                color: #6b7280;
                font-size: 18px;
            }

            .why-card {
                padding: 40px 30px;
                border: 1px solid #e6eef5;
                transition: all 0.3s ease;
                height: 100%;
                background: #fff;
            }

            .why-card:hover {
                border-color: #118ec4;
                transform: translateY(-6px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            }

            .why-icon {
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #eaf7fd;
                color: #118ec4;
                font-size: 28px;
                margin-bottom: 20px;
            }

            .why-card h4 {
                font-size: 20px;
                margin-bottom: 12px;
            }

            .why-card p {
                color: #6b7280;
                font-size: 15px;
                line-height: 1.6;
            }

            @media (max-width: 768px) {
                .why-section {
                    padding: 70px 0;
                }
            }
        
        
        
            .services-section {
                padding: 100px 0;
                background: #f6fbfe;
            }

            .section-header {
                max-width: 700px;
                margin: auto;
                margin-bottom: 60px;
            }

            .section-subtitle {
                font-size: 18px;
                color: #6b7280;
            }

            .service-card {
                background: #fff;
                border: 1px solid #e6eef5;
                height: 100%;
                transition: all 0.35s ease;
            }

            .service-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
                border-color: #118ec4;
            }

            .service-image {
                overflow: hidden;
            }

            .service-image img {
                width: 100%;
                height: 220px;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .service-card:hover .service-image img {
                transform: scale(1.05);
            }

            .service-content {
                padding: 30px 25px;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #eaf7fd;
                color: #118ec4;
                font-size: 24px;
                margin-bottom: 15px;
            }

            .service-content h4 {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .service-content p {
                font-size: 15px;
                color: #6b7280;
                line-height: 1.6;
            }

            @media (max-width: 768px) {
                .services-section {
                    padding: 70px 0;
                }

                .service-image img {
                    height: 200px;
                }
            }
        
        
        
            .cta-contact {
                padding: 90px 0;
                background: #0f1720;
                color: #fff;
            }

            .cta-title {
                font-size: 42px;
                margin-bottom: 12px;
                color: #fff;
            }

            .cta-subtitle {
                font-size: 18px;
                color: #cbd5e1;
                margin-bottom: 40px;
            }

            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .cta-btn {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 16px 30px;
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                transition: 0.3s;
            }

            .cta-btn i {
                font-size: 18px;
            }

            /* Call Button */

            .call-btn {
                background: #118ec4;
                color: #fff;
            }

            .call-btn:hover {
                background: #0b8fc6;
            }

            /* WhatsApp */

            .whatsapp-btn {
                background: #25d366;
                color: #fff;
            }

            .whatsapp-btn:hover {
                background: #1ebd5a;
            }

            /* Contact Form */

            .form-btn {
                border: 2px solid #118ec4;
                color: #118ec4;
            }

            .form-btn:hover {
                background: #118ec4;
                color: #fff;
            }

            @media (max-width: 768px) {
                .cta-title {
                    font-size: 30px;
                }

                .cta-buttons {
                    flex-direction: column;
                }

                .cta-btn {
                    justify-content: center;
                    width: 100%;
                }
            }
        
        
        
            .technology-section {
                padding: 100px 0;
                background: #fff;
            }

            .technology-content {
                max-width: 520px;
            }

            .technology-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: #eaf7fd;
                color: #118ec4;
                padding: 6px 14px;
                font-weight: 600;
                font-size: 14px;
                margin-bottom: 18px;
            }

            .technology-text {
                font-size: 17px;
                color: #4a5565;
                margin-bottom: 30px;
            }

            .technology-features {
                display: flex;
                flex-direction: column;
                gap: 22px;
            }

            .tech-item {
                display: flex;
                align-items: flex-start;
                gap: 14px;
            }

            .tech-item i {
                font-size: 22px;
                color: #118ec4;
                margin-top: 4px;
            }

            .tech-item h5 {
                font-size: 18px;
                margin-bottom: 4px;
            }

            .tech-item p {
                margin: 0;
                font-size: 15px;
                color: #6b7280;
            }

            .technology-image img {
                width: 100%;
                border-radius: 4px;
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
            }

            @media (max-width: 992px) {
                .technology-section {
                    padding: 70px 0;
                }

                .technology-content {
                    max-width: 100%;
                }
            }
        
        
        
        
            .hearing-impact {
                padding: 110px 0;
                background: #f6fbfe;
            }

            .section-header {
                max-width: 720px;
                margin: auto;
                margin-bottom: 70px;
            }

            .section-subtitle {
                font-size: 18px;
                color: #6b7280;
            }

            .impact-timeline {
                position: relative;
                max-width: 850px;
                margin: auto;
            }

            .impact-timeline::before {
                content: "";
                position: absolute;
                left: 50%;
                top: 0;
                width: 2px;
                height: 100%;
                background: #e5eef5;
                transform: translateX(-50%);
            }

            .impact-item {
                position: relative;
                display: flex;
                align-items: center;
                margin-bottom: 50px;
            }

            .impact-item:nth-child(odd) {
                flex-direction: row;
            }

            .impact-item:nth-child(even) {
                flex-direction: row-reverse;
            }

            .impact-icon {
                width: 60px;
                height: 60px;
                background: #eaf7fd;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 26px;
                color: #118ec4;
                border-radius: 50%;
                z-index: 2;
                margin: 0 25px;
            }

            .impact-content {
                background: #fff;
                padding: 25px 30px;
                border: 1px solid #e6eef5;
                max-width: 360px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            }

            .impact-content h4 {
                font-size: 20px;
                margin-bottom: 8px;
            }

            .impact-content p {
                font-size: 15px;
                color: #6b7280;
                margin: 0;
            }

            /* mobile */

            @media (max-width: 768px) {
                .impact-timeline::before {
                    display: none;
                }

                .impact-item {
                    flex-direction: column !important;
                    text-align: center;
                }

                .impact-icon {
                    margin-bottom: 15px;
                }

                .impact-content {
                    max-width: 100%;
                }
            }
        
        
        
            .reviews-section {
                padding: 110px 0;
                background: #fff;
            }

            .review-rating {
                margin-top: 20px;
            }

            .rating-stars {
                color: #fbbf24;
                font-size: 22px;
                margin-bottom: 8px;
            }

            .rating-text {
                color: #6b7280;
                font-size: 16px;
            }

            .review-card {
                background: #fff;
                border: 1px solid #e6eef5;
                padding: 30px;
                transition: 0.35s;
                height: 100%;
            }

            .review-card:hover {
                transform: translateY(-6px);
                border-color: #118ec4;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            }

            .review-text {
                font-size: 16px;
                color: #4a5565;
                margin-bottom: 25px;
            }

            .review-author {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .author-avatar {
                width: 44px;
                height: 44px;
                background: #eaf7fd;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #118ec4;
                font-size: 22px;
            }

            .review-author span {
                display: block;
                font-size: 13px;
                color: #6b7280;
            }

            @media (max-width: 768px) {
                .reviews-section {
                    padding: 70px 0;
                }
            }
        
        
        
        
            .insurance-section {
                padding: 100px 0;
                background: #f6fbfe;
            }

            .insurance-content {
                max-width: 520px;
            }

            .insurance-text {
                font-size: 17px;
                color: #4a5565;
                margin-bottom: 20px;
            }

            .insurance-card {
                background: #fff;
                padding: 30px;
                border: 1px solid #e6eef5;
                text-align: center;
                height: 100%;
                transition: 0.35s;
            }

            .insurance-card:hover {
                border-color: #118ec4;
                transform: translateY(-6px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            }

            .insurance-icon {
                width: 60px;
                height: 60px;
                background: #eaf7fd;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: auto;
                margin-bottom: 15px;
                font-size: 26px;
                color: #118ec4;
            }

            .insurance-card h5 {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .insurance-card p {
                font-size: 14px;
                color: #6b7280;
                margin: 0;
            }

            @media (max-width: 992px) {
                .insurance-section {
                    padding: 70px 0;
                }

                .insurance-content {
                    max-width: 100%;
                }
            }
        
        
        
            .contact-cta {
                padding: 110px 0;
                background: linear-gradient(135deg, #0f1720, #1e293b);
                color: #fff;
            }

            .contact-info {
                max-width: 520px;
            }

            .contact-title {
                font-size: 42px;
                margin-bottom: 20px;
                color: #fff;
            }

            .contact-text {
                color: #cbd5e1;
                font-size: 18px;
                margin-bottom: 35px;
            }

            .contact-details {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }

            .contact-item {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 16px;
                color: #e2e8f0;
            }

            .contact-item i {
                font-size: 20px;
                color: #118ec4;
            }

            /* FORM */

            .contact-form {
                background: #fff;
                padding: 40px;
                border-radius: 4px;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            }

            .form-title {
                margin-bottom: 25px;
                color: #0f1720;
            }

            .contact-form .form-control {
                border-radius: 0;
                padding: 14px;
                border: 1px solid #e6eef5;
            }

            .contact-form .form-control:focus {
                border-color: #118ec4;
                box-shadow: none;
            }

            @media (max-width: 992px) {
                .contact-cta {
                    padding: 70px 0;
                    text-align: center;
                }

                .contact-info {
                    margin: auto;
                }
            }
        
        
        
            footer {
                background: var(--section-light);
                padding: 70px 0 20px 0;
            }

            .footer-title {
                font-weight: 700;
                margin-bottom: 20px;
            }

            .footer-links a {
                display: block;
                margin-bottom: 12px;
                color: var(--text-soft);
            }

            .footer-links a:hover {
                color: var(--primary);
            }

            .footer-bottom {
                border-top: 1px solid var(--border-soft);
                margin-top: 30px;
                padding-top: 20px;
                font-size: 14px;
            }
        
        
        
            .sticky-contact {
                position: fixed;
                right: 20px;
                bottom: 20px;
                display: flex;
                flex-direction: column;
                gap: 12px;
                z-index: 999;
            }

            .sticky-btn {
                width: 52px;
                height: 52px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                color: #fff;
                font-size: 20px;
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
                transition: 0.3s;
            }

            .sticky-btn:hover {
                transform: translateY(-3px);
            }

            /* Call */

            .call-btn {
                background: #118ec4;
            }

            /* WhatsApp */

            .whatsapp-btn {
                background: #25d366;
            }

            /* Contact Form */

            .form-btn {
                background: #0f1720;
            }

            @media (max-width: 768px) {
                .impact-timeline::before {
                    display: none;
                }

                .impact-item {
                    flex-direction: column !important;
                    text-align: center;
                    margin-bottom: 40px;
                }

                .impact-icon {
                    margin-bottom: 15px;
                    margin-left: 0;
                    margin-right: 0;
                }

                .impact-content {
                    max-width: 100%;
                    width: 100%;
                    padding: 22px;
                }
            }

            html,
            body {
                overflow-x: hidden;
            }
            
            
            @media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.25s ease-in-out;
        pointer-events: none;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}


ul.dropdown-menu {
    border-radius: 0px;
    border-color: #118ec461;
}

.service-btn {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #118ec4;
    transition: 0.3s;
}

.service-card:hover .service-btn {
    letter-spacing: 0.5px;
}

a .service-content h4{
    color: #212529;
}

a .blog-content h4{
    color: #212529;
}

.footer-social.social-icons a{color:#118ec4;}


 .breadcrumb-section {
    background: #f6fbfe;
    padding: 50px 0 40px;
    border-bottom: 1px solid #e5eef5;
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-title {
    font-size: 38px;
    margin-bottom: 10px;
    color: #0f1720;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-nav a {
    color: #118ec4;
    font-weight: 500;
}

.breadcrumb-nav span {
    margin: 0 6px;
}




   .mvv-section {
    padding: 100px 0;
    background: #ffffff;
}

.mvv-card {
    background: #fff;
    border: 1px solid #e6eef5;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-6px);
    border-color: #118ec4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.mvv-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #eaf7fd;
    color: #118ec4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.mvv-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mvv-section {
        padding: 70px 0;
    }
}



    .services-intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-text {
    font-size: 17px;
    color: #4a5565;
    margin-bottom: 25px;
}

.services-usp {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #0f1720;
}

.usp-item i {
    color: #118ec4;
    font-size: 18px;
}

.services-intro-image img {
    width: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}






.services-content { padding: 80px 0; background: #f6fbfe; }
    .services-process {
    padding: 100px 0;
    background: #ffffff;
}

.process-card {
    padding: 35px 25px;
    border: 1px solid #e6eef5;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.process-card:hover {
    border-color: #118ec4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: #eaf7fd;
    color: #118ec4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 15px;
    color: #6b7280;
}





    .service-detail {
    padding: 100px 0;
    background: #f6fbfe;
}

.service-detail-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-detail-content ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.service-detail-content li {
    margin-bottom: 6px;
    color: #4a5565;
}




/* ===== HERO ===== */
.hl-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #eaf7fd, #ffffff);
}

.hl-hero h1 {
    font-size: 56px;
}

.hl-hero p {
    color: #6b7280;
    font-size: 18px;
}

/* ===== INFO GRID ===== */
.hl-info-grid {
    padding: 100px 0;
}

.hl-info-card {
    padding: 30px;
    border: 1px solid #e6eef5;
    text-align: center;
    transition: 0.3s;
}

.hl-info-card:hover {
    transform: translateY(-6px);
    border-color: #118ec4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hl-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #eaf7fd;
    color: #118ec4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

/* ===== SPLIT IMAGE ===== */
.hl-split {
    padding: 100px 0;
    background: #f6fbfe;
}

.hl-split img {
    width: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* ===== TYPES CARDS ===== */
.hl-types {
    padding: 110px 0;
}

.hl-type-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e6eef5;
    background: #fff;
    transition: 0.3s;
}

.hl-type-card:hover {
    transform: translateY(-8px);
    border-color: #118ec4;
}

.hl-type-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.hl-type-content {
    padding: 30px;
}

/* ===== DARK SECTION ===== */
.hl-dark {
    padding: 100px 0;
    background: #0f1720;
    color: #fff;
}

.hl-dark p {
    color: #cbd5e1;
}

/* ===== MINI CARDS ===== */
.hl-mini {
    padding: 100px 0;
    background: #f6fbfe;
}

.hl-mini-card {
    padding: 25px;
    border-left: 4px solid #118ec4;
    background: #fff;
}

/* ===== CTA ===== */
.hl-cta {
    padding: 100px 0;
    background: #118ec4;
    text-align: center;
    color: #fff;
}

.hl-cta a {
    background: #fff;
    color: #118ec4;
    padding: 14px 30px;
    font-weight: 600;
    display: inline-block;
}


/* ===== HERO ===== */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #eaf7fd, #ffffff);
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
}

.blog-hero p {
    color: #6b7280;
    max-width: 700px;
    margin: auto;
}

/* ===== FILTER BAR ===== */
.blog-filter {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e6eef5;
}

.blog-search {
    display: flex;
    gap: 10px;
}

.blog-search input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e6eef5;
}

.blog-search button {
    background: #118ec4;
    color: #fff;
    border: none;
    padding: 12px 20px;
}

/* ===== FEATURED ===== */
.blog-featured {
    padding: 80px 0;
}

.blog-featured-card {
    display: flex;
    gap: 30px;
    border: 1px solid #e6eef5;
}

.blog-featured-card img {
    width: 50%;
    object-fit: cover;
}

.blog-featured-content {
    padding: 30px;
}

.blog-tag {
    display: inline-block;
    background: #eaf7fd;
    color: #118ec4;
    padding: 4px 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* ===== GRID ===== */
.blog-grid {
    padding: 100px 0;
}

.blog-card {
    border: 1px solid #e6eef5;
    transition: 0.3s;
    background: #fff;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: #118ec4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #6b7280;
}

.blog-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
}

/* ===== PAGINATION ===== */
.blog-pagination {
    text-align: center;
    margin-top: 40px;
}

.blog-pagination a {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #e6eef5;
    margin: 4px;
    color: #118ec4;
}

.blog-pagination a.active {
    background: #118ec4;
    color: #fff;
}
