/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9fbff;
    color: #222;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #0a58ff, #6ecbff);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
}

.main-heading span {
    display: block;
    font-size: 2rem;
    opacity: 0.9;
}

.subtitle {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* SECTION */
.section {
    padding: 80px 0;
}

.section-title,
.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* SERVICE CARDS */
.service-card {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* SCRAPBOOK FEATURE BOX */
.feature-box {
    margin-top: 20px;
    padding: 20px;
    background: #f1f6ff;
    border-left: 6px solid #0a58ff;
    border-radius: 15px;
    transform: rotate(-1deg);
    transition: 0.4s;
}

.feature-box:hover {
    transform: rotate(0deg) scale(1.02);
}

.feature-box h4 {
    margin-bottom: 10px;
}

.feature-box ul {
    list-style: none;
}

.feature-box li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.feature-box li::before {
    content: "•";
    color: #0a58ff;
    position: absolute;
    left: 0;
}

/* TABLE */
.table-container {
    overflow-x: auto;
    margin-top: 25px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

table th {
    background: #0a58ff;
    color: white;
    padding: 15px;
}

table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* FLOWCHART */
.flowchart {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    position: relative;
}

.flow-step {
    padding: 12px 20px;
    background: #e8f1ff;
    border-radius: 30px;
    font-size: 14px;
    position: relative;
    transition: 0.4s;
}

.flow-step:hover {
    background: #0a58ff;
    color: white;
}

/* Doodle arrows (fake curved effect) */
.flow-step::after {
    content: "➜";
    margin-left: 10px;
    color: #0a58ff;
}

.flow-step:last-child::after {
    display: none;
}

/* GRAPH */
.graph {
    margin-top: 30px;
}

.bar {
    margin: 18px 0;
}

/* BAR TOP (label + percentage) */
.bar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 6px;
}

.bar-top span {
    margin: 0;
}

/* Percentage styling */
.percent {
    font-weight: 600;
    color: #0a58ff;
    font-size: 13px;
}

.fill {
    width: 0;
    height: 10px;
    background: linear-gradient(90deg, #0a58ff, #6ecbff);
    border-radius: 10px;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* PROCESS FLOW */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.stage {
    background: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

.stage:hover {
    background: #0a58ff;
    color: white;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #0a58ff, #6ecbff);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-btn {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    background: white;
    color: #0a58ff;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* SCROLL ANIMATION */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .flowchart {
        flex-direction: column;
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
    }
}

.content-details {
    margin-top: 30px;
}

.content-details p {
    margin-bottom: 18px;
    color: #444;
    font-size: 15px;
    line-height: 1.9;
}


/* SCRAPBOOK CONTENT BOX */
.scrapbook-box {
    margin-top: 35px;
    padding: 35px;
    border-radius: 22px;
    background: linear-gradient(135deg, #edf4ff, #dcecff, #f5f9ff);
    border-left: 8px solid #0a58ff;
    box-shadow: 0 10px 35px rgba(10, 88, 255, 0.08);
    transform: rotate(-1deg);
    transition: 0.5s ease;
    position: relative;
    overflow: hidden;
}

.scrapbook-box:hover {
    transform: rotate(0deg) scale(1.01);
}

/* glow effect */
.scrapbook-box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: rgba(110, 203, 255, 0.15);
    border-radius: 50%;
}

/* heading */
.scrapbook-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0a58ff;
    font-family: 'Playfair Display', serif;
}

/* paragraphs */
.scrapbook-box p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}