/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #bc2026;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    }


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header ul li a:hover {
    color: #dceeff;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)
    ),

url(../carpet.jpeg)
    center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #bc2026;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all .3s ease;
}

.btn:hover {
    background: #a71b20;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(188,32,38,.4);
}

/* Services */
.services {
    padding: 80px 0;
    text-align: center;
    background: #fafafa;
}


.services h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: all .3s ease;

   
}


.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}
.card h3 {
    margin-bottom: 15px;
    color: #bc2026;
}

/* About */
    .about {
        background: #f3f8fc;
        text-align: center;
        padding: 80px 0;
    }


.about h2 {
    margin-bottom: 20px;
}

/* Contact */
.contact {
    padding: 70px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
}

form {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button {
    background: #0a74da;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

form button:hover {
    background: #085cb0;
}

/* Footer */
footer {
    background: #111;
    color: #ddd;
    text-align: center;
    padding: 40px 20px;
}

/* WHY CHOOSE US */

.why-us {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.why-us h2 {
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.why-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.cta {
    background: #bc2026;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
}

/* Mobile */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header ul {
        margin-top: 15px;
    }

    .hero h2 {
        font-size: 2rem;
    }
}