* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            background-color: #ffffff;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        header .logo img {
            height: 70px;
            width: auto;
            vertical-align: middle;
        }

        nav {
            display: flex;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        nav a {
            color: #333333;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f97316, #c2410c);
            bottom: -4px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav a:hover::after, nav a:focus::after {
            width: 100%;
        }

        nav a:hover, nav a:focus {
            color: #f97316;
        }

        .banner {
            max-width: 100%;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .banner p {
            color: #ffffff;
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            z-index: 1;
            max-width: 80%;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero {
            text-align: center;
            padding: 6rem 1rem;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease-out;
        }

        .hero h2 {
            color: #f97316;
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
            animation: textPop 1.2s ease-out;
        }

        .hero p {
            color: #555555;
            max-width: 600px;
            margin: 0 auto 1.5rem;
            font-size: 1.2rem;
        }

        .hero .cta {
            display: inline-block;
            background: linear-gradient(90deg, #f97316, #c2410c);
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero .cta:hover, .hero .cta:focus {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        @keyframes textPop {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeIn 1s ease-out;
        }

        .section h2 {
            color: #333333;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f97316, #c2410c);
            margin: 0.5rem auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            justify-content: center;
        }

        .portfolio-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .portfolio-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .portfolio-card:hover img {
            transform: scale(1.05);
        }

        .portfolio-card .content {
            padding: 1.5rem;
            position: relative;
            background: linear-gradient(180deg, rgba(255,255,255,0.9), #ffffff);
        }

        .portfolio-card h3 {
            color: #f97316;
            font-size: 1.4rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .portfolio-card p {
            color: #555555;
            font-size: 1rem;
        }

        .portfolio-card .category {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(90deg, #f97316, #c2410c);
            color: #ffffff;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .portfolio-card .view-more {
            display: inline-block;
            background: linear-gradient(90deg, #f97316, #c2410c);
            color: #ffffff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            margin-top: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .portfolio-card .view-more:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            justify-content: center;
        }

        .service-card {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }

        .service-card::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #f97316, #c2410c);
            border-radius: 50%;
            top: -30px;
            right: -30px;
            opacity: 0.2;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover::before {
            transform: scale(1.5);
        }

        .service-card h3 {
            color: #f97316;
            font-size: 1.4rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .service-card p {
            color: #555555;
            font-size: 1rem;
        }

        .contact {
            padding: 4rem 1rem;
            background-color: #ffffff;
            text-align: center;
            position: relative;
        }

        .contact h2 {
            color: #f97316;
            font-size: 2.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 1rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #f97316;
            box-shadow: 0 0 8px rgba(249, 115, 22, 0.2);
            outline: none;
            transform: translateY(-2px);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            background: linear-gradient(90deg, #f97316, #c2410c);
            color: #ffffff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-form button::before {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: rgba(255,255,255,0.3);
            border-radius: 50%;
            top: -15px;
            left: -15px;
            transition: transform 0.3s ease;
        }

        .contact-form button:hover::before {
            transform: scale(4);
        }

        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        footer {
            background-color: #ffffff;
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid #e0e0e0;
            margin-top: 2rem;
        }

        footer p {
            color: #555555;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: center;
                padding: 1rem;
            }

            header .logo img {
                height: 35px;
                margin-bottom: 0.5rem;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 0.9rem;
            }

            .banner {
                height: 350px;
            }

            .banner p {
                font-size: 1.6rem;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .portfolio-card, .service-card {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            header .logo img {
                height: 30px;
            }

            nav a {
                margin: 0 0.3rem;
                font-size: 0.8rem;
            }

            .banner {
                height: 300px;
            }

            .banner p {
                font-size: 1.4rem;
            }
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            background-color: #ffffff;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        header .logo img {
            height: 70px;
            width: auto;
            vertical-align: middle;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            color: #333333;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f97316, #c2410c);
            bottom: -4px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav a:hover::after, nav a:focus::after {
            width: 100%;
        }

        nav a:hover, nav a:focus {
            color: #f97316;
        }

        .hero {
            text-align: center;
            padding: 6rem 1rem;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease-out;
        }

        .hero h2 {
            color: #f97316;
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
            animation: textPop 1.2s ease-out;
        }

        .hero p {
            color: #555555;
            max-width: 600px;
            margin: 0 auto 1.5rem;
            font-size: 1.2rem;
        }

        .content {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeIn 1s ease-out;
        }

        .content h3 {
            color: #333333;
            font-size: 2rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
        }

        .content p {
            color: #555555;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .content ul {
            list-style: none;
            padding-left: 0;
        }

        .content ul li {
            color: #555555;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .content ul li::before {
            content: '•';
            color: #f97316;
            position: absolute;
            left: 0;
        }

        @keyframes textPop {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: center;
                padding: 1rem;
            }

            header .logo img {
                height: 35px;
                margin-bottom: 0.5rem;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 0.9rem;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .content h3 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            header .logo img {
                height: 30px;
            }

            nav a {
                margin: 0 0.3rem;
                font-size: 0.8rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            background-color: #ffffff;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        header .logo img {
            height: 100px;
            width: auto;
            vertical-align: middle;
        }

        nav {
            display: flex;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        nav a {
            color: #333333;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f97316, #c2410c);
            bottom: -4px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav a:hover::after, nav a:focus::after {
            width: 100%;
        }

        nav a:hover, nav a:focus {
            color: #f97316;
        }

        .hero {
            text-align: center;
            padding: 6rem 1rem;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease-out;
        }

        .hero h2 {
            color: #f97316;
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
            animation: textPop 1.2s ease-out;
        }

        .hero p {
            color: #555555;
            max-width: 600px;
            margin: 0 auto 1.5rem;
            font-size: 1.2rem;
        }

        .hero .cta {
            display: inline-block;
            background: linear-gradient(90deg, #f97316, #c2410c);
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero .cta:hover, .hero .cta:focus {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        @keyframes textPop {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeIn 1s ease-out;
        }

        .section h2 {
            color: #333333;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f97316, #c2410c);
            margin: 0.5rem auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            justify-content: center;
        }

        .gallery-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        footer {
            background-color: #ffffff;
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid #e0e0e0;
            margin-top: 2rem;
        }

        footer p {
            color: #555555;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: center;
                padding: 1rem;
            }

            header .logo img {
                height: 35px;
                margin-bottom: 0.5rem;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 0.9rem;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .gallery-grid img {
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            header .logo img {
                height: 30px;
            }

            nav a {
                margin: 0 0.3rem;
                font-size: 0.8rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .gallery-grid img {
                height: 120px;
            }
        }