/* SPINNER TEL */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


     /* HEADER-SECTION */
        
     #header-section .contact-links{
        color: #333;
        text-decoration: none;
    }
    
    #header-section .contact-links:hover{
        color: #f58634;
        text-decoration: none;
    }
    
    
    
    
    #header-section .actives {
        color: #f58634 !important;
        }
    
    #header-section header {
        background-color: white;
        z-index: 500;
        position: sticky;
        top: 0;
    }
    #header-section .social-media-bg {
        background-color: rgba(245, 134, 52, 0.3);
    }
    #header-section .header-menu-bg {
        background-color: rgba(245, 134, 52, 0.1);
        position: sticky;
        top: 0;
        z-index: 500;
        padding: 10px 0;
    }
    #header-section .header-content {
        padding-left: 25px;
        padding-right: 25px;
        max-width: 1350px;
        margin: 0 auto;
    }
    #header-section .navbar {
        display: none;
    }
    #header-section nav {
display: flex;
align-items: center; /* Vertically centers the menu items */
height: 100%; /* Ensures it takes up the full height of its parent */
}

#header-section ul {
margin: 0;
padding: 0;
align-items: center; /* Ensures vertical alignment of list items */
list-style: none; /* Removes default bullet points */
}

#header-section ul li {
margin: 0 15px; /* Adds spacing between menu items */
}

#header-section ul a {
color: #333;
text-decoration: none;
}

#header-section ul a:hover {
color: #f58634;
}

#header-section .actives {
color: #f58634 !important;
}

    
    /* Mobile Menu */
    
    #header-section .contact-links-mob{
        color: white;
        text-decoration: none;
    }
    
    #header-section .contact-links-mob:hover{
        color: #f58634;
        text-decoration: none;
    }
    
    #header-section .navbar {
        background-color: rgba(245, 134, 52, 0.1);
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    #header-section .navbar .logo img {
        width: 75px;
    }
    #header-section .navbar .menu-btn {
        font-size: 1.5rem;
        color: #f58634;
        cursor: pointer;
    }
    
    /* Full-screen Overlay */
    #header-section .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 5000;
    }
    #header-section .overlay.active {
        display: flex;
    }
    #header-section .overlay nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: start;
    }
    #header-section .overlay nav ul li {
        margin: 15px 0;
    }
    #header-section .overlay nav ul li a {
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
    }
    #header-section .overlay nav ul li a:hover {
        color: #f57930;
    }
    #footer-section .footer-section .actives {
        color: #f58634; /* Saffron color */
    }
       
    #header-section .overlay .contact-info,
    #header-section .overlay .social-icons {
        margin-top: 20px;
        text-align: center;
    }
    #header-section .overlay .contact-info p,
    #header-section .overlay .social-icons a {
        color: white;
        font-size: 1rem;
    }
    #header-section .social-icons a {
        color: white;
        margin: 0 10px;
        text-decoration: none;
    }
    
    /* Close button */
    #header-section .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    @media (max-width: 768px) {
        #header-section header,
#header-section .social-media-bg {
    display: none;
}   
#header-section .navbar {
    display: flex;
}
    }
    
    






/* FOOOTER */

/* Footer Styling */
#footer-section .footer {
    display: flex;
    justify-content: center;  /* Center footer wrapper */
    background-color: #333;
    color: #fff;
    font-size: 14px;
    padding: 40px 0;
}

#footer-section .footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Adjusted grid to give description 2fr */
    gap: 20px;
    width: 100%;
    max-width: 1350px; /* Set max-width */
    padding: 0 20px; /* Add some padding on sides */
}

#footer-section .footer-section {
    padding: 10px;
}

#footer-section .footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

#footer-section .footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer-section .footer-section a:hover {
    color: #f58634; /* Saffron color */
}

#footer-section .logo-section img {
    max-width: 100px; /* Adjust logo size */
    margin-bottom: 15px;
}

#footer-section .menu-section ul {
    list-style-type: none;
    padding: 0;
}

#footer-section .menu-section li {
    margin-bottom: 10px;
}

#footer-section  .contact-section p {
    margin-bottom: 10px;
}

#footer-section .social-section .social-media {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
}



#footer-section .social-section .social-media li {
    display: inline;
}

#footer-section  .social-section form {
    margin-top: 20px;
}

#footer-section  .social-section input[type="email"] {
    padding: 10px;
    width: 80%;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#footer-section .social-section button {
    padding: 10px 20px;
    background-color: #f58634;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
}

