﻿body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}
/* Stylish Top Bar Styles */
.top-bar {
    background: linear-gradient(to right, #111827, #1f2937);
    color: #ffffff;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    height:40px;
}

    .top-bar a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .top-bar a:hover {
            color: #0dcaf0;
        }

.social-icons1 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-icons1 a:first-child {
        margin-left: 0;
    }
.contact-info {
    width: 70%;
    float: left;
    line-height: 36px;
    padding-left: 70px;
}
.social-icons1 {
    width: 20%;
    float: right;
}
/* Responsive spacing for smaller screens */
@media (max-width: 576px) {
    .top-bar { display:none;
    }
    .top-bar .container {
        flex-direction: column;
        align-items: center; /* Center both elements on small screens */
    }

    .top-bar .social-icons1 {
        margin-top: 0.5rem;
    }
    .hamburger span {
        display: block;
        height: 3px;
        background: #ffffff!important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
    background-color: #fff;
}

.nav-left {
    /*background-color: #3f72cc;*/ /* Bright Orange */
    color: white;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
}

.nav-center {
    list-style: none;
    display: flex;
    gap: 54px;
    margin-right: 290px;
}
    .nav-center li a {
        text-decoration: none;
        color: #494949;
        font-size: 16px;
        position: relative;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .nav-center li.active a {
        color: #ff6600;
    }

    .nav-center li.active .orange-arrow {
        color: #ff6600;
    }

    .nav-center li:not(.active) i {
        color: #333;
    }

    /* Hover effects */
    .nav-center li a:hover {
        color: #ff6600;
    }

        .nav-center li a:hover i {
            color: #ff6600;
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 18px;
    cursor: pointer;
    color: white;
}

.contact-btn {
    background-color: #10a2fd;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

* {
    margin: 0px;
    padding: 0px;
}

.logo img {width:120px;}

    .contact-btn:hover {
        background-color: lightblue;
    }
/* Hamburger Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 25px;
}

    .hamburger span {
        display: block;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Rotate for "X" */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* Mobile Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 83px;
    z-index: 999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }

/* Responsive */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
      
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

        .nav-menu.open {
            max-height: 500px;
        }

    .nav-center {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }
}

/*-----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: 1rem 1.1rem;
    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;
    }
}
@media (max-width: 992px) {
    .nav-menu.open {
        max-height: 500px;
        z-index: 41;
        background-color: #0000007d;
    }
}