 
        :root {
            --wct-orange: #F58220;
            --wct-dark: #222222;
            --wct-gray: #555555;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--wct-dark);
            overflow-x: hidden;
        }

        /* Utility */
        .text-orange {
            color: var(--wct-orange) !important;
        }

        .bg-orange {
            background-color: var(--wct-orange) !important;
        }

        .btn-orange {
            background-color: var(--wct-orange);
            color: white;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-orange:hover {
            background-color: #e06d0e;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -10px rgba(245, 130, 32, 0.5);
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            margin-bottom: 50px;
        }

        .sub-title {
            color: var(--wct-orange);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        h2 {
            font-weight: 900;
            font-size: 2.5rem;
        }

        /* Navbar */
        .navbar {
            padding-top: 15px;
            padding-bottom: 15px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding-top: 8px;
            padding-bottom: 8px;
            background: white !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 900;
            font-size: 1.3rem;
            color: var(--wct-dark) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-brand img {
            width: 55px;
            height: auto;
        }

        .nav-link {
            font-weight: 600;
            color: var(--wct-dark) !important;
            margin-left: 20px;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--wct-orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Hero */
        #home {
            height: 100vh;
            min-height: 650px;
            background:
                linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1494412651409-ae5e0ee2618b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            padding: 0;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-badge {
            background-color: var(--wct-orange);
            color: white;
            padding: 6px 18px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 25px;
            border-radius: 30px;
        }

        /* About */
        .about-img-wrapper {
            position: relative;
            padding: 30px;
        }

        .about-img {
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
        }

        .about-shape {
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: var(--wct-orange);
            opacity: 0.12;
            z-index: 1;
            border-radius: 20px;
        }

        .shape-1 {
            top: 0;
            left: 0;
        }

        .shape-2 {
            bottom: 0;
            right: 0;
        }

        .feature-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--wct-orange);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        /* Services */
        #services {
            background-color: var(--wct-dark);
            color: white;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            background: var(--wct-orange);
            border-color: transparent;
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--wct-orange);
            margin-bottom: 25px;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: white;
        }

        .service-card h3 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease;
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.95);
        }

        /* Contact */
        .contact-info-box {
            background-color: var(--wct-dark);
            color: white;
            padding: 50px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-info-box::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(245, 130, 32, 0.4) 0%, rgba(245, 130, 32, 0) 70%);
            z-index: 0;
        }

        .contact-list li {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        .contact-list i {
            font-size: 1.5rem;
            color: var(--wct-orange);
            margin-right: 20px;
            margin-top: 5px;
        }

        .contact-list a {
            color: white;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact-list a:hover {
            color: var(--wct-orange);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #888;
            padding: 50px 0 20px;
        }

        footer h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 25px;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        footer ul li a {
            color: #888;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        footer ul li a:hover {
            color: var(--wct-orange);
        }

        /* Accessibility */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--wct-orange);
            outline-offset: 3px;
        }

        #home {
            height: 100vh;
            min-height: 650px;
            background:
                linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
                url('/assets/img/banner.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            display: flex;
            align-items: center;
            padding: 0;
        }
  html, body {
    overflow-x: hidden;
}

@media (max-width: 576px) {
    .contact-info-box {
        padding: 25px !important;
    }
}
