* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5dc;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}
.nav {
  background:#006B46;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:50px;
}
.nav-name{
  display: flex;
  align-items: center;
  color: #f5f5dc;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-link {
  color: #f5f5dc;
  text-decoration:none;
  font-weight: 1000;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color:#ff6337;
}
.nav-img{
  width:90px;
  height:90px;
  margin-top:20px;
}
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #006B46 ;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.nav-links .dropdown-menu li {
  margin: 0;
}
.nav-links .dropdown-menu .dropdown-link {
  color: #f5f5dc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
  transition: background-color 0.3s ease;
}
.nav-links .dropdown-menu .dropdown-link:hover {
  background-color: #f5f5dc;
  color: #1a472a;
}
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}
.top {
  margin-top: 50px;
  background-color: #f5f5dc; 
  padding: 60px 20px;
  text-align: center;
}
.top h1 {
  font-size: 36px;
  color: #2c6e49;
  margin-bottom: 20px;
}

.top p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}
.services {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 20px;
}
.serviceall {
  margin-bottom: 50px;
}

.serviceall h2 {
  font-size: 28px;
  color: #2c6e49; 
  margin-bottom: 20px;
  text-align: center;
}

.freecards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: #f5f5dc;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #777;
  margin-bottom: 15px;
}

.card .hirebtn {
  background-color: #2c6e49; 
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.card .hirebtn:hover {
  background-color: #1e4f32; 
}
.view{
  margin-top:15px;
  margin-left: 42%;
  height:28px;
  font-size: 20px;
  width:175px;
  background-color: #f5f5dc;
  border: 1px solid black;
}


.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  width: 100%;
  background-color: #2e2e2eeb;
  padding-bottom: 20px;
  color: white;
}

.info {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 20px 0;
}

.f1, .f2, .f3 {
  padding: 50px;
  gap: 10px;
  width: 25%;
  height: 300px;
  background-color: transparent;
}

.p1, .p2, .p3 {
  text-align: center;
  font-weight: bolder;
  color: white;
  text-decoration: underline;
}

.lala {
  text-align: center;
  font-size: 1.05em;
  color: white;
  margin-top: 20px;
}
.op:hover{
  text-decoration: underline;
}

.line{
  width: 90%;
  height: 1px;
  background-color: white;
  margin: auto;
}

.contactus {
  display: flex;              
  justify-content: center;     
  align-items: center;         
  gap: 30px;                   
  margin-top: 20px;
  text-align: center;
}


.email {
  font-size: 1em;
}

.emaillink {
  color: white;
  text-decoration: none;
}

.emaillink:hover {
  text-decoration: underline;
}

.sicons {
  display: flex;
  gap: 20px;
  margin-left: 820px;
}

.slink {
  color: white;
  text-decoration: none;
}

.slink:hover {
  text-decoration: underline;
}
.klp{
  color:white;
  text-decoration: none;
}
