body {
    padding-top: 80px; /* Offset content so it doesn’t go under navbar */
}

.navbar-custom {
    background-color: #2e8b57; /* Green background */
    padding: 10px 20px;
}

.navbar-custom .navbar-brand img {
    height: 50px; /* Adjust logo size */
    width: auto;
}

.navbar-custom .nav-link {
    color: #fff;
    margin-right: 15px;
}

.navbar-custom .nav-link:hover {
    color: #a2f2b0;
}

.navbar-custom .dropdown-menu {
    background-color: #2e8b57;
}

.navbar-custom .dropdown-item {
    color: #fff;
}

.navbar-custom .dropdown-item:hover {
    background-color: #246c44;
}

.navbar-custom .search-input {
    border-radius: 6px;
    border: none;
    padding: 5px 10px;
}

.navbar-custom .search-button {
    border-radius: 6px;
    border: none;
    background-color: #a2f2b0;
    color: #2e8b57;
    font-weight: 500;
    padding: 5px 10px;
    margin-left: 5px;
}
.carousel-item img {
  height: 85vh;
  object-fit: cover;
  filter: brightness(85%);
  animation: slideUpDown 3s infinite;
}

.carousel-caption h2 {
  animation: slideUpDown 3s infinite;
}

@keyframes slideUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.feature-box {
 /* Keep all existing styles intact, just add these */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 1; /* ensures fade effect works */
}
.feature-box:hover {
 transform: translateY(-5px) scale(1.03); /* lift and slightly enlarge */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25); /* deeper shadow */
    opacity: 0.95; /* subtle fade */
}
span{
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px 0;
    font-size: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    color: #008000;
    float: left;
}
.eze{
    border: 1px solid #008000;
    color: #008000;

}
.eze:hover{
    border: 1px solid #008000;
    color: white;
    background-color: #008000;
}
/*contact us begins*/
.maps .ella{
padding: 20px;
border-top: 3px solid green;
border-bottom: 3px solid green;
box-shadow: 0 3px 3px 2px gainsboro;

}
.mapping{
    height: 307px;
}
.maps .ella h4{
    color: green;
}
.message .myform{
    border-top: 3px solid green;
    border-bottom: 3px solid green;
    padding: 20px;
    box-shadow: 0 3px 3px 2px gainsboro;
   
}
/*
contact ends
====================
footer begins
*/
.emeka{
    background-color: white;
    padding: 2px 0;
    width: 100%;
    border-radius: 25px;
    padding-left: 20px;

}
.emeka button{
    background-color: green;
    padding: 10px 30px;
    color: white;
    border-radius: 25px;
}
.emeka button:hover{
    background-color: rgb(12, 70, 12);
    padding: 10px 30px;
    color: white;
    border-radius: 25px;
}
.emeka input{
    width: 100%;
    height: 40px;
    outline: none;
    border: 1px solid white;
}
.myfoot ul{
    padding-left: 0;
}
.myfoot ul li{
    list-style: none;
    padding: 3px 0;
}
.myfoot ul li a{
    text-decoration: none;
    color: inherit;
}
.myfoot ul li a:hover{
    text-decoration: underline;
    color: green;
}
.myfoot h6{
    color: green;
}
.myfoot ul li i{
    font-size: 12px;
    color: green;
}
.social a i{
    font-size: 20px;
}
.bread{
    padding-top: 30px !important;
    padding-bottom: 10px;
}
.bread h4{
    color: green;
}
.garri{
    padding-top: 30px !important;
    padding-bottom: 10px;
}
.garri h4{
    color: green;
}
.bits{
    padding-top: 30px !important;
    padding-bottom: 10px;
}
.bits h4{
color: green;
}

/*footer ends*/
.card {
  border-radius: 10px;
}

.btn-success {
  background-color: #198754 !important;
}
/*Dashboard for user*/
html, body {
    margin: 0;
    padding: 0;
}

.navbar-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2e8b57;
    padding: 10px 20px;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 100;
   
}

.navbar-left, .navbar-right {
    display: flex;
    align-items: center;
}

.navbar-left a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.navbar-left a:hover, .navbar-right a:hover {
    color: #a2f2b0;
}

.logo {
    width: 50px;          /* adjust size */
    height: 50px;         /* keep square for circle */
    border-radius: 50%;   /* makes it a circle */
    margin-right: 10px;
    object-fit: cover;    /* ensures logo fits nicely */
    border: 2px solid #fff; /* optional border */
}


.navbar-dashboard a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: 0.3s;
    
}

.navbar-dashboard a:hover {
    color: #a2f2b0;
}

.dashboard-container {
    max-width: 900px;
    margin: 100px auto 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.profile-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #2e8b57;
}

.profile-details h3 {
    color: #2e8b57;
    margin: 0;
}

.profile-details p {
    color: #555;
    margin: 5px 0;
}

.dashboard-section {
    margin-top: 20px;
}

.dashboard-section h4 {
    color: #2e8b57;
    margin-bottom: 15px;
}

.dashboard-section .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.dashboard-section .card {
    background: #f1f9f5;
    padding: 20px;
    border-radius: 12px;
    flex: 1 1 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.dashboard-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="file"] {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

form input[type="submit"] {
    width: 100%;
    background-color: #2e8b57;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background-color: #246c44;
}
/*login and signup to user dashboard*/
.don {
    max-width: 450px;
    margin: 80px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #2e8b57;
    margin-bottom: 25px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="file"] {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

form input[type="submit"] {
    width: 100%;
    background-color: #2e8b57;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background-color: #246c44;
}

a {
    color: #2e8b57;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.error-msg {
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
}

.success-msg {
    color: green;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-offset {
  position: relative;
}

.section-offset::before {
  content: "";
  display: block;
  height: 80px; /* height of your fixed navbar */
  margin-top: -80px; /* negative margin to offset scroll */
  visibility: hidden;
}
.navbar{
    height: 50px;
}

#home {
    margin-top: -50px; /* negative margin equals navbar height */
    padding-top: 0;    /* ensure no extra padding */
}
.navbar-toggler {
    border-color: #fff;
}

.navbar-toggler-icon {
    filter: invert(1); /* makes icon white */
}


/* Smooth menu */
#mobileMenu {
    transition: 0.3s ease;
}

/* Push content down so navbar doesn't cover it */
body {
    padding-top: 70px;
}


.navbar-custom {
    background-color: #198754; /* your green */
}

/* Fix overlap */
body {
    padding-top: 70px;
}