body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 20px;
}

.section {
    padding: 60px 0;
}

.slider-img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.caption-below {
    padding: 5px 0;
    background: #f8f9fa;
    /* light background under image */
    border-radius: 5px;
}

.caption-below h5 {
    margin: 0;
    font-weight: 600;
}

.caption-below small {
    display: block;
    color: #555;
}

.footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
}


/* Navbar Styling */
#navbar {
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.navbar-brand span {
    font-size: 0.9rem;
    animation: fadeIn 2s ease-in-out;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s, transform 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #f0ad4e !important;
    transform: scale(1.1);
}

.btn-warning {
    transition: transform 0.3s;
}

.btn-warning:hover {
    transform: scale(1.05);
}



/* Simple fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Styling */
.carousel-item {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 2s ease-in-out;
}

.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    visibility: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.homep{

    text-align: justify;
}
