/* =========================================================
   SERVICES.CSS
   Styling ONLY for service pages:
   - Plagiarism Reduction
   - Review of Literature
   Does NOT affect homepage
========================================================= */

/* ===== Base Page Styling ===== */

body {
    margin: 0;
    /* Removes default browser margin */
    font-family: "Segoe UI", Arial, sans-serif;
    /* Clean academic font */
    background-color: #f4f7fb;
    /* Light professional background */
    color: #333;
    /* Dark readable text */
    line-height: 1.7;
    /* Comfortable reading spacing */
}

/* Controls page width */
.container {
    width: 90%;
    max-width: 1000px;
    /* Keeps content centered and readable */
    margin: auto;
}

/* ===== Hero Section (Top Blue Section) ===== */

.service-hero {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    /* Blue gradient */
    color: white;
    padding: 50px 0;
    /* Vertical spacing */
    text-align: center;
}

/* Hero Heading */
.service-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Hero Paragraph */
.service-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* ===== Card Sections (White Content Blocks) ===== */

.service-card {
    background: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    /* Soft rounded edges */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: 0.3s ease;
    /* Smooth hover effect */
}

/* Small hover animation */
.service-card:hover {
    transform: translateY(-4px);
}

/* Section headings inside cards */
.service-card h2 {
    color: #0d47a1;
    margin-bottom: 15px;
}

/* Bullet spacing */
ul {
    padding-left: 20px;
}

/* ===== WhatsApp CTA Button ===== */

.service-btn {
    display: inline-block;
    padding: 14px 25px;
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

/* Button hover effect */
.service-btn:hover {
    background-color: #1ebe5d;
}

/* ===== Footer Styling ===== */

.service-footer {
    text-align: center;
    padding: 30px 0;
    background-color: #0d47a1;
    color: white;
    margin-top: 50px;
}

/* Link styling */
a {
    color: #1565c0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}