/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
:root {
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #2d465e;
    --accent-color: #f17f13;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}
ul{
    margin-bottom: 0%;
}

/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: white;
    border-radius: 40px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 20px auto;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2d3e50;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff8000;
}

/* Right Section (Contact Button + Hamburger) */
.right-section {
    display: flex;
    align-items: center;
}

/* Contact Button */
.contact-btn {
    background-color: #ff8000;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #e67300;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    margin-left: 15px;
}

.hamburger div {
    width: 100%;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    border-radius: 10px;
    padding: 10px;
    z-index: 100;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: block;
}

.mobile-menu ul li a:hover {
    background-color: #f5f5f5;
}

/* Show menu when active */
.mobile-menu.active {
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .right-section {
        display: flex;
        align-items: center;
    }
}
/* Footer Wrapper */
.site-footer {
    background-color: #fef1e8;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 15px;
    background-color: #fef1e8;
}

.footer-column {
    flex: 1;
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-brand {
    flex: 1;
    color: var(--brand-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-heading {
    color: var(--brand-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--link-hover-color);
}

.footer-text {
    color: var(--secondary-text-color);
    margin-bottom: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    border-top: 1px solid #ddd;
    padding: 20px 15px 0;
    display: flex;
  
}

.copyright {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
   
}

.scroll-top-btn {
    background-color: #f39c12;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.scroll-top-btn:hover {
    background-color: #d35400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .scroll-top {
        margin-top: 20px;
    }
}
