body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.listed-companies a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.external-link {
  color: #007bff;
  font-size: 12px;
}







@media (max-width: 768px) {


    .main-nav {
        display: none;
        /* Hidden by default */
        flex-direction: column;
    }

    .main-nav.active {
        display: flex;
        position: absolute;
        top: 75px;
        z-index: 10;
        align-items: center;
        right: 0;
        background-color: #ccc;
        height: 50rem;
        padding-top: 50px;

        /* Visible when active */
    }

    .main-nav ul {
        flex-direction: row;
        gap: 10px;
        width: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

    }

    .main-nav-ul li {
        border-right: gray 2px solid;
        padding-right: 4px;
    }


    .main-nav-ul {
        width: 80%;
    }

    .sub-nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .sub-nav ul li {
        padding: 10px;
    }

}


/* 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;
  }
  /* Why DLF section */
.why-dlf {
    background-color: #f9f9f9; /* Light gray background for contrast */
    padding: 40px 20px; /* Spacing for aesthetics */
    text-align: center; /* Center align text */
    font-family: 'Arial', sans-serif; /* Clean and professional font */
  }
  
  .why-dlf h2 {
    font-size: 2em; /* Emphasize the heading */
    font-weight: bold;
    margin-bottom: 20px; /* Space between heading and paragraph */
    color: #333; /* Darker color for contrast */
  }
  
  .why-dlf p {
    font-size: 1em;
    line-height: 1.6; /* Better readability */
    color: #666; /* Lighter gray for body text */
    max-width: 800px; /* Limit width for better readability */
    margin: 0 auto; /* Center the text horizontally */
  }
  
  