/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light grey background */
}

/* Navbar */
.navbar {
    padding: 1rem 1.5rem;
    background-color: #363735; /* Dark grey */
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover svg {
    fill: #81c784; /* Green highlight */
}


.navbar-nav .nav-link:hover {
    color: #81c784; /* Green highlight */
}

.navbar-toggler {
    border-color: #81c784; /* Green highlight */
}

.navbar-toggler-icon {
    background-color: #81c784;
    border-radius: 3px;
    padding: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: #4d4d4d; /* Match navbar dark grey */
    border: none; /* Remove border for a cleaner look */
    border-radius: 0; /* Optional: keep edges sharp or tweak */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.dropdown-menu .dropdown-item {
    color: #fff; /* White text to match navbar */
    font-size: 1rem; /* Slightly smaller than navbar links */
    padding: 0.5rem 1.5rem; /* Adjust padding for spacing */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #81c784; /* Green highlight on hover */
    color: #000; /* Black text for contrast */
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


/* Dropdown Toggle Link */
.nav-item.dropdown .nav-link {
    color: #fff; /* Match other navbar links */
}

.nav-item.dropdown .nav-link:hover {
    color: #81c784; /* Green highlight on hover */
}

/* Adjust caret icon (optional) */
.dropdown-toggle::after {
    border-top-color: #fff; /* White caret */
    transition: border-top-color 0.3s ease;
}

.dropdown-toggle:hover::after {
    border-top-color: #81c784; /* Green caret on hover */
}


/* Hero Section */
.carousel-item img {
    height: 70vh;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(54, 55, 53, 0.8); /* Semi-transparent dark grey */
    padding: 1.5rem;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    color: #81c784; /* Green */
    text-shadow: 2px 2px 5px #000;
}

.carousel-caption p {
    color: #fff;
    font-size: 1.2rem;
}

/* About Us Section */
.about-us {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #363735; /* Dark grey */
    margin-bottom: 1rem;
}

.about-us p {
    font-size: 1.1rem;
    color: #555; /* Medium grey */
}

/* Services Section */
.services {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #363735; /* Dark grey */
    margin-bottom: 2rem;
}

.card {
    border: 1px solid #e0e0e0; /* Light border for structure */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

/* Updated Service Titles */
.card-title {
    font-size: 1.8rem; /* Larger font size */
    font-weight: 700; /* Bold */
    color: #2c572c; /* Green highlight color */
    margin-bottom: 1rem;
    text-align: center; /* Center-align for balance */
    text-transform: uppercase; /* Optional for a formal look */
    letter-spacing: 1px; /* Adds modern spacing */
    position: relative; /* For decorative elements */
}

.services-btn-container {
    margin-top: 30px;
}

.services-btn {
    background-color: #6CA23E; /* Green button */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.services-btn:hover {
    background-color: #578830; /* Darker green on hover */
    color: #fff;
    text-decoration: none;
}




.card-text {
    color: #555; /* Medium grey */
    font-size: 1rem;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle hover effect */
}


.card-text {
    color: #555; /* Medium grey */
}

/* Buttons (General) */
.btn {
    background-color: #81c784; /* Green */
    color: #fff;
    font-weight: 500;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #4caf50; /* Darker green */
}

/* Footer */
.footer {
    background-color: #363735; /* Dark grey */
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
}

.footer .social-link {
    width: 40px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.footer .social-link:hover {
    transform: scale(1.2);
}

.social-link {
    outline: none; 
    border: none; 
    display: inline-block; /* Ensures proper spacing */
}

footer a {
    text-decoration: none; /* Removes any link underline */
    border: none; /* Ensures no border is applied */
}

footer a:focus,
footer a:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}


/* Utility Classes */
.text-center {
    text-align: center;
}

.py-5 {
    padding: 3rem 0;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

.bg-dark {
    background-color: #363735 !important;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa; /* Light grey */
    border-top: 3px solid #6CA23E; /* Green top border */
    border-bottom: 3px solid #6CA23E; /* Green bottom border */
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #363735; /* Dark grey */
    margin-bottom: 20px;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #363735; /* Dark grey */
    background-color: #fff; /* White button */
    border: 1px solid #ddd; /* Light border */
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #6CA23E; /* Green border on focus */
}

.accordion-button:not(.collapsed) {
    background-color: #6CA23E; /* Green background when active */
    color: #fff; /* White text */
}

.accordion-body {
    font-size: 1rem;
    color: #666; /* Medium grey text */
}


/* CTA Contact Section */
.CTA-contact {
    background-color: #f8f9fa; /* Light grey */
    color: #363735; /* Dark grey text */
    border-top: 3px solid #6CA23E; /* Green highlight */
    border-bottom: 3px solid #6CA23E; /* Green highlight */
}

.CTA-contact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #363735; /* Dark grey */
}

.CTA-contact p {
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 600px;
    color: #666; /* Medium grey */
}

.CTA-contact .btn-green {
    background-color: #6CA23E; /* Green button */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-decoration: underline;
}

.CTA-contact .btn-green:hover {
    background-color: #578830; /* Darker green on hover */
    color: #fff;
    text-decoration: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .about-us h2,
    .services h2 {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 1rem;
    }
}
