body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    font-family: Arial, "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.navbar {
    /* //background-color: #000; Black background for sleek design */
    padding: 1rem 2rem;

}

/* Brand Styling */
.navbar-brand {
    visibility: hidden;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

/* .navbar-brand:hover {
    //color: #00bcd4; /* Subtle color transition for the brand 
} */

/* Navbar Links */
.navbar-nav .nav-link {
    color: #fff;
    font-size: 1rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease-in-out;
    font-display: none;
}

/* .navbar-nav .nav-link:hover {
    
} */

/* Custom Toggle Button */
.navbar-toggler {
    border: 3px solid white;
    /* Remove default border */
    padding: 0.5rem;
    height: 40px;
    Position: relative;


}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    border: 3px solid white !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none;
    /* Remove the default icon */
    width: 30px;
    height: 3px;
    background-color: white;
    position: relative;
    display: Block;
    border-radius: 2px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;
    border-radius: 2px;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.nav-link.active {
    background-color: #32a852;
    border-radius: 5px;
    /* Optional: Add rounded corners */
    padding: 5px 10px;
    /* Add some spacing */
    color: white;
    transition: all 0.3s ease;
    /* Smooth transition effect */
}

/* Responsive Behavior */
@media (max-width: 990px) {
    .navbar-nav {
        text-align: center;
        width: 70%;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 5px 10px;
    }
}

header {
    background: linear-gradient(to right, #32a852, #155724);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-width: 150px;
}

nav {
    text-align: right;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}

nav a:hover {
    background-color: #32a852;
    border-radius: 5px;
}

.hero {
    background: url('/images/image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 15px;
}

.sections {
    padding: 30px 10px;
}

/* .section {
    margin-bottom:;
} */
.section i {
    font-size: 3rem;
    color: #32a852;
    margin-bottom: 20px;
}

.branding-section {
    background: url('/images/imge.jpg') no-repeat center center/cover;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    text-align: left;
}

.branding-section .content {
    max-width: 50%;
    margin-right: 30px;
}

footer {
    background: #155724;
    color: white;
    text-align: center;
    padding: 30px;
}

.gallery {
    display: flex;
    gap: 20px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    padding: 10px;
}

/* //.gallery{
margin-bottom:40px;

} */

.gallery img {

    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


.gallery img:nth-child(1) {
    animation-delay: 0.2s;
}

.gallery img:nth-child(2) {
    animation-delay: 0.4s;
}

.gallery img:nth-child(3) {
    animation-delay: 0.6s;
}

.gallery img:nth-child(4) {
    animation-delay: 0.8s;
}

.gallery img:nth-child(5) {
    animation-delay: 1s;
}

.gallery img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial {
    text-align: center;
    background: #f9f9f9;
    padding: 60px 20px;
}

.testimonial blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
}

.cta {
    background: linear-gradient(to right, #155724, #32a852);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: -23px;
}

.cta h2 {
    font-size: 2.5rem;
}

.cta button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #155724;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta button:hover {
    background: #e0e0e0;
}

@media (max-width: 840px) {
    .branding-section {
        padding: 50px 20px;
        text-align: center;
    }

    .branding-section .content {
        max-width: 100%;
        margin-right: 0;
    }

}
