* {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        header {
            background: #f5ec7448;
            padding: 1rem 0;
            position: relative;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff6b35;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }


        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #ff6b35;
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 4rem 0;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            color: #4292e2;
            margin-bottom: 2rem;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 500px;
        }

        .view-button {
            background: #4ecdc4;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 7px;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
        }
        .view-button:hover{
            background: #44a08d;
        }



        .body-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow:hidden;
        }

        .body-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }



        .services {
            padding: 2rem 0;
            background: #fff;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services h2 {
            font-size: 3rem;
            font-weight: 410;
            color: #2c3e50;
            font-family: Arial, Helvetica, sans-serif;
            text-align: left;
        }
        span{
            color: red;
        }
        .heading1{
            color: blue;
        }
        .service-image{
    
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding-top: 2rem;
            
        }
        .last-section{
            margin-left: 40rem;
            }

            footer {
            background: #f5ec7448;
            margin-top: 6rem;
            padding: 10rem ;
            position: relative;
            z-index: 1000;
        }
        .footer-img{
            padding-left: 30rem;
                }
                .rights{
                    margin-top: 3rem;
                    text-align: center;
                }
  