 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins';
            color: #374151;
            background-color: #f8fafc;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .container h1{
            position: relative;
            margin-left: 10px;
            z-index: 10;
            color: blue;
            background: linear-gradient(to bottom, white,#beb0b0);
            padding: 10px 20px;
            border-radius: 20px;
            box-shadow: 0px 0px 10px white;
            letter-spacing: 2px;
        }

      
        header {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: absolute;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header h1 {
            font-size: 1.5rem;
            font-weight: bold;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #60a5fa;
        }
        #mobile-menu-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            position: absolute;
            right: 10px;
            display: none;
        }
        .mobile-menu {
            display: none;
            background: #2563eb;
            padding: 0.5rem 1rem;
        }
        .mobile-menu a {
            display: block;
            padding: 0.5rem 0;
            border-radius: 0.25rem;
            transition: background 0.3s;
        }
        .mobile-menu a:hover {
            background: #1d4ed8;
        }


        #home {
            position: relative;
        }
        #home img {
            width: 100%;
            height: 16rem;
            object-fit: cover;
        }
        #home .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #home .hero-content {
            text-align: center;
            color: white;
            padding: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        #home .hero-content.active {
            opacity: 1;
            transform: translateY(0);
        }
        #home h1 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        #home p {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
        }
        #home a {
            background: #2563eb;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        #home a:hover {
            background: #1d4ed8;
        }
        .login{
            background: #2563eb;
            color: white;
            padding: 10px 5px;
            margin-bottom: 10px;
            text-align: center;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
            position: absolute;
            width: 20%;
            left: 40%;
        }
        .login:hover{
              background: #1d4ed8;
        }

      
        #services {
            padding: 3rem 0;
            background: white;
        }
        #services h2 {
            font-size: 1.875rem;
            font-weight: bold;
            text-align: center;
            color: #1e40af;
            margin-bottom: 2rem;
        }
        .services-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr;
        }
        .service-item {
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .service-item.active {
            opacity: 1;
            transform: translateY(0);
        }
        .service-item img {
            width: 100%;
            height: 12rem;
            object-fit: cover;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }
        .service-item h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1d4ed8;
            margin-bottom: 0.5rem;
        }
        .service-item p {
            color: #6b7280;
        }

      
        #about {
            padding: 3rem 0;
            background: #eff6ff;
        }
        #about h2 {
            font-size: 1.875rem;
            font-weight: bold;
            text-align: center;
            color: #1e40af;
            margin-bottom: 1rem;
        }
        #about > .container > p {
            max-width: 672px;
            margin: 0 auto 2rem;
            text-align: center;
            color: #374151;
        }
        .about-grid {
            display: grid;
            gap: 2rem;
            align-items: center;
            grid-template-columns: 1fr;
        }
        .about-img {
            width: 100%;
            border-radius: 0.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .about-img.active {
            opacity: 1;
            transform: translateY(0);
        }
        .about-text .active {
            opacity: 1;
            transform: translateY(0);
        }
        .about-text h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1d4ed8;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .about-text p {
            color: #6b7280;
            margin-bottom: 1rem;
        }
        .about-text ul {
            list-style: disc inside;
            color: #6b7280;
        }
        .about-text li {
            margin-bottom: 0.5rem;
        }

       
        #contact {
            padding: 3rem 0;
            background: white;
        }
        #contact h2 {
            font-size: 1.875rem;
            font-weight: bold;
            text-align: center;
            color: #1e40af;
            margin-bottom: 2rem;
        }
        #contact p {
            text-align: center;
            color: #6b7280;
            margin-bottom: 1rem;
        }
        .contact-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .contact-cta a {
            background: #2563eb;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        .contact-cta a:hover {
            background: #1d4ed8;
        }
        .logo{
            position: absolute;
            width: auto;
            height: 50px;
            border-radius: 5px;
            background-position: center;
            right: 5px;
        }

       
        footer {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 1.5rem 0;
        }
        footer p {
            text-align: center;
        }
         @media (max-width: 600px) {
            header{
                position: unset;
            }
            .container h1{
                background: transparent;
                color: white;
                border-radius: 5px;
                margin-left: 0px;
                width: 100%;
                 box-shadow: none;
            }
            .container{
                text-align: left;
                background-color: transparent;
               
            }
            #home h1{
                color: white;
                font-size: 16px;
                font-weight: bolder;
                box-shadow: 0px 0px 10px white;
                border-radius: 5px;
                padding: 10px 0px;
            }
            .login{
                position: unset;
                margin-left: 10px;
                padding: 10px 10px;
            } 
         }

      
        @media (min-width: 768px) {
            #home img {
                height: 24rem;
            }
            #home h1 {
                font-size: 3rem;
            }
            #home p {
                font-size: 1.25rem;
            }
            header h1 {
                font-size: 1.875rem;
            }
            nav ul {
                display: flex;
            }
            .mobile-menu {
                display: none;
            }
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
            .contact-cta {
                flex-direction: row;
                justify-content: center;
            }
        }

       
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }