/* Footer Styles */
.footer {
    background-color: #222;
    color: #ccc;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer a {
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #f7a700;
}

.social-links a {
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f7a700;
}

.footer p {
    font-size: 14px;
    margin-bottom: 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .social-links {
    margin: 20px 0;
}

.footer .social-links i {
    margin-right: 8px;
}
/* Navbar Styling */
.navbar {
    background-color: #222;
    transition: background-color 0.3s ease-in-out; /* Smooth transition for background */
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #f39c12; /* Gold color on hover */
}

.navbar-nav .nav-item {
    padding: 0 20px;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
    padding: 10px 15px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #f39c12; /* Change to gold on hover */
    text-decoration: underline; /* Underline on hover */
}

/* Social media links */
.social-links a {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f39c12; /* Gold color on hover */
}

/* Navbar Toggler (for small screens) */
.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-color: white;
}

/* For Mobile Devices */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .social-links {
        display: none; /* Hide social links on mobile */
    }
}

/* For large screen sizes */
@media (min-width: 769px) {
    .social-links {
        display: block; /* Display social links on larger screens */
    }
}
/* Footer Styling */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0;
    text-align: left;
}

.footer h4,
.footer h5 {
    color: #ff6347; /* Tomato color for headers */
    font-weight: bold;
}

.footer p {
    color: #ccc;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer a:hover {
    color: #ff6347; /* Tomato color on hover */
    text-decoration: underline; /* Underline on hover */
}

/* Social Links Styling */
.social-links a {
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6347; /* Gold on hover */
    text-decoration: none;
}

/* Footer Icons */
.social-icon i {
    font-size: 22px;
    margin-right: 8px;
}

/* Footer Sections */
.footer .col-md-3 {
    margin-bottom: 30px;
}

/* Footer on Mobile */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }

    .footer .col-md-3 {
        margin-bottom: 30px;
    }

    .footer .social-links {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .footer .social-links a {
        margin-right: 15px;
    }
}

/* Footer Bottom */
.footer .text-center {
    padding-top: 20px;
    font-size: 14px;
}
