/* ===== COMPLETE RESET (REMOVES WHITE GAP) ===== */
html, body {
    margin: 0;
    padding: 0;
}

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

/* ===== BODY ===== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    font-size: 20px;
    line-height: 1.8;
}

/* ===== HERO SECTION ===== */
header {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

header h1 {
    font-size: 60px;
    font-weight: 700;
}

header p {
    font-size: 22px;
    margin-top: 15px;
}

/* ===== NAVIGATION (BELOW HERO) ===== */
nav {
    background: #111;
    text-align: center;
    padding: 22px 0;
}

nav a {
    color: white;
    margin: 0 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #00c6ff;
}

/* ===== BUTTON ===== */
.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: #00c6ff;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 16px;
}

.hero-btn:hover {
    background: #0072ff;
    transform: translateY(-3px);
}

/* ===== SECTION ===== */
.feature-section {
    padding: 100px 10%;
    text-align: center;
}

.feature-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 600;
}

/* ===== GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ===== FEATURE BOX ===== */
.feature-box {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    text-align: center;
    min-height: 420px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.feature-box img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0072ff;
}

.feature-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
}

footer p {
    margin-bottom: 10px;
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 10%;
}

.contact-info {
    background: #1c2e45;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 28px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    background: #ff6b35;
    color: white;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e85c28;
}

/* ===== SERVICE PAGE LAYOUT FIX ===== */
.service-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
}

.service-text {
    max-width: 500px;
    text-align: left;
}

.service-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-text p {
    font-size: 18px;
    color: #333;
}

.service-text ul li {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 40px;
    }

    header p {
        font-size: 18px;
    }

    nav a {
        display: inline-block;
        margin: 8px 12px;
        font-size: 16px;
    }

    .service-text {
        text-align: center;
    }
}