  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a1a1a;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 140, 0, 0.1);
        }

        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #ff8c00;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 16px;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #ff8c00;
        }

        .hire-btn {
            padding: 12px 30px;
            background: #ff8c00;
            color: #1a1a1a;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .hire-btn:hover {
            background: #ffa500;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ff8c00;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 80px 80px;
            background: #1a1a1a;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .hero-greeting {
            font-size: 24px;
            color: #999;
            margin-bottom: 10px;
        }

        .hero-name {
            font-size: 32px;
            color: #ccc;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: clamp(3rem, 6vw, 3rem);
            color: #ff8c00;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        .hero-description {
            color: #999;
            font-size: 18px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border: 2px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }

        .social-links a:hover {
            border-color: #ff8c00;
            color: #ff8c00;
            transform: translateY(-5px);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
        }

        .btn-primary {
            padding: 15px 35px;
            background: #ff8c00;
            color: #1a1a1a;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #ffa500;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
        }

        .btn-secondary {
            padding: 15px 35px;
            background: transparent;
            color: #fff;
            border: 2px solid #333;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            border-color: #ff8c00;
            color: #ff8c00;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding-top: 40px;
            border-top: 1px solid #333;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #ff8c00;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #999;
            font-size: 16px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-image img {
            max-width: 500px;
            width: 100%;
            height: auto;
            filter: grayscale(100%);
            transition: all 0.3s;
        }

        .hero-image:hover img {
            filter: grayscale(0%);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        /* About Section */
        .about {
            padding: 100px 80px;
            background: #1a1a1a;
        }

        .about h2 {
            color: #ff8c00;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            text-align: center;
            margin-bottom: 40px;
        }

        .about p {
            color: #999;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Services Section */
        .services {
            padding: 100px 80px;
            background: #0f0f0f;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: #ff8c00;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            color: #999;
            margin-bottom: 60px;
            font-size: 18px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 15px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .service-card:hover {
            border-color: #ff8c00;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.1);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #999;
            line-height: 1.6;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 100px 80px;
            background: #1a1a1a;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .portfolio-item {
            background: #0f0f0f;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .portfolio-item:hover {
            border-color: #ff8c00;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
        }

        .portfolio-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            /* font-size: 64px; */
            position: relative;
            overflow: hidden;
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: 0.3s;
        }

        .portfolio-item:hover .portfolio-image::before {
            opacity: 1;
        }

        .portfolio-info {
            padding: 30px;
        }

        .portfolio-info h3 {
            color: #ff8c00;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .portfolio-info p {
            color: #999;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .portfolio-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            padding: 5px 15px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 20px;
            font-size: 12px;
            color: #999;
        }
        .project-btns{
            position: absolute;
            bottom: 20px;
            display: none;
            gap: 15px;
        }
         .portfolio-item:hover .project-btns{
            display: flex;
        }
        .project-btn-primary {
            background: #ff8c00;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .project-btn-primary:hover {
            background: #ff6a00;
        }

        .project-btn-secondary {
            background: transparent;
            color: #ff8c00;
            background: #1a1a1a;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            border: 1px solid #ff8c00;
            transition: all 0.3s;
        }

        .project-btn-secondary:hover {
            background: rgba(255, 140, 0, 0.2);
        }

        /* Skills Section */
        .skills {
            padding: 100px 80px;
            background: #0f0f0f;
        }

        .skills-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .skill-category {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid transparent;
            transition: all 0.3s;
        }

        .skill-category:hover {
            border-color: #ff8c00;
        }

        .skill-category h3 {
            color: #ff8c00;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .skill-list {
            list-style: none;
        }

        .skill-list li {
            padding: 10px 0;
            color: #999;
            border-bottom: 1px solid #2a2a2a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .skill-list li:last-child {
            border-bottom: none;
        }

        .skill-level {
            color: #ff8c00;
            font-size: 12px;
        }

        /* Trust Section */
         /* Trust Section */
        .trust {
            padding: 100px 80px;
            background: #1a1a1a;
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .trust-card {
            background: #0f0f0f;
            padding: 40px;
            border-radius: 15px;
            border: 1px solid #333;
            transition: all 0.3s;
            text-align: center;
        }

        .trust-card:hover {
            border-color: #ff8c00;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.1);
        }

        .trust-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ff8c00;
        }

        .trust-card h3 {
            color: #fff;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .trust-card p {
            color: #999;
            line-height: 1.6;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            padding: 60px 40px;
            background: #0f0f0f;
            border-radius: 15px;
            border: 1px solid #333;
            margin-bottom: 40px;
        }

        .trust-stat-item {
            text-align: center;
        }

        .trust-stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #ff8c00;
            margin-bottom: 10px;
        }

        .trust-stat-label {
            color: #999;
            font-size: 16px;
        }

        .trust-guarantee {
            background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
            padding: 50px;
            border-radius: 15px;
            text-align: center;
            color: #1a1a1a;
        }

        .trust-guarantee h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .trust-guarantee p {
            font-size: 18px;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            color: #1a1a1a;
        }

        .trust-guarantee .btn-primary {
            background: #1a1a1a;
            color: #ff8c00;
        }

        .trust-guarantee .btn-primary:hover {
            background: #0f0f0f;
            color: #fff;
        }
        /* Contact Section */
        .contact {
            padding: 100px 80px;
            background: #1a1a1a;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            gap: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 18px;
            background: #0f0f0f;
            border: 1px solid #333;
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #ff8c00;
            box-shadow: 0 0 20px rgba(255, 140, 0, 0.1);
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: #0f0f0f;
            padding: 50px 80px;
            text-align: center;
            border-top: 1px solid #333;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            border: 2px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }

        .footer-social a:hover {
            border-color: #ff8c00;
            color: #ff8c00;
            transform: translateY(-5px);
        }

        footer p {
            color: #666;
        }

        #formStatus {
            padding: 15px;
            border-radius: 8px;
            font-weight: 500;
        }

        #formStatus.success {
            background: rgba(67, 233, 123, 0.1);
            border: 1px solid #43e97b;
            color: #43e97b;
        }

        #formStatus.error {
            background: rgba(245, 87, 108, 0.1);
            border: 1px solid #f5576c;
            color: #f5576c;
        }
        .lottie-container{
            width: 100%;
            max-width: 500px;
            height: 600px;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            filter: grayscale(100%);
        }
        .lottie-animation{
            width: 1000px;
            height: 1000px;
        }
        .contact-btn-container{
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-buttons,
            .social-links {
                justify-content: center;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                text-align: center;
            }

            .stat-item {
                text-align: center;
            }
            .hero-image {
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 20px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: rgba(15, 15, 15, 0.98);
                width: 100%;
                padding: 40px;
                transition: 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero,
            .services,
            .portfolio,
            .skills,
            .contact,
            footer {
                padding: 100px 20px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-group {
                flex-direction: column;
            }

            .portfolio-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            .lottie-container{
            width: 300px;
            height: 300px;
            margin-top: 50px;
            }
             .lottie-animation{
            width: 300px;
            height: 300px;
        }
        .trust{
            padding: 50px 20px;
        }
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 16px;
        }



        /* Quote Page Styles */