* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;

}


body {
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  background-color: #1a1c20; /* Dark grey background */
  max-width: 1400px;
  justify-content: center;
  align-items: center;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  


  
}

/* Hamburger menu */
.Burger {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-top: 10px;
  position: relative;
  

}

/* Hamburger icon */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 30px;
  cursor: pointer;
  margin-top: 8px;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out; /* ✅ fixed */
}

/* Menu styles */
.menu-links {
  position: absolute;
  z-index: 9999;
  top: 8%;
  right: 0%;
  background-color: #2a2d34; /* ✅ visible on dark bg */
  border-radius: 5px;
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.menu-links li {
  list-style: none;
}

.menu-links a {
  display: block;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: white; /* ✅ visible now */
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.menu-links a:hover {
  background-color: #444; /* hover effect */
}

.menu-links.open {
  max-height: 300px;
  top: 40px;
}

/* Hamburger animation */
.hamburger-icon.open span:first-child {
  transform: rotate(38deg) translate(10px, 4px);
}
.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-icon.open span:last-child {
  transform: rotate(-38deg) translate(10px, -4px);
}

/* Mobile view */
@media screen and (max-width: 1200px) {
  .navbar {
    display: none;
  }
  .Burger {
    display: flex;
  }
}


.logo {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  align-items: center;
  justify-content: center;
  background-color: #30343b;
  padding: 8px 15px;
  border-radius: 10px;
  
 
}



.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgb(0, 255, 255) ; /* Light blue hover */
}

.hire-btn {
  background-color: rgb(89, 192, 192);
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  color: white;
}

.hire-btn:hover {
   border: 2px solid;
  border-color: rgb(0, 255, 255);
  
}

.section1a{
  color: white;
  padding: 0 20px;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}
.section1a a{
  color: rgb(89, 192, 192);
  padding: 0 20px;
  margin-top: 20px;
  text-align: center;
  display: inline-block;
}
.section1a a:hover{
  color: rgb(0, 255, 255) ;

}

.color-work{
  color:rgb(89, 192, 192) ;
}



/* NEXT PLACE */
.projects-grid {
  display: grid;
  padding: 0 20px;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 20px;
}



.projects-grid2 {
  display: grid;
  padding: 0 20px;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 20px;
}



.inner-place{
  background-color: rgb(50, 107, 107);
   padding: 50px 50px;
  border-radius: 15px;
  margin-top: -19px;
  margin-bottom: 15px;
  
}





.project-card {
 background-color: #303133;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;

  border-radius: 10px;
  margin-bottom: 5px;
  margin-left: 2.5px;
}



.project-card img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 2px 15px rgb(20, 20, 20);
  border-radius: 10px;
  
 
}

.project-card h4 {
  margin: 16px;
  font-size: 1.1rem;
  color: white;
}

.read-more {
  margin: 0 16px 16px;
  padding: 10px 20px;
  border: none;
  background: rgb(89, 192, 192);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  font-size: 18px;
}

.read-more:hover {
     border: 2px solid;
  border-color: rgb(0, 255, 255);
}



.footer{
  color: white;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  margin-top: 30px;
  
}
.footer2 a{
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(89, 192, 192);
  margin-bottom: 10px;
  text-decoration: none;
  
}

.footer2 a:hover{
   color:rgb(0, 255, 255) ;

}


.email2{
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
  
  
}

.email2 a{
 color: rgb(255, 255, 255);
  background-color: rgb(89, 192, 192);
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-block;

}

.email2 a:hover {
  color:rgb(0, 255, 255) ;
  border: 2px solid;
  border-color: rgb(0, 255, 255);
}


.down{
  margin-top: 50px;
  background-color: #303133;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  padding: 2px 5px;
}

.site-footer {
  text-align: center;
  padding: 20px;
}

.site-footer {
  opacity: .7;

}

.footer-line {
  width: 70%;
  height: 1px;
  background-color: #e7e5e5;
  margin: 0 auto 10px;
  opacity: .3;
}

.footer-text {
  font-size: 14px;
  color: white;
  margin: 0;

}
