/* Basic Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Logo */
.navbar .logo img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 0px;
}

/* Nav Links Container */
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: orange;
}

/* Contact Button */
.navbar .contact-button {
    background-color: orange;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.navbar .contact-button:hover {
    background-color: grey;
    color: #fff;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: rgb(181, 119, 2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 200px;
        height: calc(100% - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a,
    .contact-button {
        width: 100%;
        display: block;
    }

    .nav-links.show {
        right: 0;
    }
}




/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* HERO SECTION */
.hero {
    position: relative;
    background: url('back1.jpg') center/cover no-repeat;
    min-height: 60vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
    margin-top: 70px; /* Adjust this to match your navbar height */
    z-index: 1;
}

/* Overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Layer text above overlay */
.hero h1,
.hero p,
.hero button {
    position: relative;
    z-index: 2;
}


/* Typography */
.hero h1 {
    font-size: 2.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
}

.hero p {
    font-size: 1.1rem;
    margin-top: 0.8rem;
    max-width: 600px;
}

/* Button styling */
.hero button {
    margin-top: 1.2rem;
    padding: 0.75rem 1.5rem;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero button:hover {
    background-color: rgb(245, 187, 81);
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        margin-top: 60px; /* smaller navbar on mobile */
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero button {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}



/* WHY CHOOSE US */

/* WHY CHOOSE US SECTION */
.whychooseus {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.whychooseus h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.whychooseus>p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    color: #ddd;
}

/* Container for left + right */
.whychooseus-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

/* LEFT COLUMN */
.left-column {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.left-column .card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    transition: background-color 0.3s;
}

.left-column .card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.left-column i {
    font-size: 2.5rem;
    color: orange;
    margin-bottom: 15px;
    display: inline-block;
}

.left-column h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #fff;
}

.left-column p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.5;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .whychooseus h1 {
        font-size: 2.4rem;
    }

    .whychooseus>p {
        font-size: 1.1rem;
    }

    .left-column h2 {
        font-size: 1.5rem;
    }

    .left-column p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .whychooseus-content {
        flex-direction: column;
        gap: 30px;
    }

    .right-column img {
        max-height: none;
    }
}


/* OUR SERVICES */

/* SERVICES SECTION */
.services {
    background-color:rgb(255, 255, 255);
    /* dark background for contrast */
    color: black;
    padding: 80px 20px;
    text-align: center;
}

.services h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: black;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: rgb(235, 226, 226);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s, background-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#newbtn {
    width: 120px;
    height: 20px;
    background-color: orange;
    color: white;
    border: 1px solid orange ;
    border-radius: 3px;
}
#newbtn:hover {
    background-color: rgb(157, 102, 1);
    transform: scale(1.05);
}
#newbtn a {
    text-decoration: none;
    color: white;
}
.service-card:hover {
    background-color: rgb(194, 194, 194);
    transform: translateY(-5px);
}

.service-card img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h2 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
    text-align: center;
}

.service-card p {
    font-size: 1rem;
    color: black;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .services h1 {
        font-size: 2.2rem;
    }

    .service-card h2 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}
/* ADDRESS */
.addresssec {
    text-align: center;
    
}

/* CONTACT US */

/* Contact Us styles only */

.contact-us {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.contact-us h1 {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-us p {
    font-size: 1rem;
    margin: 0.5rem 0;
    text-align: center;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-us input,
.contact-us textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-us input:focus,
.contact-us textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.contact-us button {
    background-color: orange;
    color: #fff;
    border: none;
    padding: 0.8rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-us button:hover {
    background-color: black;
    color: orange;
}

.contact-us a {
    color: orange;
    text-decoration: none;
}

.contact-us a:hover {
    text-decoration: underline;
}

/* Responsive for desktop */
@media (min-width: 768px) {
    .contact-us {
        padding: 3rem;
    }

    .contact-us h1 {
        font-size: 3rem;
    }

    .contact-us p {
        font-size: 1.1rem;
    }

    .contact-us input,
    .contact-us textarea {
        font-size: 1.1rem;
    }

    .contact-us button {
        font-size: 1.2rem;
    }
}

/* FOOTER */
/* Footer styles only */

.site-footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .site-footer {
        font-size: 1.1rem;
        padding: 2rem;
    }
}

/* WHATSAPP ICON */ 

/* WhatsApp Floating Button Styles */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* Responsive adjustment for smaller screens if needed */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}