/* HERO BANNER FIX */
.hero {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.hero img {
    width: 100%;
    max-width: 1100px;   /* Laptop pe limit karega */
    height: auto;
    border-radius: 8px;
}

img {
   max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 25px 15px;
}

header h1 {
    font-size: 28px;
}

header p {
    margin-top: 5px;
    font-size: 14px;
}

/* Hero Banner */
.hero {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.hero img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
    background: white;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
}

.service-box {
    background: white;
    padding: 25px;
    margin: 15px auto;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Desktop Grid */
@media (min-width: 768px) {
    .services {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .service-box {
        width: 300px;
    }
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}