.a {
  display: flex;
  background-color: rgb(255, 255, 255);
  border-top: 0.5px solid grey;
  border-bottom: 0.5px solid grey;
  justify-content: center;
  align-items: center;

}

.a .logo {
  height: 120px;
  width: 180px;
  background-size: cover;
  background-image: url(Gemini_Generated_Image_l7qncbl7qncbl7qn-removebg-preview.png);
  background-repeat: no-repeat;
  background-position: center center;
    margin-top: -20px;
}

.text {
  height: 100px;
  width: 900px;
  text-align: center;
  padding-top: 20px;
  word-spacing: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 30px;
  color: orangered;
  font-family: "Cinzel", serif;
  font-weight: 800;
 
}

@media (max-width:768px) {

  .text {
    font-size: 20px !important;
  }}


.text h1 {

  margin: 0px;
}



.button {
  height: 45px;
  width: 300px;
  background-color: orangered;
  color: white;
  font-size: 30px;
  font-family: "Orelega One", serif;
  border-radius: 80px;
  border: none;
  text-align: center;
  padding-top: 10px;
  text-decoration: none;
}

.button:hover {
  cursor: pointer;
  background-color: white;
  color: orangered;
  border: 1px solid orangered;
  transition: 0.5s ease-in;
}

.navigation {
  display: flex;
  position: sticky;
  height: 60px;
  top: 0px;
  gap: 20px;
  background-color: white;
  z-index: 1000;
  justify-content: center;
  }

  .home {
  height: 60px;
  width: 100px;
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
    text-decoration: none;
  color: rgb(127, 96, 85);


}

.home:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.services {
  height: 60px;
  width: 120px;
  color: rgb(127, 96, 85);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.services:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}


.projects {
  height: 60px;
  width: 100px;
  color: rgb(127, 96, 85);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
    text-decoration: none;

  align-items: center;
}

.projects:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}


.about {
  height: 60px;
  width: 100px;
  color: rgb(127, 96, 85);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
    text-decoration: none;

}

.about:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}


.contact {
  height: 60px;
  width: 100px;
  color: rgb(138, 92, 76);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
    text-decoration: none;

}

.contact:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}


/* ✅ Service Page Styles */
.service-hero {
  background-image:  url(/skilled\ labour.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.service-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-text {
  position: relative;
  z-index: 1;
  color: white;
  font-family: "Cinzel", serif;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(50px); /* Start slightly below */
  animation: heroFadeUp 1.5s ease forwards;
  animation-delay: 0.3s; /* Delay for smooth entrance */
}
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text p {
  font-size: 1.5rem;
  font-style: italic;
  transform: translateY(50px) scale(0.95);
  animation: subTextRise 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards 0.8s; /* delay for H1 */
  opacity: 0;
}
@keyframes subTextRise {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  50% {
    opacity: 0.5;
        transform: translateY(-10px);

  }
  100% {
    opacity: 1;
        transform: translateY(0);

  }
}

/* SERVICES DETAIL */
.services-detail {
  text-align: center;
  padding: 100px 8%;
  background: #fff;
}

.services-detail h2 {
  font-size: 2.8rem;
  color: orangered;
  font-family: "Cinzel", serif;
}

.services-detail .underline {
  width: 80px;
  height: 4px;
  background: orangered;
  margin: 20px auto 40px;
}

.services-detail .intro-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.8;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-card {
  width: 320px;
  background: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.4rem;
  color: orangered;
  margin: 20px 0 10px;
  font-family: "Orelega One", serif;
}

.service-card p {
  padding: 0 20px 30px;
  color: #555;
  font-size: 1rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 69, 0, 0.3);
}

/* 🌟 CONTACT SECTION */
.contact-section {
  background:rgb(247, 79, 18);
  color: white;
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  animation: fadeUp 1.2s ease forwards;
}

/* LEFT INFO SECTION */
.contact-info {
  flex: 1 1 45%;
  animation: slideInLeft 1.2s ease forwards;
}

.contact-info h2 {
  font-size: 42px;
  font-family: "Cinzel", serif;
  border-left: 6px solid white;
  padding-left: 20px;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f4f4f4;
}

.contact-details p {
  margin: 10px 0;
  font-size: 16px;
  color: #fff;
}



@media (max-width: 600px) {
  .contact-section {
    padding: 70px 6%;
  }

  .contact-info h2 {
    font-size: 32px;
  }


  
}
/* Responsive */
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 90%;
  }
  .navigation {width: 100%;}

  .home {font-size: 12px;}
  .services {font-size: 12px;}
  .projects {font-size: 12px;}
  .about {font-size: 12px;}
  .contact {font-size: 12px;}
}
