* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Hero Section */
.hero {
    height: 450px;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), 
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80'); /* Replace with your specific background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body {
    background-image: url("background.png");  
  background-size: cover;                   
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;  
}
.rectangle{
    background-color: green;
     height: 120px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-left: 70px;
     padding-right: 100px;
}
.logo{
    height:100px;
    width:100px;
}
.text {
  font-size: 40px;
  font-weight: 1000;
  color:white;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-right: 70px;
}
.nav {
  display: flex;
  gap: 40px;
  margin-top: 100px;
  


}

/* Nav links */
.nav-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position:relative;
  display:inline-block;
}

/* Hover underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 3px;
  background-color: aqua;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width:100%;
  
}

/* Sign up button style */
.signup {
  padding: 10px 20px;
  background-color:white;
  color: green;
  border-radius: 10px;
}

.signup:hover {
  background-color: white;
}
header {
    background-color: #2d5a27; /* Darker green top bar */
    color: white;
    padding: 15px 0;
}
.hero {
    height: 450px;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), 
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80'); /* Replace with your specific background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
}

.hero h2 {
    
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    color: #ffffffd7;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.btn-primary {
    background-color: #3d8c31;
    color: white;
}
/* Features Section */
.features {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-card {
    text-align: center;

    
}

.feature-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
    background-color:green;
    font-family:verdana;
    color:white;
    font-weight:500px;
    border-radius:13px;
}

.feature-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align:left;
}

/* Footer */
footer {
    background-color: #3d8c31;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;

}
