/* Contact CSS General Body and Typography */
body {
    font-family: 'Arial', sans-serif;
    /* A common, readable sans-serif font */
    color: #333;
    background-color: #f8f9fa;
    /* Light grey background for the whole page */
    overflow-x: hidden;
    /* Prevent horizontal scroll due to floating buttons */

}

/* Navbar Customizations */
.navbar {
    border-bottom: 1px solid #e0e0e0;
    height: 10vh;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
    /* Subtle shadow for depth */
}

.navbar-brand img {
    height: 10vh;
    width: auto;
     /* Adjust logo height */
}


.navbar-nav .nav-link {
    color: black !important;
    /* #333 Darker link color */
    font-weight: 600;
    margin-right: 3vh;
    /* Space between links */
    padding: 10px 0;
    /* Adjust padding for height control of links */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff !important;
    /* Blue hover/active color */
}

.navbar-nav .nav-link.active {
    /* Optional: Add an underline or border for active state */
    border-bottom: 2px solid #007bff;
}

.navbar-nav .btn-primary {
    background-color: #007bff;
    /* Bootstrap primary blue */
    border-color: #007bff;
    border-radius: 5px;
    /* Slightly rounded corners */
    padding: 8px 20px;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar-nav .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Page Hero Section (Banner with Title and Breadcrumb) */
.page-hero {
    background: #44617F;
    /* linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1500x400?text=Industrial+Tools') no-repeat center center; */
    background-size: cover;
    height: 300px;
    /* Fixed height for the banner */
    position: relative;
}

.page-hero h1 {
    font-size: 3.5rem;
    /* Large, bold title */
    color: white;
}

.page-hero p.lead {
    font-size: 1.2rem;
    color: #ddd;
    /* Lighter text for breadcrumb */
}


/* Contact Us Writing */

.contactus-writing {
    flex: 1.2;
    padding-left: 170px;
    padding-right: 90px;
    padding-top: 40px;
    /*padding-bottom: 10px;*/
}

/*get in touch */
.touch-row {
    display: flex;
    padding: 50px;
}

.contact-info {
    background-color: #ffffff;
    padding-left: 100px;
    padding-top: 50px;
    border-right: 1px solid #dee2e6;
    width: 50%;

}

.form-section {
    padding: 20px;
    background-color: #44617F;
    /* #343a40; */
    color: white;
    width: 50%;
}

.form-section h5 {
    color: white;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Modal Pop-up Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 350px;
    /* Reduced width for a smaller box */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

/* maps */
/* Map Responsiveness (Add this to your style.css) */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio (height / width = 9 / 16 = 0.5625) */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* (Keep your existing CSS rules below or above this) */

/* Section Headings (if you want consistency) */
section h2 {
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    /* #007bff; Primary color for headings */
}


/* Last Footer section */

.footer {
    background-color: #44617F;
    color: #ffffff;
    padding: 3rem 0;
}

.footer .fcontainer-fluid {
    width: 100%;
}

.footer h5 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer p,
.footer li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #007bff;
    /* #fcd34d; */
}

.footer .fcontact-info div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer .fcontact-info .bi {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: #ffffff;
}

/* Social icons section */
.social-icons-footer div {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.social-icons-footer a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.social-icons-footer a:hover {
    color: #007bff;
    /* #fcd34d; */
}

.social-icons-footer .bi {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.copyright {
    background-color: #f8f9fa;
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
    max-height: 20px;
}