﻿/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
    padding-top: 80px; /* equal to header height */
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 30px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

/* Logo Area */
.logo-area {
    background-color: #ff6a00;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 24px;
    margin-right: 5px;
}
/* Navigation Menu */
.nav-menu {
    display: none;
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
}

    .nav-menu.open {
        display: flex;
    }

    .nav-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
    }

    .nav-menu li {
        font-size: 14px;
        color: #333;
    }

        .nav-menu li a {
            color: black;
            text-decoration: none;
        }

        .nav-menu li:hover,
        .nav-menu .active a {
            color: #ff6a00;
        }

/* Utility Area */
.utility-area {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
}

.search-icon {
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

.contact-btn {
    background-color: #ff6a00;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .contact-btn:hover {
        background-color: #e55d00;
    }
/* Hamburger Button - Mobile Only */
.hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
    margin-left: auto;
}
@media (min-width: 768px) {
    .main-header {
        flex-wrap: nowrap;
        height: 80px;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        width: auto;
        margin-top: 0;
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

        .nav-menu ul {
            flex-direction: row;
            gap: 30px;
            margin-left: 40px;
        }

    .utility-area {
        width: auto;
        margin-top: 0;
        justify-content: flex-end;
    }
}
/* Dropdown base */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: none;
    flex-direction: column;
    z-index: 100;
    gap: 0px;
}

    .nav-menu .dropdown-menu li {
        padding: 10px;
        white-space: nowrap;
    }

        .nav-menu .dropdown-menu li a {
            color: black;
            display: block;
            text-decoration: none;
        }

            .nav-menu .dropdown-menu li a:hover {
                background: #f8f8f8;
                color: #ff6a00;
            }

/* Show dropdown on hover (desktop) */
@media (min-width: 768px) {
    .nav-menu .dropdown:hover .dropdown-menu {
        display: flex;
    }
}


/*-----footer------*/

.footer {
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    background-color: #2e2e2e;
    padding: 3rem 1.5rem 6rem;
    position: relative;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}

/* Columns */
.footer-col {
    flex: 1 1 250px;
}

.brand-logo1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .brand-logo1 img {
        width: 167px;
        height: 66px;
    }

.footer-col h3 {
    font-size: 1.2rem;
   
    color: #ffff;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #ffff;
    text-decoration: none;
}

    .footer-col a:hover {
        color: #fff;
    }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #333;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        color: #fff;
        transition: background 0.3s;
    }

        .social-icons a:hover {
            background: #ff6600;
        }

/* Newsletter */
.newsletter-input {
    display: flex;
    margin-bottom: 1rem;
}

    .newsletter-input input {
        flex: 1;
        padding: 0.6rem;
        background: #e3937e;
        border: none;
        color: #fff;
    }

    .newsletter-input button {
        background: #ff6600;
        border: none;
        color: #fff;
        padding: 0 1rem;
        cursor: pointer;
    }

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    background: #2e2e2e;
    padding: 1rem 0;
    font-size: 0.85rem;
    color: white;
    margin-bottom: -94px;
    margin-top: 87px;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6600;
    color: #fff;
    padding: 0.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

    .scroll-to-top:hover {
        background: #e05500;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap:0;
    }
    .footer-col {
        flex: 0 0 200px;
    }
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
    }
    .footer-bottom {
        text-align: center;
        background: #8c8c8c;
        padding: 1rem 0;
        font-size: 0.85rem;
        color: white;
        margin-bottom: -94px;
        margin-top: -35px;
    }
}
