
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    
    /*  */
    background-color: black;
    color: white;
    /* background-image: url('images/background.jpg'); */
    background-size: cover; /* Fills the whole page */
    background-position: center; /* Centers the image */
    background-attachment: scroll; /* Makes image stay while scrolling */
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
 /* header {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 80px;
      background: #181818;
      position: fixed;
      top: 0;
      z-index: 10;
    } */

  .logo {
      color: #ffcc00;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 1px;
    }  
     nav {
      width: 100%;
      background-color: #222;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    } 
nav ul {
  list-style: none;
  /* background-color: #2f2f2f; */
  text-align: right; /* Aligns inline-block items to right */
  padding: 10px 50px;
  margin: 0;
}

nav ul li {
  display: inline-block;
  margin-left: 30px;
}
.menu li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    flex-wrap: wrap;
    
} 
nav ul li a:hover,
nav ul li a.active{
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: medium;
    color:#ffcc00;
    border-radius: 0px;
    border: 50px;
} 
/* Navigation Bar */
/* header {
    position: fixed;
      top: 0;
      z-index: 10;
    width: 100%;
      display: flex;
      padding: 20px 80px;
      justify-content: space-between;
      align-items: center;
    background: rgb(45, 45, 45); */
    /* padding: 15px 0; */
/* }
 header h2 {
      color: #ffd369;
      font-weight: 700;
      letter-spacing: 1px;
    }

    nav a {
      color: #fff;
      margin-left: 25px;
      text-decoration: none;
      font-size: 15px;
      transition: 0.3s;
    } */

    /* nav a:hover {
      color: #ffd369;
    }
.hero-right h1 {
    list-style: none;
    display: grid;
    justify-content: center;
    gap: -10px;
}
.menu {
    list-style: none;
    display: flex;
    justify-content: right;
    gap: 30px;
    margin: 5;
    padding: 0;
} */
/* .menu li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    flex-wrap: wrap;
} */
/* .menu li a.active {
    color: #ffffff;
} */
/* nav ul li a:hover,
nav ul li a.active{
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    background-color: rgb(226, 247, 4);
    color:black;
    border-radius: 0px;
} */
/* .menu ul li a {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    display: inline-block;
    text-decoration: none;
    padding: 0.8rem 0.2rem;
} */

/* Page Header */
.page-header {
    background: linear-gradient(to right, #6c63ff, #5bc0f8);
    color: white;
    text-align: center;
    padding: 50px 0;
}
.page-header h1 {
    font-size: 36px;
    margin: 0;
}
.page-header p {
    margin: 10px 0 0;
}

/* About Section */

 /* .about-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-image: url('images/background.jpg'); */
   /* background-size: cover;      
    background-position: center;
    height: 100vh;               
    gap: 50px;   
    padding: 60px;
}

.about-image img {
     
    width: 100%;         
    max-width: 350px;    
    border-radius: 12px;
} */



.about-text {
    flex: 1;  
    color: rgb(250, 247, 247);
} 
 .about-section {
      margin-top: 0;
    padding-top: 0;
    display: flex;
    justify-content: flex-end;   /* pushes text to right*/
    align-items: center;         /* vertically center */
    background-image: url('images/my\ profile.jpg ');
    background-size: cover;
    background-position: left;   /* keep image aligned left */
    height: 100vh;
    padding: 50px;
     background-attachment: scroll;
}

.about-text {
    max-width: 500px;
    color: #fff;
    text-align: left;
}


.about-text h4 {
    font-size: 18px;
    color: #ffcc00;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text h1 {
    font-size: 36px;
    margin: 20px 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #e40d0d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
   transition: 0.3s;
}

.about-text .btn:hover {
    background-color: #ff4d4d;
    transform: scale(1.05);

}


/* Services Section */
.services-section {
    padding: 60px 20px;
    text-align: center;
    /* background: white; */
}

.services-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}
/* Work Section */
.works-section {
    padding: 60px 41%;
    text-align: center;
    /* background: white; */
}
.works-section {
    padding: 60px 20px;
    text-align: center;
    background: rgb(8, 8, 8);
}

.works-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.works-container ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* allows wrapping if screen is small */
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px; /* space between items */
}

.works-container li {
    flex: 1 1 calc(33.333% - 20px); /* 3 in a row */
    max-width: 300px;
}

.work-item img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

.work-item p {
    margin-top: 10px;
    font-weight: bold;
}
