*{
    margin: 0px;
    padding: 0px;
}



/* ========== Navbar Styles ========== */
.custom-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    /* transparent look */
    backdrop-filter: blur(8px);
    z-index: 999;
    font-family: sans-serif;
}

.custom-navbar .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.custom-navbar .logo img {
    height: 85px;
    width: 250px;
}

.custom-navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.custom-navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-navbar .nav-links li a:hover {
    color: #00bcd4;
}

.custom-navbar .contact-btn {
    padding: 8px 16px;
    background-color: #00bcd4;
    color: #fff;
    border-radius: 4px;
}

.custom-navbar .contact-btn:hover {
    background-color: #0097a7;
}

/* Hamburger Menu */
.custom-navbar #menu-toggle {
    display: none;
}

.custom-navbar .menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.custom-navbar .menu-icon span {
    height: 3px;
    width: 25px;
    background: gray;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-navbar .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 200px;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        transition: right 0.3s ease;
    }

    .custom-navbar #menu-toggle:checked~.nav-links {
        right: 0;
    }

    .custom-navbar .menu-icon {
        display: flex;
    }
}


/* ========== Hero Section Styles ========== */
.custom-hero {
    position: relative;
    background: url("back.jpg") center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
    
}


.custom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* dims the image */
    z-index: -1;
}

.custom-hero .hero-content {
    max-width: 900px;
}

.custom-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 30px;
}

.custom-hero .hero-whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.custom-hero .hero-whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-hero h1 {
        font-size: 2.2rem;
    }

    .custom-hero p {
        font-size: 1rem;
    }

    .custom-hero .hero-whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}



/* ========== Why Choose Us Section ========== */


/* ========== Why Choose Us Section ========== */
.whychooseus {
    background-color: #000;
    color: #000;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.whychooseus h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.whychooseus-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.whychooseus-container>div {
    background-color: #fff;
    color: #000;
    flex: 1 1 250px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.whychooseus-container>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.whychooseus-container>div::before {
    display: block;
    font-size: 3rem;
    margin-bottom: 15px;
}

.whychooseus .wide::before {
    content: "🔧";
}

.whychooseus .reliable::before {
    content: "⏱️";
}

.whychooseus .certified::before {
    content: "🎓";
}

.whychooseus h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.whychooseus p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .whychooseus-container {
        flex-direction: column;
        align-items: center;
    }

    .whychooseus h1 {
        font-size: 2rem;
    }

    .whychooseus h2 {
        font-size: 1.3rem;
    }

    .whychooseus p {
        font-size: 0.95rem;
    }
}



/* ========== Our Services Section ========== */
.OURSERVICES {
    padding: 60px 20px;
    background-color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.OURSERVICES h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #333;
}

.OURSERVICES-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.OURSERVICES-container>div {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.OURSERVICES-container>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.OURSERVICES-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.OURSERVICES-container h2 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.OURSERVICES-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .OURSERVICES h1 {
        font-size: 2rem;
    }

    .OURSERVICES-container h2 {
        font-size: 1.2rem;
    }

    .OURSERVICES-container p {
        font-size: 0.95rem;
    }
}



/* ========== About Us Section ========== */
.aboutus {
    background-color: #f9f9f9;
    color: #333;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.aboutus h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #222;
}

.aboutus p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.aboutus strong {
    color: #000;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .aboutus h1 {
        font-size: 2.2rem;
    }

    .aboutus p {
        font-size: 1rem;
    }
} 



/*================ CONTACT US ==================*/

/* Scoped styles for the Contact Us section */
.contact {
    max-width: 600px;
    margin: 2rem auto;
    padding: 20px 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    color: #333;
    text-align: center;
}

.contact h1 {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
    color: #1a1a1a;
}

.contact h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 0.3rem;
}

.contact p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0.7rem 0;
    color: #555;
}

.contact form {
    margin-top: 1rem;
}

.contact input[type="text"],
.contact input[type="email"] {
    width: 340px;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1.5px solid #bbb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus {
    border-color: #0077cc;
    outline: none;
    background: #fff;
}

.contact button {
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background-color: #0077cc;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.contact button:hover {
    background-color: #005fa3;
}

/* Style the address nicely */
.contact h2+p {
    font-style: italic;
    color: #444;
    margin-top: 0.3rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .contact {
        padding: 15px 20px;
    }

    .contact h1 {
        font-size: 1.8rem;
    }

    .contact h2 {
        font-size: 1.3rem;
    }

    .contact button {
        width: 100%;
        padding: 14px;
    }
}









/* ========= FOOTER ============*/ 

footer {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 15px 20px;
    user-select: none;
    box-shadow: inset 0 1px 3px rgb(255 255 255 / 0.1);
}

/* Responsive font size for smaller screens */
@media (max-width: 480px) {
    footer {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}


/* =========== whatsapp icon =============== */ 

