    
           
        *{box-sizing:border-box;margin:0;padding:0}
        .body{
            color: #fff;
            background-size: cover;       
            background-position: center; 
            font-family: 'Poppins';
            line-height: 1.6; 
            background-image: url(11.jpg);
            
        }
        
        .container{
            width: 90%;           
            max-width: 1200px;    
            margin: 0 auto;       
            padding: 0 20px;      
            box-sizing: border-box; 
        }

        .navbar{
              position: fixed;
              width: 100%;
              top: 0;
             z-index: 1000; 
            background-color: rgb(29, 30, 31);    
        }

        .nav-container{
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
        }

        .logo{
            font-size: 1.5rem;
            color: #fff;
            font-weight: bold;
        }

        .nav-links{
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover{
            color: #fff;
        }

        .menu-toggle{
            cursor: pointer;
            display: none;
            flex-direction: column;
        }

        .menu-toggle span{
            width: 25px;
            height: 3px;
             background: #fff;
             border-radius: 2px;
        }

        /*-----Hero-----*/
        .hero{
            margin-top: 50px;
             height: 100vh;
             display: flex;
             align-items: center;
             color: #fff;
             text-align: center; 
              background-color: rgb(0, 0, 0, 0.7); 
              background-size: cover;       
            background-position: center; 


        }

        .hero::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(ESE.jpg);
            background-size: cover;
            background-position: center;
            filter: blur(8px);
            opacity: 0.5;
            z-index: -1;
        }

        .hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 50, 50, 0.24); /* transparent white */
  
  z-index: -1;
}

        .hero-content {
                max-width:700px ;
                margin: auto;
        }

        .hero-text h2{
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: normal;
        }

        .hero-text p{
            font-size: 17px;
        }

        .hero-text span{
            color: #17276d;
        }
        
        .hero a{
            font-size: 17px;

        }
        .btn {
            display: inline-block;
            background: #111314;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            margin-top: 1rem;
            transition:background 0.3s;
        }

        .btn:hover{
            background: #43494d;
        }

        /*-----SECTIONS-----*/
        .section {
            padding: 6rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2rem;
            color: #fff;
            margin-top: -150px;
        }

        /*------ ABOUT -----*/
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .about-img {
            width: 250px;
            border-radius: 200px;
        }
        
        .about-text {
            flex: 1;
        }

        .about-text h3{
            font-size: 30px;
            color: #c5c5ca;
        }

        .about-text p{
            font-size: 18px;
        }
        
        .about-text span{
            font-size: 22px;
        }

        /*------PROJECTS-----*/
        .projects-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .projects-card{
            background: rgba(230, 226, 226, 0.212);
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s;
        }

        .projects-card img{
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .projects-card h4{
            padding: 1rem;
            color: #fff;
        }   

        .projects-card:hover{
            transform: translateY(-5px)
        }

        /*-----CONTACT-----*/
        .contact-content{
            text-align: center;
        }

        .contact-content h3{
            font-size: 30px;
        }

        .contact-content p{
            margin-bottom: 1rem;
            font-size: 17px;
        }

        .contact-content a{
            color: #fdfcfc;
            margin-bottom: 1rem;
        }

        .contact-form{
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-form .form-group input,
        .contact-form .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            background: rgba(182, 178, 178, 0.336);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: background 0.3s, transform 0.2s;
        }

        .contact-form .form-group input::placeholder,
         .contact-form .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
        font-family:"Poppins";
        }

    .contact-form .form-group input:focus,
    .contact-form .form-group textarea:focus {
     background: rgba(255, 255, 255, 0.075);
     transform: scale(1.02);
    }

    .contact-form button{
        background: #111314;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        cursor: pointer;
        transition:background 0.3s transform 0.3s ;
        font-family:"poppins";
        font-size: 16px;
    }

    .contact-form button:hover {
        background:#43494d ;
        transform: translateY(-4px);
    }

        /*-----FOOTER-----*/
        .footer{
            background: #030303;
            text-align: center;
            padding: 1rem 0;
            border-top: 1px solid rgba(240, 235, 235, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /*-----RESPONSIVE-----*/
        @media (max-width: 768px) {
           .nav-links {
    position: absolute;
    top: 70px;
    right: -220px; /* start off-screen */
    background: rgba(48, 48, 48, 0.98);
    flex-direction: column;
    width: 200px;
    text-align: center;
    padding: 20px 0;
    opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
  }

            .nav-links.active{
                display: flex;
                right: 0; /* slides into view */
                opacity: 1;
            }

            .menu-toggle{
                display: flex;
            }

            .about-content{
                flex-direction: column;
                text-align: center;
            }
        }   
    