*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Inter',sans-serif;
  line-height: 1.6;
  color: #2e8b57;
  background-color:  #f5f5dc;
}
.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;
}
.main {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f5f5dc;
  color: #1a472a;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.main-content {
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}
.main-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  /* animation: float 6s infinite ease-in-out; */
}
.title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1s ease-out;
  
}

.btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: #f5f5dc;
  /* background-color:#d66f0f; */
  background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%);  
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out 0.5s backwards;
}
.btn:hover {
  transform: translateY(-9px) scale(1.05);
  box-shadow: 0 8px 20px red;  
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.statitems {
  background:  #006B46;
  color: #f5f5dc;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  height:200px;
}

.statitems:hover {
  transform: translateY(-10px);
}

.statnumbers {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.statlabels {
  font-size: 1.2rem;
  color:  #f5f5dc;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 ;
}
.sitem {
  background:  #006B46;
  color: #f5f5dc;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  width:335px;
  height:300px;
}
.atag{
  text-decoration: underline;
  color: #d4d43d;
}
.sitem:hover {
  transform: translateY(-10px);
}
.serservice{
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.sas{
  font-size: 1.2rem;
  color:  #f5f5dc;
}
.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: 10px;
  gap: 10px;
  width: 25%;
  height: 225px;
  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: 10px;
}
.op:hover{
  text-decoration: underline;
}

.liness{
  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;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { 
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-image {
      width: 300px;
      height: 225px;
  }
  
  .title {
      font-size: 2.5rem;
  }
  
  .subtitle {
      font-size: 1.2rem;
  }
  
  .stats {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .nav-links {
      display: none;
  }
}