    /* Enhanced Facility Management Section Styles */
        .fm-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .facility-hero {
            background: linear-gradient(135deg, #0a0f1e 0%, #0a2a3a 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        
        
       .facility-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/facility-img/housekeeping-service.jpg') center/cover no-repeat;
            opacity: 0.15;
            pointer-events: none;
        }
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .fm-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .facility-section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .facility-section-header .badge {
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .facility-section-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #0a192f;
            margin-bottom: 15px;
        }
        .facility-section-header h2:after { 
            content: ''; 
            display: block; 
            width: 300px; 
            height: 4px; 
            background: linear-gradient(90deg, #FFB347, #FF7E5F); 
            border-radius: 4px; 
            margin: 14px auto 0;
        }
        
        .facility-section-header p {
            font-size: 18px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .fm-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
            flex-wrap: wrap;
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 40px -12px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        
        .fm-row:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 50px -15px rgba(0,0,0,0.15);
        }
        
        .fm-row.reverse {
            flex-direction: row-reverse;
        }
        
        /* IMAGE */
        .fm-img {
            flex: 1;
            min-width: 280px;
            position: relative;
            overflow: hidden;
        }
        
        .fm-img img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .fm-row:hover .fm-img img {
            transform: scale(1.05);
        }
        
        .fm-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,107,53,0.1), rgba(255,180,71,0.05));
            pointer-events: none;
        }
        
        /* TEXT */
        .fm-text {
            flex: 1;
            min-width: 280px;
            padding: 30px 40px;
        }
        
        .fm-text .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fff5ef, #ffe8de);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .service-head {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 20px;
}

.service-head .service-icon {
    margin-bottom: 0; /* remove old spacing */
}

.service-head h3 {
    margin: 0;
}
        
        .fm-text .service-icon i {
            font-size: 32px;
            color: #ff6b35;
        }
        
        .fm-text  h3 {
            font-size: 28px;
            font-weight: 700;
            /* margin-bottom: 16px; */
            color: #0f172a;
            letter-spacing: -0.3px;
        }
        
        .fm-text p {
            color: #475569;
            line-height: 1.7;
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .fm-text .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ff6b35;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.5px;
            transition: gap 0.3s ease;
        }
        
        .fm-text .learn-more i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .fm-text .learn-more:hover {
            gap: 12px;
        }
        
        .fm-text .learn-more:hover i {
            transform: translateX(4px);
        }
        
        /* CTA Section */
        .fm-cta {
            margin-top: 60px;
            background: linear-gradient(135deg, #0a192f 0%, #0f2b3d 100%);
            border-radius: 40px;
            padding: 60px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .fm-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,107,53,0.15), transparent);
            border-radius: 50%;
        }
        
        .fm-cta::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255,180,71,0.1), transparent);
            border-radius: 50%;
        }
        
        .fm-cta h3 {
            font-size: 36px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            position: relative;
        }
        
        .fm-cta p {
            font-size: 18px;
            color: #cbd5e1;
            max-width: 550px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255,107,53,0.3);
            position: relative;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255,107,53,0.4);
            color: white;
            gap: 16px;
        }
        
        /* MOBILE */
        @media (max-width: 992px) {
            .fm-section {
                padding: 60px 20px;
            }
            .fm-row, .fm-row.reverse {
                flex-direction: column;
                gap: 0;
                margin-bottom: 50px;
            }
            .fm-img img {
                height: 280px;
            }
            .fm-text {
                padding: 30px 25px;
            }
            .fm-text h3 {
                font-size: 24px;
            }
            .facility-section-header h2 {
                font-size: 32px;
            }
            .fm-cta {
                padding: 40px 25px;
            }
            .fm-cta h3 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .fm-img img {
                height: 220px;
            }
            .fm-text {
                padding: 20px;
            }
            .fm-text h3 {
                font-size: 22px;
            }
            .facility-section-header .badge {
                font-size: 12px;
            }
        }
        
        /* Animation for rows */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .facility-hero{
              padding: 40px 0;
            }
            
            .facility-hero h1 {
                font-size: 36px;
            }
            .section-title {
                font-size: 28px;
            }
            .cta-section {
                padding: 40px 25px;
            }
            .service-card-header {
                padding: 20px;
            }
            .service-card-body {
                padding: 20px;
            }
        }

        
        .fm-row {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .fm-row:nth-child(1) { animation-delay: 0.1s; }
        .fm-row:nth-child(2) { animation-delay: 0.2s; }
        .fm-row:nth-child(3) { animation-delay: 0.3s; }
        .fm-row:nth-child(4) { animation-delay: 0.4s; }
        .fm-row:nth-child(5) { animation-delay: 0.5s; }
        .fm-row:nth-child(6) { animation-delay: 0.6s; }
        .fm-row:nth-child(7) { animation-delay: 0.7s; }
        .fm-row:nth-child(8) { animation-delay: 0.8s; }