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;
    }
}

@media (max-width: 768px) {
    .if img {
      max-height: 250px; 
    }
  }
  .if {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  
  .if img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Image ko nicely crop karke container fill karega */
    max-height: 450px;  /* Desktop ke liye limit */
  }
    

.ours{
    font-family: Arial, sans-serif;
    background-color: #FBF9EF;
     
    color: rgb(11, 10, 10);
    text-align: center;
    padding: 20px;
    overflow-x: hidden;
}

.txt {
    color: #080808;
    text-align: center;
    font-size: 40px;
}

p {
    max-width: 800px;
    margin: 0 auto 20px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff7f32;
    cursor: pointer;
    font-weight: bold;
}
/* why choose............ */
.unique-container {
    text-align: center;
    padding: 50px 0;
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.box {
    width: 20%;
    opacity: 0;  /* Initially hidden */
    transform: translateY(50px);  /* Starts from below */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.icon-container {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.icon-container img {
    width: 50px;
    height: 50px;
}

.title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.description {
    font-size: 14px;
    color: #666;
    width: 80%;
    margin: auto;
}

/* 👇 Animation effect when the element is visible 👇 */
.box.show {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .txt {
        font-size: 28px; /* Reduce heading size */
    }

    p {
        max-width: 90%; /* Adjust text width */
        font-size: 14px; /* Reduce text size */
    }

    .services-container {
        flex-direction: column; /* Stack services */
        align-items: center;
    }

    .service-box {
        width: 90%; /* Full width */
        padding: 15px;
    }

    .service-box img {
        height: 250px; /* Reduce image size */
    }

    .features {
        flex-direction: column; /* Stack features */
        gap: 20px;
    }

    .box {
        width: 80%; /* Increase box width */
    }

    .icon-container {
        width: 80px;
        height: 80px;
    }

    .icon-container img {
        width: 40px;
        height: 40px;
    }

    .title {
        font-size: 16px;
    }

    .description {
        font-size: 12px;
    }
}

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;
    color: white;
    padding-top: 20px;
    border-top: 1px solid #444;
    padding-bottom: 20px; 
}
.dev{
    color: white;
    margin-left: 30px;
}

/* Mobile View */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
}

p{
    color: #000;
}