/* NAV BAR */


/* Navbar container */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    /* Adjusted from 10px 10px for more space between edges */
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Left section: Logo + Business Name */
.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.business-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Right section: Navigation links */
.nav-right {
    margin-right: 20px;
    /* Pulls nav-right away from the far right */
}

.nav-right a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #ff9900;
}


/* MAIN CONTENT */

/* Reset some default styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dimming the background */
    z-index: 2;
}

.herocontent {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.herocontent h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.herocontent p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #e68a00;
}


/* WHY CHOOSE US */


.whychooseus {
    padding: 80px 40px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whychooseus h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.whychooseus-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1;
    min-width: 280px;
    max-width: 32%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.icon {
    font-size: 2.5rem;
    color: #ff9900;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .whychooseus-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 100%;
    }
}

/* why choose us machina a neoza neoza */
.whychooseus {
    background-color: #1a1a1a;
    /* light black */
}
.whychooseus h1 {
    color: white;
}


/* MY SERVICES */

.services {
    padding: 80px 40px;
    background-color: #f5f5f5;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h2 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}


/* CONTACT US FORM */ 
.contactusform {
    padding: 60px 30px;
    background-color: #f0f0f0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contactusform h1 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
}

.contactusform p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.contactusform input {
    width: 90%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.contactusform button {
    padding: 12px 30px;
    background-color: #25d366;
    /* WhatsApp green */
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contactusform button:hover {
    background-color: #1ebe5d;
}


/* FOOTER THE LAST PART */

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 40px;
}