:root {
            --primary-blue: #0b1f38;
            --secondary-blue: #0f294a;
            --accent-gold: #c59b27;
            --accent-gold-hover: #b08a22;
            --beige-bg: #eddcb5;
            --text-dark: #334155;
            --light-border: #e2e8f0;
            --whatsapp-green: #25d366;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: #fdfdfd;
        }
        
        .serif-font {
            font-family: 'Playfair Display', serif;
        }

       
        /* --- TOP UTILITY BAR --- */
        /* --- STABLE HEADER STYLES --- */
        .top-bar {
            background-color: var(--primary-blue);
            color: #ffffff;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .top-bar a { color: #ffffff; text-decoration: none; }
        
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border-bottom: 1px solid var(--light-border);
        }
        .brand-icon-box {
            background-color: var(--primary-blue);
            color: #ffffff;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-size: 1.25rem;
            font-weight: bold;
        }
        .brand-main-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .brand-sub-text {
            font-size: 0.65rem;
            font-weight: 500;
            color: #64748b;
            letter-spacing: 1.5px;
            display: block;
            margin-top: 1px;
        }

        /* --- FIXED RESPONSIVE NAVBAR ARCHITECTURE --- */
        @media (min-width: 992px) {
            .navbar-nav {
                display: flex;
                align-items: center;
                flex-direction: row; 
                flex-wrap: nowrap;
            }
            .nav-item {
                white-space: nowrap; 
            }
            .nav-link {
                color: var(--primary-blue) !important;
                font-weight: 500;
                font-size: 0.9rem;
                padding: 0.5rem 0.8rem !important;
                position: relative;
            }
            .nav-link:hover, .nav-link.active {
                color: var(--accent-gold) !important;
            }
            .nav-link.active::after {
                content: '';
                position: absolute;
                width: 35%;
                height: 2px;
                bottom: -2px;
                left: 0.8rem;
                background-color: var(--accent-gold);
            }
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #ffffff;
                padding: 1.2rem;
                border-radius: 8px;
                margin-top: 0.75rem;
                box-shadow: 0 8px 24px rgba(0,0,0,0.08);
                border: 1px solid var(--light-border);
            }
            .navbar-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                width: 100%;
            }
            .nav-link {
                color: var(--primary-blue) !important;
                font-weight: 600;
                font-size: 0.95rem;
                padding: 0.25rem 0 !important;
                width: 100%;
                border-bottom: 1px solid #f1f5f9;
            }
            .nav-link.active {
                color: var(--accent-gold) !important;
                border-bottom-color: var(--accent-gold);
            }
            .navbar-collapse .btn-gold {
                margin-top: 0.5rem;
                width: 100%;
                text-align: center;
            }
        }
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: 0.35em;
            vertical-align: 0.255em;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
            color: var(--accent-gold);
        }
        .btn-navbar-appointment {
            background-color: var(--accent-gold);
            color: #ffffff !important;
            font-weight: 400;
            font-size: 0.92rem;
            padding: 0.75rem 1.6rem;
            border-radius: 6px;
            border: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .btn-navbar-appointment:hover {
            background-color: var(--accent-gold-hover);
            transform: translateY(-1px);
        }
         /* --- HERO SLIDER HEIGHT --- */
        .hero-slider-item {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 5rem 0; 
            position: relative;
        }
        .hero-slider-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(7, 23, 43, 0.95) 0%, rgba(11, 34, 64, 0.85) 50%, rgba(22, 55, 90, 0.4) 100%);
            z-index: 1;
        }
        .hero-slider-item .container {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.4rem;
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            margin: 1rem 0;
        }
        .hero-title span {
            color: var(--accent-gold);
        }
        .hero-desc {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.02rem;
            margin-bottom: 2rem;
            max-width: 580px;
        }
        
        .btn-consult {
            background-color: var(--accent-gold);
            color: #ffffff;
            font-weight: 600;
            padding: 0.75rem 1.6rem;
            border-radius: 4px;
            border: none;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }
        .btn-outline-white {
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            font-weight: 500;
            padding: 0.75rem 1.6rem;
            border-radius: 4px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.04);
            padding: 0.85rem;
            border-radius: 8px;
        }
        .feature-icon-box {
            width: 44px;
            height: 44px;
            background: rgba(197, 155, 39, 0.12);
            border: 1px solid rgba(197, 155, 39, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .feature-text h5 {
            font-size: 0.92rem;
            color: #ffffff;
            font-weight: 600;
            margin: 0;
        }
        .feature-text p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
            margin: 0;
        }
        /* --- MAIN SIDEBAR SPLIT ARCHITECTURE --- */
        .section-tag {
            color: var(--accent-gold);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 4px;
        }
        .section-title {
            font-size: 1.85rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1.3;
        }

        /* Services Grid Layout */
        .services-layout-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 1.5rem;
        }
        .service-card-box {
            background-color: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 6px;
            padding: 2rem 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.01);
            transition: transform 0.2s;
        }
        .service-card-box:hover {
            transform: translateY(-2px);
            border-color: rgba(197,155,39,0.3);
        }
        .service-card-box i {
            font-size: 2.2rem;
            color: var(--primary-blue);
            margin-bottom: 1.2rem;
            display: inline-block;
        }
        .service-card-box h4 {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin: 0;
            line-height: 1.4;
        }

        /* Ribbon Metrics Banner */
        .metrics-ribbon-bar {
            background-color: var(--primary-blue);
            border-radius: 6px;
            padding: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #ffffff;
            margin: 2rem 0;
        }
        .ribbon-item { display: flex; align-items: center; gap: 10px; }
        .ribbon-item i { color: var(--accent-gold); font-size: 1.6rem; }
        .ribbon-item h3 { margin: 0; font-size: 1.25rem; font-weight: 700; }
        .ribbon-item p { margin: 0; font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; }

        /* Latest Updates Layout Matrix */
        .updates-row-layout {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 1.2rem;
        }
        .update-horizontal-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 4px;
            display: flex;
            height: 110px;
            overflow: hidden;
        }
        .update-info-block {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .update-badge-date {
            font-size: 0.65rem;
            color: var(--accent-gold);
            font-weight: 600;
        }
        .update-main-title {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin: 4px 0;
            line-height: 1.4;
        }
        .update-read-link {
            font-size: 0.72rem;
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
        }
        .update-side-img {
            width: 120px;
            background-size: cover;
            background-position: center;
        }

        /* --- THE SIDEBAR PANEL WIDGET STACK --- */
        .sidebar-stack-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        /* Widget Blue */
        .widget-card-blue {
            background-color: var(--primary-blue);
            color: #ffffff;
            padding: 1.5rem;
            border-radius: 6px;
        }
        .widget-card-blue h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
        .widget-card-blue ul { list-style: none; padding: 0; margin: 0 0 1.2rem 0; font-size: 0.8rem; }
        .widget-card-blue ul li { margin-bottom: 10px; display: flex; align-items: center; }
        .widget-card-blue ul li i { color: var(--accent-gold); margin-right: 10px; }
        .btn-widget-gold { background-color: var(--accent-gold); color: #ffffff; border: none; width: 100%; padding: 0.5rem 0; border-radius: 4px; font-size: 0.85rem; font-weight: 500; }

        /* Widget Beige */
        .widget-card-beige {
            background: linear-gradient(135deg, #f3e5ca 0%, #eddcb5 100%);
            padding: 1.5rem;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .widget-card-beige h5 { font-size: 1.1rem; font-weight: 600; color: var(--primary-blue); margin-bottom: 4px; }
        .widget-card-beige p { font-size: 0.78rem; color: #475569; margin-bottom: 12px; }
        .widget-card-beige i { font-size: 2.8rem; color: var(--primary-blue); opacity: 0.7; }
        .btn-widget-dark { background-color: var(--primary-blue); color: #ffffff; border: none; padding: 0.4rem 1.2rem; border-radius: 4px; font-size: 0.8rem; }

        /* Widget White WhatsApp */
        .widget-card-white {
            background-color: #ffffff;
            border: 1px solid var(--light-border);
            padding: 1.5rem;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.01);
        }
        .widget-card-white h5 { font-size: 0.95rem; font-weight: 600; color: var(--primary-blue); margin-bottom: 4px; }
        .widget-card-white p { font-size: 0.78rem; color: #64748b; margin-bottom: 12px; }
        .btn-widget-whatsapp { background-color: var(--whatsapp-green); color: #ffffff; width: 100%; display: block; text-align: center; text-decoration: none; padding: 0.5rem 0; border-radius: 4px; font-size: 0.85rem; font-weight: 500; }
		.btn-widget-whatsapp:hover { background-color: #00800e;color: #ffffff;}

        /* Testimonials Slider Block */
        .testimonial-sidebar-box { padding: 0.5rem 0; position: relative; }
        .ts-quote-mark { font-size: 2rem; color: var(--accent-gold); opacity: 0.3; position: absolute; left: 0; top: -5px; }
        .testimonial-sidebar-box h6 { font-size: 0.85rem; font-weight: 600; color: var(--accent-gold); margin-left: 2.2rem; text-transform: uppercase; letter-spacing: 0.5px; }
        .testimonial-sidebar-box p { font-size: 0.8rem; color: #475569; line-height: 1.5; margin: 12px 0; }
        .ts-author { font-size: 0.8rem; font-weight: 600; color: var(--primary-blue); margin: 0; }
        .ts-role { font-size: 0.7rem; color: #94a3b8; }

        /* --- THE 5-COLUMN FOOTER --- */
        footer {
            background-color: var(--primary-blue);
            color: #ffffff;
            padding: 3.5rem 0 1.5rem;
            font-size: 0.82rem;
        }
        footer h6 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        footer ul { list-style: none; padding: 0; margin: 0; }
        footer ul li { margin-bottom: 8px; }
        footer ul li a { color: rgba(255,255,255,0.7); text-decoration: none; }
        footer ul li a:hover { color: var(--accent-gold); }
        .footer-brand-title { font-size: 1.15rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
        .footer-social-strip a {
            color: #ffffff;
            background-color: rgba(255,255,255,0.06);
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 6px;
            transition: background 0.2s;
        }
        .footer-social-strip a:hover { background-color: var(--accent-gold); }
        .newsletter-input-group { display: flex; }
        .newsletter-input-group input {
            border: none;
            padding: 0.5rem 0.8rem;
            font-size: 0.8rem;
            border-radius: 4px 0 0 4px;
            outline: none;
            width: 100%;
        }
        .newsletter-input-group button {
            background-color: var(--accent-gold);
            color: #ffffff;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0 4px 4px 0;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .footer-base-strip {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 1.5rem;
            margin-top: 2.5rem;
            display: flex;
            justify-content: space-between;
            color: rgba(255,255,255,0.4);
            font-size: 0.75rem;
        }

        .whatsapp-floating-ball {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: var(--whatsapp-green);
            color: #ffffff;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
        }
        /* Teams Block */
        .team-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .team-image {
            position: relative;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            display: block;
        }

        .team-social {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,.55);

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;

            opacity: 0;
            transition: .3s;
        }

        .team-image:hover .team-social {
            opacity: 1;
        }

        .team-social a {
            color: #fff;
            font-size: 20px;
        }

        .team-content {
            padding: 20px;
        }

        .team-content h4 {
            margin-bottom: 5px;
        }

        .team-content p {
            color: #666;
            margin: 0;
        }.services-layout-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        @media(max-width:768px){
            .services-layout-matrix{
                grid-template-columns:1fr;
            }
        }
        .team-image img {
            transition: transform 0.4s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }
		/* Base Sidebar Style Matching Website Pattern */
    .kj-sidebar-perks {
        background-color: #ffffff;
        border-radius: 6px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid var(--light-border);
    }
    .kj-sidebar-perks h5 {
        color: var(--primary-blue);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    .kj-perks-list { list-style: none; padding: 0; margin: 0; }
    .kj-perks-list li {
        font-size: 0.88rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }
    .kj-perks-list li i { color: var(--accent-gold); margin-right: 12px; }

    /* Core Action Stack Elements */
    .kj-jobs-stack { display: flex; flex-direction: column; gap: 16px; margin-top: 1.5rem; }
    .kj-job-card {
        background-color: #ffffff;
        border: 1px solid #f1f5f9;
        border-left: 4px solid var(--primary-blue);
        border-radius: 6px;
        padding: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.25s ease;
    }
    .kj-job-card:hover {
        transform: translateY(-2px);
        border-left-color: var(--accent-gold);
        border-color: rgba(197, 155, 39, 0.2);
    }
    .kj-job-info h4 { font-size: 1.05rem; font-weight: 600; color: var(--primary-blue); margin-bottom: 6px; }
    .kj-job-meta { display: flex; gap: 20px; font-size: 0.8rem; color: #64748b; }
    .kj-job-meta span i { color: var(--accent-gold); margin-right: 6px; }

    .kj-btn-view {
        background-color: var(--primary-blue);
        color: #ffffff !important;
        font-weight: 500;
        font-size: 0.82rem;
        padding: 0.6rem 1.3rem;
        border-radius: 4px;
        border: none;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    .kj-btn-view:hover { background-color: var(--accent-gold); }

    /* Form Custom Input Styles */
    .form-control-custom {
        border: 1px solid #d1d5db;
        padding: 0.55rem 0.75rem;
        font-size: 0.88rem;
        border-radius: 4px;
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control-custom:focus {
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
        outline: none;
    }

    .bg-dark-blue { background-color: var(--primary-blue); color: #fff; font-weight: 500; font-size: 0.7rem; }
    .text-muted-gold { color: rgba(237, 220, 181, 0.85); }
    .text-gold { color: var(--accent-gold); }
    
    .btn-submit-application { background-color: var(--accent-gold); font-size: 0.85rem; transition: all 0.25s ease; }
    .btn-submit-application:hover { background-color: #b0871e; transform: translateY(-1px); }

    .job-description-scroll-box::-webkit-scrollbar { width: 4px; }
    .job-description-scroll-box::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 4px; }

    /* Responsive Adaptation */
    @media (max-width: 991px) {
        .modal-dialog { margin: 10px; }
        .kj-job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
        .kj-job-action { width: 100%; }
        .kj-btn-view { width: 100%; text-align: center; }
        .kj-job-meta { flex-direction: column; gap: 6px; }
    }
	/* Light Premium Color Palette */
    .bg-light-premium {
        background-color: #f8fafc; /* Crisp, clean ultra-light slate/grey background */
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .text-gold { 
        color: var(--accent-gold, #c59b27) !important; 
    }

    /* Fixed shorter constraints to stop structural layout bouncing */
    .kj-testimonials-section .carousel-inner {
        min-height: 115px;
    }

    /* Shorter, high-density typographic layout */
    .testimonial-main-text {
        font-size: 0.95rem;
        font-style: italic;
        line-height: 1.6;
        font-weight: 400;
        color: #334155; /* Highly readable dark slate text */
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Horizontal Bar Slider Navigation Dots */
    .carousel-indicators-standalone {
        display: flex;
        justify-content: center;
        gap: 8px;
        border: none;
        margin: 0;
        padding: 0;
    }

    .carousel-indicators-standalone button {
        width: 16px;
        height: 3px;
        border-radius: 2px;
        background-color: #cbd5e1; /* Light grey for inactive */
        border: none;
        padding: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .carousel-indicators-standalone button.active {
        background-color: var(--accent-gold, #c59b27); /* Classic corporate gold for active element */
        width: 32px; 
    }

    /* Mobile scaling balance structural configurations */
    @media (max-width: 768px) {
        .testimonial-main-text {
            font-size: 0.9rem;
            max-width: 100%;
        }
        .kj-testimonials-section .carousel-inner {
            min-height: auto;
        }
    }
</style>
<!-- END: Premium Client Testimonials Carousel Section (Compact & Light) -->
