/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@400;500;600&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background-color: #2c3e50; /* Dark blue */
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

/* Navigation Menu Styles */
.navbar {
    background-color: #34495e; /* Slightly lighter dark blue */
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
}

.navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: white !important;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1abc9c !important; /* Teal color on hover */
}

.dropdown-menu {
    background-color: #34495e;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #986602; /* Gold color on hover */
    color: white;
}

/* Carousel Styles */
.carousel {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1rem;
}

.carousel-inner img {
    width: 100%; /* Make the image take up the full width of the slider */
    height: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Ensure the image covers the entire slider area */
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

/* Custom Button Styles */
.btn-custom-1 {
    background-color: #6c9bc5;
    border-color: #6c9bc5;
    color: white;
}

.btn-custom-1:hover {
    background-color: #5a8ab4;
    border-color: #5a8ab4;
}

.btn-custom-2 {
    background-color: #7ac5a3;
    border-color: #7ac5a3;
    color: white;
}

.btn-custom-2:hover {
    background-color: #69b492;
    border-color: #69b492;
}

.btn-custom-3 {
    background-color: #f4a261;
    border-color: #f4a261;
    color: white;
}

.btn-custom-3:hover {
    background-color: #e39150;
    border-color: #e39150;
}

.btn-custom-4 {
    background-color: #d67c8f;
    border-color: #d67c8f;
    color: white;
}

.btn-custom-4:hover {
    background-color: #c56b7e;
    border-color: #c56b7e;
}

.btn {
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: 500;
}

#home, #maincontact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}