
        /* Modern CSS Reset and Variables */
        :root {
            --primary: #1e3c72;
            --primary-light: #3C70B4;
            --accent: #c9e021;
            --accent-dark: #a8bc1c;
            --cta: #ff5722;
            --text-light: #ffffff;
            --text-dark: #333333;
            --gray-light: #f8f9fa;
            --gray: #6c757d;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Modern Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--gray-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }

        /* Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center {
            text-align: center;
        }

        /* Header and Navigation */
        .header {
            position: fixed;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            padding: 15px 50px;
            background-color: transparent;
        }

            .header.scrolled {
                padding: 10px 50px;
                box-shadow: var(--shadow-md);
                background-color: white;
            }

                .header.scrolled .nav-link {
                    color: black;
                }

                .header.scrolled .mobile-menu-btn {
                    color: black;
                }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .logo {
            width: 180px;
            transition: var(--transition);
        }

        .header.scrolled .logo {
            width: 150px;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

            .nav-link::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--primary);
                transition: var(--transition);
            }

            .nav-link:hover::after {
                width: 100%;
            }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: white;
            padding: 5px;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: #d3ae55;
            padding: 80px 40px;
            transition: var(--transition);
            z-index: 99999;
            box-shadow: var(--shadow-lg);
        }

            .mobile-nav.active {
                right: 0;
            }

        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
            padding: 5px;
        }

        .mobile-nav-menu {
            list-style: none;
        }

            .mobile-nav-menu .nav-link {
                display: block;
                padding: 15px 0;
                font-size: 18px;
            }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            padding: 120px 50px;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/house-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text-light);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            align-items: center;
        }

        .hero-heading {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 30px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        /* Modern Form Styles */
        .form-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
        }

        .form-title {
            color: var(--text-dark);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .form-subtitle {
            color: var(--gray);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

            .form-group label {
                display: block;
                margin-bottom: 8px;
                color: var(--text-dark);
                font-weight: 500;
            }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--gray-light);
            border-radius: 8px;
            font-size: 16px;
            transition: var(--transition);
            background: white;
        }

            .form-control:focus {
                outline: none;
                border-color: var(--primary);
                box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
            }
        input.form-control, textarea.form-control {
            color: #191924;
        }
        /* Button Styles */
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            gap: 10px;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .button-primary {
            background: var(--primary);
            color: var(--text-light);
        }

            .button-primary:hover {
                background: var(--primary-light);
                transform: translateY(-2px);
                box-shadow: var(--shadow-lg);
            }

        .button-accent {
            background: var(--accent);
            color: var(--text-dark);
        }

            .button-accent:hover {
                background: var(--accent-dark);
                transform: translateY(-2px);
                box-shadow: var(--shadow-lg);
            }

        .button-full {
            width: 100%;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--gray-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--primary);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .section-title {
            color: var(--text-dark);
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .service-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

            .service-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: var(--primary);
                transform: scaleX(0);
                transition: var(--transition);
                transform-origin: left;
            }

            .service-card:hover {
                transform: translateY(-10px);
                box-shadow: var(--shadow-lg);
            }

                .service-card:hover::before {
                    transform: scaleX(1);
                }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .service-description {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            align-items: center;
            padding: 0 20px;
        }

        .features-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

            .features-image img {
                width: 100%;
                height: auto;
                display: block;
                transition: var(--transition);
            }

        .features-content {
            /*padding: 40px;*/
        }

        .features-list {
            list-style: none;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: var(--gray-light);
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            transition: var(--transition);
        }

            .feature-item:hover {
                transform: translateX(10px);
                background: var(--primary);
                color: var(--text-light);
            }

        .feature-icon {
            font-size: 1.5rem;
            color: var(--accent);
            flex-shrink: 0;
        }

        .feature-info h3 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: var(--primary);
            color: var(--text-light);
        }

            .testimonials .section-subtitle,
            .testimonials .section-title {
                color: var(--text-light);
            }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

            .testimonial-card:hover {
                transform: translateY(-5px);
                background: rgba(255, 255, 255, 0.2);
            }

        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

            .testimonial-content::before {
                content: '"';
                position: absolute;
                left: -10px;
                top: -10px;
                font-size: 3rem;
                color: var(--accent);
                opacity: 0.5;
            }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

            .author-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-info p {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: var(--accent);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

            .cta::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('/api/placeholder/100/100') repeat;
                opacity: 0.1;
            }

        .cta-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-title {
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-text {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--text-light);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            width: 150px;
            margin-bottom: 20px;
        }

        .footer-about {
            margin-bottom: 30px;
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

            .footer-heading::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 40px;
                height: 2px;
                background: var(--accent);
            }

        .footer-links {
            list-style: none;
        }

            .footer-links li {
                margin-bottom: 15px;
            }

            .footer-links a {
                color: var(--text-light);
                text-decoration: none;
                opacity: 0.8;
                transition: var(--transition);
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }

                .footer-links a:hover {
                    opacity: 1;
                    padding-left: 5px;
                    color: var(--accent);
                }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-light);
            transition: var(--transition);
        }

            .social-link:hover {
                background: var(--accent);
                color: var(--text-dark);
                transform: translateY(-3px);
            }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.8;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
            z-index: 999;
        }

            .scroll-top.active {
                opacity: 1;
                visibility: visible;
            }

            .scroll-top:hover {
                background: var(--primary-light);
                transform: translateY(-5px);
            }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-heading {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero-form {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .header,
            .header.scrolled {
                padding: 15px 20px;
            }

            .mobile-menu-btn {
                display: block;
            }
            .hero {
                padding: 120px 20px 60px;
            }

            .hero-heading {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .services,
            .features,
            .testimonials,
            .cta {
                padding: 60px 0;
            }

            .button {
                padding: 10px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-heading {
                font-size: 2.2rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .button {
                width: 100%;
                margin-bottom: 10px;
            }

            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(50px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .animate-fade {
            animation: fadeIn 1s ease-out;
        }

        .animate-slide-up {
            animation: slideUp 1s ease-out;
        }

        .animate-slide-right {
            animation: slideInRight 1s ease-out;
        }

        /* Modern Section Styles */
        .section-header span {
            background: linear-gradient(45deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* FAQ Styles */
        .faq-item {
            transition: all 0.3s ease;
        }

        .faq-trigger {
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
        }

            .faq-trigger.active svg {
                transform: rotate(180deg);
            }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

            .faq-content.active {
                max-height: 200px;
            }

        /* Process Timeline */
        .process-timeline {
            position: relative;
            padding-left: 3rem;
        }

            .process-timeline::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 2px;
                background: var(--primary);
            }

        .process-item {
            position: relative;
            padding-bottom: 3rem;
        }

        .process-number {
            position: absolute;
            left: -3rem;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transform: translateX(-50%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .process-content {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-left: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .process-item:hover .process-content {
            transform: translateX(10px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
        }

        /* Project Cards */
        .project-card {
            position: relative;
            transition: transform 0.3s ease;
        }

            .project-card:hover {
                transform: translateY(-5px);
            }

            .project-card img {
                transition: transform 0.5s ease;
            }

            .project-card:hover img {
                transform: scale(1.05);
            }

        /* Stats Animation */
        .stat-item {
            padding: 2rem;
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

            .stat-item:hover {
                transform: translateY(-5px);
            }

        .stat-icon {
            transition: transform 0.3s ease;
        }

        .stat-item:hover .stat-icon {
            transform: scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .process-timeline {
                padding-left: 2rem;
            }

            .process-number {
                width: 2rem;
                height: 2rem;
                font-size: 0.875rem;
                left: -2rem;
            }

            .process-content {
                padding: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 640px) {
            .project-card {
                margin-bottom: 1.5rem;
            }

            .stat-item {
                padding: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.5s ease forwards;
        }
