body{
    font-family: "Inter", serif;
}


.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 */
}



 /* Basic styling */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    margin: 40px;
    font-size: 40px;
    color: #333;
}

.about-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.about-content {
    background-color: rgb(243, 239, 239);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Start with hidden content */
    transform: translateY(100px); /* Start from below */
    transition: all 0.5s ease-out;
}

h3 {
    color: black;
    font-size: 28px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    font-size: 18px;
}

img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    ul li {
        font-size: 16px;
    }
}

/* 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;
}
