/*Style sheet Started for Complete Header Section */

header {
    background-color: white;
    color: black;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    flex-wrap: wrap; 
}
/* Define keyframes for fade and zoom in */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* Apply animation to the .logo class */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    margin-left: 40px;
    animation: fadeZoomIn 3s ease forwards; 
}

#company-logo {
    width: 90px;
    height: 65px;
}

.bar {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* margin-right: 120px; */
    /* margin-left: 60px; */
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #996515;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 5px;
    transition: color 0.3s;
    font-family: 'Georgia', serif;
   
    
}

.phone-number {
    font-size: 12px;
    font-family: 'Georgia', serif;
    color: #996515;
    margin-right: 5px;
}

input[type="text"] {
   
   
    border-radius: 5px;
    font-family: 'Georgia', serif;
    color: #333;
    background-color: #fff;
}

.search-button {
    width: 30px;
    height: 18px;
    padding: 2px;
    font-size: 10px;
    background-color: white;
    color: #996515;
    border: 1px solid #996515;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    header {
        flex-direction: row;
        justify-content: space-between; /* Space between logo and menu icon */
        align-items: center;
        padding: 10px;
    }

    .logo {
        flex: 1; /* Ensures logo and menu icon are in the same row */
        margin: 0;
        justify-content: flex-start; /* Align logo to the left */
    }

    #company-logo {
        width: 80px;
        height: 60px;
    }

    .menu-icon {
        font-size: 24px;
        cursor: pointer;
        display: block; /* Show icon only on mobile */
        margin-right: 10px; /* Add margin for spacing from the edge */
    }

    #navLinks {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 100;
        border-top: 1px solid #996515;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .phone-number {
        font-size: 12px;
        margin-bottom: 10px;
    }

    input[type="text"] {
        width: 40%;
    }

    .search-button {
        width: 20%;
        margin-top: 5px;
    }
}

/* Hide the menu icon on desktop view */
@media only screen and (min-width: 601px) {
    .menu-icon {
        display: none;
    }
}

/*Style sheet ended for Complete Header Section */






/* Footer Style Sheet Start */
/* Footer styles */
.footer {
    background-color: white;
    color: #ffffff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right,
.footer-right-social {
    flex-basis: 25%;
    padding: 10px;
}

.footer-left h3, 
.footer-center h3, 
.footer-right h3, 
.footer-right-social h3 {
    color: #b78727;
    margin-bottom: 10px;
    font-family: Georgia, serif;
    font-size: 18px;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.footer-left p, 
.footer-right p {
    color: black;
    font-family: Georgia, serif;
    font-size: 14px;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.footer-center ul {
    list-style-type: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 10px;
}

.footer-center ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: Georgia, serif;
    font-size: 14px;
}

.footer-center ul li a:hover {
    color: gray;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Copyright section */
.footer-copyright {
    background-color: #f2f5f3;
    text-align: center;
    padding: 15px 0;
    color: black;
    font-size: 0.9em;
}

/* Container for the scrolling text */
.footer-copyright {
    position: relative;
    overflow: hidden;  
    white-space: nowrap; 
}

/* Scrolling text animation */
.footer-copyright p {
    display: inline-block;
    padding-left: 100%; 
    animation: scroll-left 20s linear infinite; 
    font-family: Georgia, serif;
    color: #070707;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%); 
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    .footer-content {
        flex-direction: column; 
        align-items: center; 
        padding: 20px 10px; 
    }

    .footer-left,
    .footer-center,
    .footer-right,
    .footer-right-social {
        flex-basis: 100%; 
        text-align: center; 
        padding: 5px; 
    }

    .footer-left h3, 
    .footer-center h3, 
    .footer-right h3, 
    .footer-right-social h3 {
        font-size: 16px; 
    }

    .footer-left p, 
    .footer-right p {
        font-size: 14px; 
    }

    .footer-center ul li {
        margin-bottom: 5px; 
    }

    .footer-center ul li a {
        font-size: 14px; 
    }

    .social-icons {
        justify-content: center; 
        margin-top: 10px; 
    }
}

/* Responsive Styles Ended */
/* Footer Style Sheet End */



/* <!-- WhatsApp Floating Button Style Sheet code started here --> */
 /* Basic reset */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Hover effect */
.whatsapp-button:hover {
    transform: scale(1.1);
}


/* <!-- WhatsApp Floating Button Style Sheet code Ended here --> */
