body {
    font-family: "Inter", serif;

}

/* navbar */

.navbar {
    background-color: black;
}

.navbar-brand .logo {
    height: 65px;
    margin-left: 20px;
}

.nav-link {
    color: #ff8700;
    /* Lighter link color */
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-size: 17px;
}

.nav-link:hover {
    text-decoration: underline;
    color: #fcfbfb;
    /* Gold color on hover */
}

.cta .btn {
    background-color: rgb(253, 252, 248);
    color: black;
    /* Orange button */
    border: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: rgb(194, 177, 147);
    /* Darker orange on hover */
}

.content {
    padding: 2rem;
    color: #343a40;
    /* Dark text color for contrast */
    text-align: center;
}

h1 {
    margin-bottom: 1rem;
    color: #333;
    /* Darker color for headings */
}

p {
    font-size: 1.2rem;
    /* Slightly larger paragraph text */
    color: #555;
    /* Medium grey for readability */
}

/* Dropdown styles */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    background-color: #343a40;
    /* Dark background for dropdown */
}

.dropdown-item {
    color: #e9ecef;
    /* Lighter item color */
}

.dropdown-item:hover {
    background-color: #ff8700;
    /* Gold background on hover */
    color: #17181a;
    /* Dark text on hover */
}

/* main image */

.animated-image {
    transition: transform 4s;
}

.animated-image:hover {
    transform: scale(1.07);
}

h3 {
    margin-top: 0;
    color: black;
}

h2 {
    font-size: 50px;
    box-shadow: h-offset v-offset blur-radius spread-radius blanchedalmond;
}

p {
    line-height: 1.6;
    font-size: 1.3rem;
    color: rgba(72, 71, 71, 0.779);
}


#a img {
    border-radius: 10px;
}



/* footer part */

.footer {
    background-color: #222121;
    color: #fff;
    padding: 40px 0;
    opacity: 0;
    /* Hidden initially */
    transform: translateY(50px);
    /* Slide-up effect */
    transition: all 0.8s ease-in-out;
}

.footer h5 {
    color: #ff8700;
    font-weight: bold;
}

.footer p,
.footer ul li {
    color: #fff;
    font-size: 0.9rem;
    margin: 5px 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff8700;
}

.footer img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.footer.visible {
    opacity: 1;
    /* Fully visible */
    transform: translateY(0);
    /* Slide back to position */
}

.footer .fas {
    color: #ff8700;
    /* Same as the design color */
    margin-right: 10px;
    font-size: 1.2rem;
}

.pickup-text {
    color: #ff8700;
    font-size: 1.2rem;
    font-weight: bold;
}