body, html {
    background-color: #000000 !important;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', sans-serif;
    font-weight: normal;
    color: #ecf0f1;
}

.accordion-button:focus {
    outline: none;
}

.map-container iframe {
    width: 100%; 
    height: 400px; 
    max-width: 100%; 
    border: none; 
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 250px; 
    }
}

.navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 10px 0;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ec1d23;
    text-decoration: none;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.social-icons .social-icon {
    margin-left: 15px;
}

.social-icons .social-icon {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons .social-icon:hover {
    color: #ec1d23;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .social-icons {
        margin-left: 0;
        justify-content: space-evenly;
        width: 100%;
    }

    .social-icons .social-icon {
        margin-left: 0;
    }

    .social-icons .social-icon {
        font-size: 2rem;
    }
}

.navbar-nav.ms-auto {
    margin-left: auto;
}

.navbar .navbar-nav {
    margin-right: 40px;
}

.slider-btn {
    background-color: #ec1d23;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.slider-btn:hover {
    background-color: #c0392b;
    transform: translateY(-5px);
}

.slider-btn:focus {
    outline: none;
}

.custom-btn:hover {
    background-color: #128c7e;
}

.custom-btn i {
    margin-right: 10px;
}

#hero {
    background: url('slider3.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    padding-top: 100px;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#hero .container h1 {
    font-family: 'Lobster', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1.5s forwards;
}

#hero .container p {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInParagraph 1.5s 0.5s forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInParagraph {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-section {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    padding-top: 80px;
    position: relative;
}

.title-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ec1d23;
    bottom: -10px;
    left: 0;
}

.card {
    background-color: #2c3e50;
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    background-color: #34495e;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.1);
}

.card-body {
    background-color: #233547;
    padding: 25px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    transition: background-color 0.3s ease;
}

.card-body h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.card-body ul li {
    font-size: 1.1rem;
    font-weight: 400;
    color: #bdc3c7;
    margin-bottom: 12px;
}

.card-body ul li:last-child {
    margin-bottom: 0;
}

.card-body a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: #25D366;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card-body a:hover {
    background-color: #128c7e;
    color: #fff;
}
