body {
    margin: 0;
    font-family: Arial, sans-serif;
}






/* Footer Top Section */
.footer {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-top {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid gray;
}

.footer-top h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
}

.footer-top h3 i {
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.footer-links a:hover {
    border-color: gray;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 20px;
}

.footer-column {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li:first-child {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: gray;
}

.footer-column small {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: gray;
}

.footer-column p {
    margin-top: 10px;
    font-size: 14px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 15px;
}

/* Building Icon */
.building {
    width: 50px;
    height: 100px;
    background-image: url('building-icon.png');
    /* Replace with actual building image */
    background-size: cover;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        /* text-align: center; */
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-column {
        margin-bottom: 20px;
    }
} 
.business-enquiry {
    position: relative;
    background: url('../img/5img.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    /* background-color: rgba(0, 0, 0, 0.6); Dark overlay for better text visibility */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgb(0 0 0 / 48%);
    /*justify-content: center;*/
  }
  
  .content {
    text-align: left;
    max-width: 600px;
    padding: 20px;
  }
  
  h4 {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 10px;
  }
  
  h1 {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1em;
    font-weight: 300;
    margin-top: 10px;
  }
  