
        /* ── GLOBAL THEME ── */
        body, .container-fluid {
            background: linear-gradient(120deg, #1a2530 0%, #2c3e50 100%);
            min-height: 100vh;
        }

        /* ── HERO SECTION ── */
        .tms-hero {
            min-height: 290px;
            padding-bottom: 120px;
            background-color: #2C3E50;
            letter-spacing: 0.05em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ── MISSION / VISION CARDS ── */
        .mv-section {
            margin-top: -95px;
            margin-bottom: 5px;
            position: relative;
            z-index: 10;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        @media(max-width:768px) { .mv-grid { grid-template-columns: 1fr; } }

        .mv-card {
            background: #1e293b;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .mv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(249, 115, 22, 0.1);
            border-color: rgba(249, 115, 22, 0.3);
        }

        .mv-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(246, 132, 45, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(249, 115, 22, 0.2);
        }

        /* ── SECTION HEADER ── */
        .section-header h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #f6842d;
            border-radius: 2px;
        }

        /* ── PREMIUM SERVICE CARDS (The "Follow Same" Design) ── */
        .service-card-premium {
            background: linear-gradient(145deg, #1a2530 0%, #0f172a 100%);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
            position: relative;
        }

        .service-card-premium:hover {
            transform: translateY(-5px);
            border-color: rgba(246, 132, 45, 0.4);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.8);
        }

        /* Fixed Image Frame (Solves image_aeb97e.png shrinking issue) */
        .service-media-wrapper {
            position: relative;
            height: 220px; /* Fixed height for uniformity */
            width: 100%;
            overflow: hidden;
            background: #1e293b;
        }

        /* Hover Overlay & Button */
        .service-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0);
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card-premium:hover .service-overlay {
            background: rgba(15, 23, 42, 0.6);
        }

        .service-cta {
            opacity: 0;
            transform: translateY(20px);
            background: #f6842d;
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            transition: all 0.4s ease;
        }

        .service-card-premium:hover .service-cta {
            opacity: 1;
            transform: translateY(0);
        }

        /* Content Area */
        .service-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .service-title {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .service-description {
            font-family: 'Lato', sans-serif;
            color: #cbd5e1;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .service-card-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(246, 132, 45, 0.3);
        }