#footer-section .social-section button:hover {
    background-color: #f57930; /* Slightly darker saffron */
}

/* Social Media Icon Styling */
#footer-section .social-media li {
display: inline-block;
margin-right: 15px;
}

#footer-section .social-media a {
text-decoration: none;
color: #fff;
font-size: 18px; /* Adjust icon size */
transition: color 0.3s ease;
}

#footer-section .social-media a:hover {
color: #f58634; /* Saffron color */
}

#footer-section .social-media i {
margin-right: 8px; /* Space between icon and text */
}

/* Footer Bottom Section */
#footer-section .footer-bottom {
    display: flex;
    justify-content: space-between; /* Divides the space evenly */
    align-items: center;
    background-color: #222;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 0px;
    border-top: 2px solid #f58634; /* Highlight border */
}

#footer-section .footer-powered-by,
#footer-section .footer-copyright {
    flex: 1; /* Make both sections take equal width */
    text-align: center;
    font-size: 14px;
}

#footer-section .footer-powered-by .brand-name {
    font-weight: bold;
    color: #f58634;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

#footer-section .footer-powered-by .brand-name:hover {
    color: #f57930; /* Slightly darker highlight on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    #footer-section .footer-wrapper {
        grid-template-columns: 1fr ; /* Two columns on smaller screens */
    }

    #footer-section .social-section form {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
    }

    #footer-section .social-section input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    #footer-section .footer-section h3 {
        font-size: 18px;
    }

    #footer-section .footer-bottom {
        flex-direction: column; /* Stack the sections vertically */
        text-align: center;
    }

}




/* POPUP */
    /* Popup Form Styles */
    #popupForm {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 1000;
        width: 90%;
        max-width: 500px;
    }

    #popupForm .close-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: #f58634;
        color: white;
        border: none;
        font-size:10px;
        padding: 5px 10px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1010; /* Ensure the close button is above other content */
    }

    #popupForm .form-row {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        flex-wrap: wrap;  /* Allow items to wrap */
    }

    #popupForm .form-row input,
    #popupForm .form-row label {
        flex: 1;
    }

    #popupForm input, 
    #popupForm textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    #popupForm .textarea-container {
        margin-bottom: 15px;
    }

    #popupForm .submitBtn {
        width: 100%;
        padding: 10px;
        background-color: #f58634;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    #popupForm .submitBtn:hover {
        background-color: #f57930;
    }

    /* Mobile Responsiveness */
    @media (max-width: 600px) {
        #popupForm .form-row {
            flex-direction: column;  /* Stack inputs vertically on small screens */
            gap: 15px; /* Increased gap for better mobile spacing */
        }

        #popupForm .form-row input,
        #popupForm .form-row label {
            flex: none;  /* Allow inputs and labels to take full width */
        }
    }




    /* NORMAL FORM */
    
    /* Layout styling for the contact section */
    #contact-section {
        display: flex;
        max-width: 1350px;
        margin: 0 auto;
        padding: 20px;
        gap: 20px;
        margin-bottom: 50px;
    }

    /* Map container styling */
    #contact-section .map-container {
        flex: 1;
        min-width: 300px;
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Form container styling */
    #contact-section .form-container {
        flex: 1;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #f9f9f9;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Form title styling */
    #contact-section .form-container h2 {
        text-align: center;
        color: #333;
    }

    /* Form rows and inputs styling */
    #contact-section .form-row {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }

    #contact-section .row-three input {
        flex: 1;
    }

    #contact-section .row-two {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    gap: 10px;
}


    #contact-section .form-container input[type="text"],
    #contact-section .form-container input[type="email"],
    #contact-section .form-container input[type="tel"],
    #contact-section .form-container textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
        box-sizing: border-box;
    }

    /* Textarea styling */
    #contact-section .form-container textarea {
        resize: vertical;
        min-height: 100px;
        margin-bottom: 15px;
    }

    /* Submit button styling */
    #contact-section .submitBtn {
        display: block;
        width: 100%;
        padding: 12px;
        background-color: #f58634;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #contact-section .submitBtn:hover {
        background-color: #ccc;
    }

    @media (max-width: 768px) {
    #contact-section {
        flex-direction: column;
    }

    #contact-section .map-container,
    #contact-section .form-container {
        width: 100%;
        height: auto;
    }

    /* Stack form fields vertically on smaller screens */
    #contact-section .form-row {
        flex-direction: column;
        gap: 15px;
    }
}