
        /* --- General Setup --- */
        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

        :root {
            --primary-color: #278575;
            --primary-dark: #1e6b5e;
            --secondary-color: #051145;
            --text-color: #4a4a4a;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --accent: #f0ad4e;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
            --radius: 16px;
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Cairo', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--white);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; padding: 0; margin: 0; }
        img { max-width: 100%; height: auto; display: block; }

        /* --- Utilities --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(39, 133, 117, 0.3);
        }
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(39, 133, 117, 0.4);
        }

        /* --- Header --- */
        header {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo h2 {
            color: var(--secondary-color);
            margin: 0;
            font-size: 1.8rem;
            font-weight: 800;
        }
        .nav-links li { display: inline-block; margin-left: 30px; }
        .nav-links a {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.1rem;
        }
        .nav-links a:hover, .nav-links a.active { color: var(--primary-color); }

        /* --- Hero Section --- */
        .hero {
            padding: 80px 0;
            display: flex;
            align-items: center;
            gap: 60px;
            background: linear-gradient(135deg, #ecf0f2 0%, #ffffff 100%);
        }
        .hero-content { flex: 1; min-width: 300px; }
        
        .address-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #eefdf9;
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid #d0ebe5;
        }
        .address-pill svg { width: 16px; fill: currentColor; }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin: 0 0 20px 0;
            line-height: 1.2;
            font-weight: 800;
        }
        .hero p { margin-bottom: 35px; font-size: 1.15rem; color: #666; max-width: 500px; }
        
        .hero-image { flex: 1; min-width: 300px; position: relative; }
        .hero-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            transform: perspective(1000px) rotateY(-2deg);
            transition: 0.5s;
        }
        .hero-image:hover img { transform: perspective(1000px) rotateY(0deg); }

        /* --- Featured In --- */
        .featured-in {
            text-align: center;
            padding: 50px 0;
            background: var(--white);
            border-bottom: 1px solid #eee;
        }
        .featured-in h4 {
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .logos-grid {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            align-items: center;
            opacity: 0.7;
        }
        .logos-grid img {
            height: 45px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: 0.3s;
        }
        .logos-grid img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

        /* --- Stats & Ratings --- */
        .stats-section {
            background: var(--secondary-color);
            color: white;
            padding: 80px 0;
            text-align: center;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
        }
        .rating-number { font-size: 5rem; font-weight: 800; margin: 0; line-height: 1; color: var(--white); }
        .stars { margin: 15px 0; }
        .stars svg { width: 30px; fill: var(--accent); margin: 0 2px; }
        .bbb-rating { font-size: 1.1rem; opacity: 0.9; font-weight: 600; }
        
        .review-highlight {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: var(--radius);
            max-width: 700px;
            margin: 40px auto 0;
            backdrop-filter: blur(5px);
        }

        /* --- Services Grid --- */
        .services { padding: 80px 0; background: var(--bg-light); }
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 800;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }
        .service-card img { width: 100%; height: 260px; object-fit: cover; }
        .service-content { padding: 30px; }
        .service-content h3 { 
            margin-top: 0; 
            color: var(--secondary-color); 
            font-size: 1.4rem; 
            margin-bottom: 15px;
        }
        .service-content p { color: #666; font-size: 0.95rem; margin: 0; }

        /* --- Features List --- */
        .features { padding: 80px 0; background: var(--white); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .feature-item {
            padding: 30px 20px;
            border: 1px solid #f0f0f0;
            border-radius: var(--radius);
            background: #fff;
            transition: 0.3s;
        }
        .feature-item:hover {
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: #eefdf9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .feature-icon svg { width: 32px; fill: var(--primary-color); }
        .feature-item p { 
            font-weight: 700; 
            color: var(--secondary-color); 
            margin: 0; 
            font-size: 1.1rem; 
        }

        /* --- Testimonials --- */
        .testimonials-section { padding: 80px 0; background: var(--bg-light); text-align: center; }
        .reviews-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        .review-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            max-width: 500px;
            text-align: right;
            box-shadow: var(--shadow-sm);
            position: relative;
        }
        .review-card::before {
            content: "“";
            font-size: 80px;
            color: #ecf0f2;
            position: absolute;
            top: 10px;
            right: 20px;
            font-family: serif;
        }
        .review-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .client-name { color: var(--primary-color); font-weight: 700; font-size: 1.2rem; margin-bottom: 5px; }
        .client-review { font-style: italic; color: #555; }

        /* --- Footer --- */
        footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 60px 0 30px;
            text-align: center;
            font-size: 0.95rem;
        }
        footer p { margin-bottom: 10px; }
        footer strong { color: var(--white); }
        .footer-brand {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .hero { flex-direction: column-reverse; text-align: center; padding: 40px 0; }
            .hero h1 { font-size: 2.2rem; }
            .nav-links { display: none; } /* Simplified for mobile example */
            .header-inner { justify-content: center; flex-wrap: wrap; gap: 15px; }
            .btn { width: 100%; text-align: center; margin-top: 10px;}
        }
  