 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #007bff;
        }
        .nav-links {
            list-style: none;
            display: flex;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #007bff;
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 5px;
            transition: all 0.3s;
        }
        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                height: 92vh;
                top: 8vh;
                background-color: #fff;
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 50%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
            }
            .nav-links li {
                opacity: 0;
            }
            .burger {
                display: block;
            }
        }
        .nav-active {
            transform: translateX(0%);
        }
        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0px);
            }
        }
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero {
             
              
            background-image: url(https://lh3.googleusercontent.com/gps-cs-s/AG0ilSx7WKLrviBrEXIV7uZI7qr7vuyDOiPTLZkNySg4EvO4_XDhwk5pIaeD-Tr2HK6PW3mbqiNYQVrhTZXERWsZB62MCho2JoduIwL3GUjUbO2U2LNTXp7zXu6Lo7WHMCd2ooB54dkXeA=w258-h336-p-k-no);
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 8rem 2rem;
            margin-top: 8vh;
            border-radius: 9px;
            filter: blur(1px); 
   
        }
       
 

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #5a9de4;
             
        }
        .hero p {
            font-size: 1.7rem;
            margin-bottom: 2rem;
            color: #5a9de4;
            overflow: hidden;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: #fff;
            color: #667eea;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #f0f0f0;
        }
        .about, .services, .contact {
            background-color: #fff;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 3rem;
        }
        .about h2, .services h2, .contact h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #007bff;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .service {
            text-align: center;
            padding: 2rem;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .service h3 {
            margin-bottom: 1rem;
        }
        .contact form {
            display: grid;
            gap: 1rem;
        }
        .contact input, .contact textarea {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
        }
        .contact button {
            padding: 0.8rem;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        .contact button:hover {
            background-color: #0056b3;
        }
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 2rem;
        }
        footer p {
            margin-bottom: 1rem;
        }
        footer .social-links a {
            margin: 0 1rem;
            color: #fff;
            text-decoration: none;
        }