html {
    scroll-behavior: smooth;
  }
body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 130px;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

.top-bar {
    background: #2e1503;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
}

.top-bar .contact-info span {
    margin-left: 10px;
}

.social-ic {
    display: flex;
    align-items: center;
}

.social-ic a {
    text-decoration: none;
    color: white;
    margin-left: 10px;
    font-size: 18px;
    display: flex; 
    align-items: center;
}

.social-ico a img {
    width: auto;
    height: auto;
    max-height: 30px;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 15px 20px;
    position: relative;
}

.logo img {
    height: 100px;
    margin-left: 20px;
    margin-top: -10px;
}
.nav-links {
    display: flex;
    gap: 20px;
    margin-left: 450px; /* Yeh automatically right align karega */
    /* margin-right: auto; Yeh automatically center align karega */
}
.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.quote-button {
    background: #2e1503;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.menu-icon {
    display: none; /* Hide menu icon by default */
}
/* ======= Mobile Styles ======= */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
        margin-right: 15px;
        z-index: 1100;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: white;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        margin-left: 0 !important; 
    }

    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #ddd;
        font-size: 18px;
        font-weight: bold;
    }

    .quote-button {
        text-align: center;
        display: block;
        margin-top: 10px;
        font-size: 16px;
        padding: 12px;
    }
    .top-bar{
        font-size: 10px;
    }
    .social-ic{
        height:0px;
        width: 150px;
    }
}
/* Image Section */
.image-section {
    width: 100%;
}

.image-section img {
    width: 100%;
    height: 450px; /* Good height */
    object-fit: cover;
    border-radius: 12px;
}

/* Commercial Properties Section */
.commercial-container {
    text-align: center;
    margin: 40px 0;
}

.commercial-container h1 {
    font-size: 38px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commercial-container p {
    font-size: 18px;
    margin-top: 10px;
}

/* Section Design */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    line-height: 1.6;
    background: #f8f4f4;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

.container h2, 
.container h3 {
    color: #333;
    text-align: center;
    margin-top: 20px;
    font-size: 26px;
}

.container ul {
    padding-left: 20px;
}

.container li {
    margin-bottom: 10px;
}

.contact-info {
    font-size: 18px;
    font-weight: bold;
    /* color: #007BFF; */
    text-align: center;
    margin-top: 20px;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 95%; /* Reduce width for better spacing */
        padding: 20px;
    }

    .image-section img {
        height: 350px; /* Slightly smaller for tablets */
    }

    .commercial-container h1 {
        font-size: 32px;
    }

    .commercial-container p {
        font-size: 17px;
    }

    .container h2,
    .container h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .image-section img {
        height: 280px; /* Further reduce for mobile */
    }

    .commercial-container h1 {
        font-size: 26px;
    }

    .commercial-container p {
        font-size: 15px;
    }

    .container {
        padding: 15px;
    }

    .container h2,
    .container h3 {
        font-size: 22px;
    }

    .contact-info {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .image-section img {
        height: 220px; /* Optimal for smaller screens */
    }

    .commercial-container h1 {
        font-size: 22px;
    }

    .commercial-container p {
        font-size: 14px;
    }

    .container {
        padding: 10px;
        box-shadow: none; /* Remove heavy shadow for mobile */
    }

    .container h2,
    .container h3 {
        font-size: 20px;
    }

    .contact-info {
        font-size: 14px;
    }
}

footer {
    background: #222; 
    color: white;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif; 
    min-height: 250px; 
    clear: both; 
}
.footer-section a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits the text color (white in this case) */
}
.footer-section a:hover {
    color: #A06A3F; /* Change color on hover */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 23%;
}

.footer-section h3 {
    color: #A06A3F;
    font-size: 18px;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section .social-icons a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-right: 10px;
}

/* Newsletter section */
.newsletter input {
    padding: 10px;
    width: 70%;
    border: none;
    margin-top: 10px;
}

.newsletter button {
    background: #A06A3F;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}
main{
    background-color: #fffaf1;
}

/* Footer Bottom Section */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    
    padding-top: 20px;
    border-top: 1px solid #444;
    padding-bottom: 20px; 
}

/* Mobile View */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
}

p{
    color: #000;
}
.dev{
    color: white;
    margin-left: 30px;
}