body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('https://via.placeholder.com/1500x300') no-repeat center/cover;
    overflow-x:hidden;
}

.navbar {
    display: flex;
    align-items: center; /* remove inline-block to avoid breaking flex */
    justify-content: space-around;
    background: transparent;
    position: fixed; /* keep navbar always at top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    color: white;
}


.logo {
    margin-right: 20px;
}

.logo img {
    height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    margin-right: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links li:hover>a {
    color: #d4a017;
}

.dropdown {
    display: none;
    position: absolute;
    background: #1a1a1a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.nav-links li:hover .dropdown {
    display: block;
}

.dropdown a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown a:hover {
    background: #333;
}

.menu-bar {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff
}

.navstl {
  position: absolute;
  top: 70px;
  right: 0;
  width: 30%;
  background-color: #000;
  border-radius: 0;
  flex-direction: column;
  padding: 20px 0;
  gap: 15px;
  display: flex !important;
  box-sizing: border-box;
  z-index: 999
}



@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        padding-left: 20px;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
    }


    .navbar.active .nav-links {
        display: flex;
    }
    .menu-bar{
        display: block;
        padding-right: 30px ;
    }
    .logo img {
        height: 50px;
    }
    .navbar{
        padding: 10px 10px;
        justify-content: space-between;
    }
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
              url('./images/leela.webp') no-repeat center center/cover;
  color: #fff;
  /* background-size: cover; */
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  height: 100vh;
  transition: background-image 1s ease-in-out;
  animation: zoomBackground 10s ease-in-out infinite alternate;
}


@keyframes zoomBackground{
    0%{background-size:120%}
    100% {background-size:140%};
}

@media (max-width:768px){
    .hero{
        background-size:cover;
        height: 100vh;
    }
}

footer{
    display:flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: white;
}

.upper{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    font-size: 20px;
}
.left-most{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    max-width: 350px;
}
.middle{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}
.mcolor{
    color: #d4a017;
}
.address{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.mobile{
    line-height: 5px;
}
.links{
    gap: 20px;
}
.links .fa-brands{
    font-size: 40px;
}

.line-div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.line{
    height: 20px;
    width: 4px;
    background-color: #d4a017;
}

.left-most img{
    height: 150px;
    width: 150px;
}

@media(max-width:768px){
    .upper{
        flex-direction: column;
        padding-left: 20px;
    }
    #mobile{
        white-space: normal; /* Allows text to wrap to next line */
        word-wrap: break-word; /* Breaks long words if needed */
        overflow-wrap: break-word; /* Modern alternative for wrapping */
        line-height: 1.5;
    }
}

.msg-md {
    max-width: 1200px;
    margin: 0 auto; /* Center horizontally */
    margin-top: 100px;
    display: flex;
    align-items: center; /* Vertical alignment */
    justify-content: center; /* Horizontal alignment */
    gap: 30px; /* Space between image and text */
    padding: 40px 20px; /* Some breathing space */
}

.md-img img {
    max-width: 100%;
    height: 57vh;
    border-radius: 8px; /* Optional styling */
}

.md-text {
    max-width: 600px;
}

.md-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.md-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .msg-md {
        flex-direction: column;
        text-align: center;
    }

    .md-text {
        max-width: 100%;
    }
}

.commercial-projects{
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.commercial-container , .inner-gallery{
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.cp{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cp img{
    max-width: 650px;
}
.commercial-projects p{
    font-size: x-large;
    text-align: center;
    font-weight: bold;
}

.gallery{
    margin: 100px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery img{
    max-width: 400px;
}

@media(max-width:768px){
    .cp img{
        max-width: 90vw;
    }
    .commercial-container{
        margin-top: 0px;
    }
    .gallery img{
        max-width: 90vw;
    }
    .gallery{
        margin: 0px;
        margin-bottom: 20px;
    }

}
.customer-lounge{
    display: flex;
    justify-content: center;
    align-items: center;
}
.reviews{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 150px 0px 50px 0px;
    gap: 20px;
}
.review{
    display: flex;
    flex-direction: column;
    justify-content:baseline;
    align-items: center;
    height:500px;
    max-width: 37vw;
    padding: 30px;
    background: linear-gradient(90deg,rgba(212, 160, 23, 0.87) 0%, rgba(237, 221, 83, 1) 100%);
}
.review img{
    max-width: 150px;
    top: 0px;
}
.review p{
    font-size: larger;
    line-height: auto;
}
.partnership{
    margin-top: 150px;
    padding: 100px;
}
.partnership p{
    font-size: x-large;
    font-weight:400;
}
.partnership a{
    background-color: #000;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
}

.Blogs{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 124px;
}
.videos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 0px;
    gap: 30px;
}
video{
    width: 90vw;
    height: 70vh;
}


.contact-us{
    margin-top: 120px;
    padding: 50px 0px;
    display: flex;
    justify-content: center;
    gap: 250px;
    background-color: #eaeaea;
}
form{
    display: flex;
    flex-direction: column;
}
.name{
    display: flex;
    gap: 30px;
}
.name input{
    height: 40px;
    border-radius: 20px;
    padding: 5px;
    font-size: larger;
}
.number{
    height: 40px;
    border-radius: 20px;
    padding: 5px;
    font-size: larger;
}
.container {
  padding: 15px;
  border-radius: 5px;
  width: fit-content;
}

label {
  margin-right: 30px;
}

input[type="radio"] {
  accent-color: purple; /* For modern browsers */
}
.form-para{
    font-size: larger;
    font-weight: bold;
}
.specific{
    height: 150px;
    border-radius: 5px;
    font-size: larger;
    padding: 5px;
    margin-bottom: 20px;
}
form button{
    width:fit-content;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: larger;
    background-color: #d4a017;
    border: none;
    border-radius: 10px;
    color: #fff;
}
.contact-detail{
    font-size:larger;
}

@media(max-width:768px){
    .review{
        max-width: 80vw;
        height: auto;
    }
    .reviews{
        margin-top: 100px;
    }
    .Blogs{
        margin-top: 50px;
    }
    .partnership{
        margin-top: 50px;
        padding: 30px 10px;
    }
    .contact-us{
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
        gap: 50px;
    }
    .name{
        flex-direction: column;
    }
    
}







