body {
    font-family: Arial, sans-serif;
}

.hero {
    background: url('../images/banner.jpg') no-repeat center center/cover;
    color: rgb(5, 5, 5);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero1 {
    background: url('../images/banner1.jpg') no-repeat center center/cover;
    color: rgb(5, 5, 5);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h2, .hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-uppercase {
    text-transform: uppercase;
}

.card {
    border: 1px solid #ddd;
}

footer {
    background-color: #003366;
}

.contact-info-bar .row div {
    text-align: center;
}

@media (min-width: 768px) {
    .contact-info-bar .row div {
        text-align: start;
    }
}

.navbar-nav .nav-item .nav-link {
    transition: color 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ffc107;
}

.dropdown-menu .dropdown-item {
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
    background-color: green;
    color: #fff;
}

.nav-link {
    padding: 5px 10px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover, .dropdown-item:hover {
    background-color: rgba(253, 216, 3, 0.1);
    border: 4px solid rgba(232, 248, 8, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link.active {
    background-color: rgba(44, 252, 3, 0.2);
    border-radius: 5px;
}

/* Animations for About Us Content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-us h1, .about-us h2 {
    animation: fadeInUp 5s ease forwards;
}

.about-us p, .about-us ul {
    animation: fadeInLeft 5s ease forwards;
}

.about-us img {
    animation: fadeInRight 5s ease forwards;
    height: 400px;
    width: 600px;
}

#about-us {
    background-color: #f8f9fa;
    padding: 50px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 600;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: auto;
}

.card-body {
    padding: 15px;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

/* Hover dropdown functionality */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    margin-top: 0;
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link.dropdown-toggle {
    cursor: pointer;
}
.text-outline {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.text-black-green {
    background: linear-gradient(90deg, black, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.about-us-section {
    background: linear-gradient(135deg, rgb(214, 214, 139), rgb(135, 228, 135), rgb(129, 129, 212));
    color: #000; /* Ensure text remains readable */
    padding: 50px 20px; /* Add padding for spacing */
    border-radius: 10px; /* Optional: Rounded corners for aesthetics */
}
.about-us-section h1, .about-us-section h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Make text pop */
}
.about-us-section ul li {
    margin-bottom: 10px;
    font-weight: bold;
}
.about-us-section img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add shadow to images */
}
.what-we-do {
    background: #f9f9f9;
}

.what-we-do h2 {
    color: #004d00;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #004d00;
}

.service-card .description {
    font-size: 0.95rem;
    color: #555;
    text-align: justify;
    display: none; /* Hidden by default */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .what-we-do h2 {
        font-size: 1.8rem;
    }
}

 /* Heading Container */
 .heading_container {
    text-align: center;
    margin-bottom: 40px;
}
.heading_container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #004d00; /* Greenish tone */
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.heading_container h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffcc00; /* Yellow underline */
    margin: 10px auto 0;
    border-radius: 2px;
}
.heading_container p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 10px auto;
    line-height: 1.5;
}
/* Gallery Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}
.gallery-item {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    background: #fff;
    padding: 10px;
    text-align: center;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.gallery-item:hover {
    transform: scale(1.05);
}