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;
    }
}
/* Contact Form */
/* ===== Contact Section Styling ===== */
/* Container */
.contact-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

/* Form and Map Layout */
.form-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* Contact Form */
.contact-form {
    width: 48%;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s forwards;
    
}

.input-field {
    margin-bottom: 15px;
}

.input-field input, 
.input-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #A06A3F;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #8A5630;
}

/* Map Section */
.map-container {
    width: 48%;
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 1s forwards;
}

.map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: none;
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-map-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .map-container {
        width: 100%;
        transform: none;
        opacity: 1; /* Instantly visible on mobile */
    }
}

@media (max-width: 480px) {
    .contact-form, .map-container {
        padding: 15px;
    }

    .input-field input, .input-field textarea {
        padding: 8px;
        font-size: 14px;
    }

    button {
        padding: 8px 12px;
        font-size: 14px;
    }

    .map {
        height: 250px; /* Smaller map on mobile */
    }
}


/* ===== Toast Notification Styling ===== */
/* ===== Toast Notification Styling ===== */
/* .toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e1503;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
} */

#toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e1503;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    display: none;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.show {
    display: block;
}
@media (max-width: 480px) {
    #toast {
        width: 80%;
        font-size: 14px;
        padding: 10px;
        bottom: 15px;
    }
}
.contact-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
}

.office-box, .contact-box {
    text-align: center;
    width: 250px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #fff;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.contact-box {
    background: #f8f8f8;
}

.office-icon img, .contact-box img {
    width: 30px;
    display: block;
    margin: 0 auto 10px;
    transition: transform 0.3s ease;
}

.office-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.office-name {
    font-size: 16px;
    font-weight: bold;
}

.office-address {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

.contact-link {
    text-decoration: none;
    color: orange;
    font-size: 14px;
}

/* Hover Effect */
.office-box:hover,
.contact-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Fade-In Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay animations for stagger effect */
.office-box:nth-child(1) { animation-delay: 0.2s; }
.office-box:nth-child(2) { animation-delay: 0.4s; }
.contact-box:nth-child(3) { animation-delay: 0.6s; }
.contact-box:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Smaller gap for mobile */
    }
}
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;
}


.hero-image {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    
    max-height: 450px;  /* Desktop pe limit set */
  }
  @media (max-width: 768px) {
    .hero-image img {
      max-height: 250px; /* Mobile view ke liye adjust */
    }
  }
    
  .hw{
    color: white;
  }