nav{
    background-color:white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100px;
    overflow: hidden;
    transition: ease 1s all;
    position: absolute;
    width: 100%;
}
.elastic{
    height: 55vh;
}
.brand{
    padding: 1.6rem;
}

.toggle{
    padding: 1.6rem;
    display: none;
    cursor:pointer;
}
.toggle i{
    color:black;
    font-weight: bolder;
    font-size: 1.6rem;
}

.menu{
    display: flex;
    list-style-type: none;
    padding: 1.6rem;
}
.menu{
  margin-top: 12px;
}
.menu li a{
    text-decoration: none;
    color:black;
    font-weight: bold;
    font-size: 16px;
    margin:30px;
    transition: ease 0.5s;
}
.menu li a:hover{
    color: red;
    text-decoration: underline;
}
.img1{
  height: 70px;
  object-fit: cover;
  width: 100px;
  margin-bottom: 10px;
}
.header1{
  background-color: black;
  height: 450px;
  display: flex;
  justify-content: center;
  padding: 100px;

}

.img2{
  margin-top: 50px;
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 100px;
  border:solid 2px white;
}
.h2{
  color: white;
  font-size: 25px;
  margin-left: 25px;
  margin-top: 5PX;
  
}
.p1{
  /* text-align: center; */
  color: white;
}
.service h2{
  text-align: center;
   margin-bottom: 25px;
}
.grid{
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.grid img{
  width: 200px;
  height: 200px;
  border-radius: 100px;
  transition: 0.5s;
}
.service{
  margin-left: 70px;
}
.grid img:hover{
  transform:scale(1.1)
}
.about-section {
  /* background: linear-gradient(135deg, #0a0f1a, #1c1f2b); */
  background-color: white;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ffc6;
  letter-spacing: 1px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: black;
}

.highlight {
  color: #00ffcc;
  font-weight: bold;
}
.flex{
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.flex img{
  width: 300px;
  object-fit: cover;
}
.services-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .services-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: black;
    }

    .services-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-card {
      background: #1a1a1a;
      padding: 30px;
      border-radius: 12px;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid #333;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 255, 198, 0.2);
    }

    .service-card h3 {
      color: #ffffff;
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .service-card p {
      color: #ccc;
      line-height: 1.6;
    }
    .projects {
  padding: 40px 20px;
  background: #111;
  color: white;
  text-align: center;
}

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.project-card {
  background: #1c1c1c;
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.1);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.project-card a{
  border: none;
  padding: 5px 15px;
  background-color: white;
  color: black;
  text-decoration: none;
  
}
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.contact {
  padding: 60px 20px;
  background: white;
  color:black;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.icon {
  font-size: 2.2rem;
  padding: 18px;
  border-radius: 50%;
  background: #1c1c1c;
  color: white;
  transition: 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

    