/* General styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

/* Navigation bar */
nav {
  display:;
  justify-content: space-between;
  background-color: #333;
  color: white;
  padding-left:20px;
  padding-right: 20px;
  position: relative;
  top: 0;
  z-index: 1001;
  width:100%;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

.menu-toggle {
  display: none;
  
}

	.a:hover{
		color:#976;
		}
/* Mobile responsive */
@media only screen and (max-width: 768px) {
  .nav-links {
    display:block ;
  }
  nav{
   display:;
    position: fixed;
    top: 0;
    left :-300px;
    width: 250px;
    height: 100vh;
    background-color:lime;
    color: white;
    z-index: 1001;
    transition: 0.3s ease;
    }
  .menu-toggle {
    display: flex;
   margin-left: 20px;
   margin-top: 10px;
  }
  nav.open {
left:0;
}
 

  #navbar {
    flex-direction: column;
  }
}

/* Slider */
.image-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slider-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit:;
  animation-name:sliderAnimation;
  animation-duration:1.5s;
}

@keyframes sliderAnimation {
  0%, 33% { opacity: 1; }
  34%, 100% { opacity: 0; }
}

/* Crop Grid */
.crop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem;
}

.crop {
  text-align: center;
}

.crop img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Scroll to top */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: black;
  color: white;
  border: none;
  padding: 10px;
}
p{
margin-bottom: 20px;
margin-right: 20px;
margin-top: 20px;
margin-bottom: 20px;

}
h2{
	color:lime;
	}
	.tble ,th, tr, td{
		margin-left:10px;
		font-size:9px;
		border-collapse: collapse;
		border: 2px solid yellow;
		text-align:center;
		}
		.social-links{
      margin-top:10px;
       }
      /* Search bar styling */
.search-container {
    position: relative;
    margin-left: 10px;
}

#searchBar {
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    width: 200px;
    transition: all 0.3s ease;
}

#searchBar::placeholder {
    color: rgba(255,255,255,0.7);
}

#searchBar:focus {
    background-color: rgba(255,255,255,0.2);
    outline: none;
    width: 220px;
}

#searchResults {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: absolute;
    z-index: 1001;
    width: 100%;
    margin-top: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.resultItem {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #333;
}

.resultItem:last-child {
    border-bottom: none;
}

.resultItem:hover {
    background-color: #f5f5f5;
}

a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px;
        }
        .footer a {
            color: #ecf0f1;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
            color: #1abc9c;
        }
        .footer h5 {
            margin-bottom: 20px;
            font-weight: bold;
        }
        .social-icons a {
            font-size: 18px;
            margin-right: 15px;
            color: #ecf0f1;
        }
        .social-icons a:hover {
            color: #1abc9c;
        }
        .newsletter input[type="email"] {
            border-radius: 0;
            border: none;
            padding: 10px;
            width: 75%;
            margin-right: 5px;
        }
        .newsletter button {
            padding: 10px 20px;
            background-color: #1abc9c;
            color: #ecf0f1;
            border: none;
        }
        .newsletter button:hover {
            background-color: #16a085;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 20px;
        }
        .cl{
        	background-color:lime;
        	}
        .a{
text-decoration:none;	
	}
	.a:hover{
		color:#976;
		}