
        :root {
            --primary: #ff6d00;
            --secondary: #ff7900;
            --accent: #ff8500;
            --white: #ffffff;
            --dark: #1a1a1a;
            --light-sec: #fffcf9;
        }

        body { font-family: 'Outfit', sans-serif; color: var(--dark); background-color: var(--white); overflow-x: hidden; }
        h1, h2, h3, .nav-link { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

        /* Navbar */
        .nav-item{
            margin-left:15px !important;
        }
        .navbar { padding: 1.5rem 0; background: transparent !important; }
        .navbar-brand { font-size: 1.6rem; color: var(--primary) !important; font-weight: 800; display: flex; align-items: center; }
        .nav-link { color: var(--dark) !important; margin: 0 10px; transition: 0.3s; }
        .nav-link:hover { color: var(--primary) !important; }
        .btn-cta { background: var(--primary); color: white !important; border: none; padding: 12px 25px; border-radius: 8px; font-weight: 600; }
        .btn-cta:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 109, 0, 0.2); }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1920');
            height: 85vh; display: flex; align-items: center; color: white; background-size: cover; background-position: center;
        }

        /* Generic Section */
        section { padding: 90px 0; }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.5rem; position: relative; padding-bottom: 15px; text-transform: uppercase; }
        .section-title h2::after { content: ''; position: absolute; width: 60px; height: 5px; background: var(--primary); bottom: 0; left: 50%; transform: translateX(-50%); }

        /* Content Blocks - 15 Line Logic */
        .content-block-text { text-align: justify; line-height: 1.85; font-size: 1rem; color: #444; }

        /* Counter */
        .counter-section { background: var(--dark); color: white; padding: 60px 0; }
        .counter-box h2 { font-size: 3.5rem; color: var(--primary); font-weight: 800; margin-bottom: 0; }

        /* Work Process */
        .step-num { width: 60px; height: 60px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; font-weight: bold; }

        /* Service Cards - 7 line constraint */
        .service-card { border: none; transition: 0.4s; height: 100%; border-radius: 15px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
        .service-card:hover { transform: translateY(-10px); }
        .service-img { height: 230px; object-fit: cover; }
        .service-desc { 
            height: 250px; /* Forced depth for 7 lines */
            overflow: hidden; padding: 20px; font-size: 0.95rem; line-height: 1.65;
        }

        /* FAQ */
        .accordion-button:not(.collapsed) { background-color: var(--primary); color: white; }

        /* Footer */
        footer { background: #111111; color: #999; padding: 80px 0 20px; }
        footer a { color: #eee; text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--primary); }
