/* Global Styles */
html, body {
    height: 100%;
    background-color: #F5F1E3;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #2C5F2D;
}

/* Navbar Styles */
.navbar {
    background-color: #2C5F2D !important;
    padding: 10px 20px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #D4A373 !important;
    transition: color 0.3s ease-in-out;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #F5F1E3 !important;
}

.navbar-nav {
    margin-left: auto;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: #2C5F2D;
    border: none;
    transition: opacity 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item {
    color: #D4A373;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #D4A373;
    color: #2C5F2D;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

/* Container and Box Shadows */
.container-shadow {
    background: #fff;
    padding: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    flex: 1;
    transition: transform 0.3s ease-in-out;
}

.container-shadow:hover {
    transform: scale(1.02);
}

.shadow-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Buttons */
.btn-custom {
    background-color: #2C5F2D;
    color: #D4A373;
    border: 2px solid #D4A373;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
    background-color: #D4A373;
    color: #2C5F2D;
}

/* Carousel Styles */
.carousel-inner img {
    height: auto;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    loading: lazy;
    border-radius: 10px;
	display: flex;
}
.carousel-item {
	transition: transform 0.8s ease-in-out;
}
.carousel-item.active {
	display: flex;
}
.carousel-item-next, .carousel-item-prev {
	display: flex;
}
.carousel .col {
	flex: 0 0 auto;
}


/* Divider */
.divider {
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(45deg, #2C5F2D, #2C5F2D 10px, #D4A373 10px, #D4A373 20px);
    margin: 20px 0;
}

/* Footer Styles */
.footer {
    width: 100%;
    background: #2C5F2D;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
    font-size: 14px;
}

/* Wrapper and Content Layout */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    padding: 20px;
}

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: rgba(0, 0, 0, 0.7); /* Dark background for visibility */
        border-radius: 50%; /* Circular shape */
        padding: 15px; /* Increase clickable area */
    }
    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
        background-color: rgba(0, 0, 0, 0.9); /* Darker on hover */
    }

/* General Link Styling */
a {
    text-decoration: none; /* Remove underline */
    color: #007bff; /* Default link color */
    font-weight: 600;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Hover Effect */
a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: none; /* Underline on hover */
}

/* Active Link */
a:active {
    color: #004085; /* Even darker blue when clicked */
}
.exco-img {
    width: 100%; /* Makes the image responsive to the card width */
    height: 250px; /* Fixed height */
    object-fit: cover; /* Ensures the image fills the space without distortion */
    border-radius: 8px; /* Optional: Rounds the edges slightly for a polished look */
}


