﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
}

/* ===== Container ===== */
.container {
    max-width: 95%;
    margin: auto;
    padding: 40px 20px;
}

/* ===== Contact Cards (Shared Styles) ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    text-align: center;
}

    .contact-card h3 {
        color: #c4161c;
        margin-bottom: 8px;
    }

    .contact-card p {
        font-size: 16px;
        margin: 6px 0;
    }

/* ===== Social Links ===== */
.social-links a {
    display: block;
    margin: 10px 0;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.youtube {
    background: #FF0000;
}

.facebook {
    background: #1877F2;
}

.google {
    background: #34A853;
}

/* ===== Review Us Section ===== */
.review-box {
    background: linear-gradient(135deg, #ffffff, #fff5f5);
    border-radius: 14px;
    padding: 35px 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    text-align: center;
}

    .review-box h2 {
        color: #c4161c;
        margin-bottom: 10px;
    }

.review-stars {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 10px;
}

/* ===== Content Card ===== */
.about-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

    .about-card h2 {
        color: #c4161c;
        margin-bottom: 15px;
        text-align: center;
    }

    .about-card p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
        text-align: justify;
    }

.why-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.why-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    box-shadow: inset 0 0 0 1px #eee;
}

/* ===== Professional Intro Section ===== */
.intro-section {
    background: #fafafa;
    border-left: 4px solid #b11226;
    border-right: 4px solid #b11226;
    padding: 22px 26px;
    margin: 30px 0;
    border-radius: 6px;
}

    .intro-section h2 {
        font-size: 24px;
        font-weight: 600;
        color: #b11226;
        margin-bottom: 14px;
    }

/* ===== Footer & WhatsApp ===== */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 14px;
    margin-top: 40px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* ===== MEDIA QUERIES (RECTIFIED) ===== */
@media (max-width: 768px) {
    /* We removed the header and nav overrides to keep the master layout */

    .container {
        padding: 20px 10px;
    }

    .about-card {
        padding: 20px;
    }

        .about-card p {
            font-size: 15px;
            text-align: left; /* Better readability on small screens */
        }

    .intro-section {
        padding: 15px 18px;
    }
}

/* =========================================
   2. INTRO SECTION (Branding)
   ========================================= */
    /* ===== PAGE TITLE (Same Red Gradient Style) ===== */
.seo-content

{
    max-width: 95%;
    margin: 10px auto;
    padding: 10px 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Headings */
.seo-content h1 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 15px;
    border-left: 5px solid #2563eb; /* Blue accent */
    padding-left: 12px;
}

.seo-content h2 {
    font-size: 22px;
    color: #111827;
    margin-top: 10px;
    margin-bottom: 12px;
}

/* Paragraph text */
.seo-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 14px;
}

/* Highlight keywords */
.seo-highlight {
    color: #2563eb;
    font-weight: 600;
}
