/* ---------------------------- 1. Doc Hero Section ---------------------------- */

.doc-hero-section {
    background: linear-gradient(181.19deg, #FFF4F4 -25.6%, #fbf7f7 40.14%);
}

/* SAME horizontal system as header */
.hero-inner {
    padding-top: clamp(60px, 6vw, 120px);
    padding-bottom: clamp(60px, 6vw, 120px);
}

/* Heading */
.doc-hero-section .hero-content h1 {
    margin: 0;
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: #3A3A3A;
}

.doc-hero-section .hero-content p{
font-size: clamp(14px, 2vw, 18px);
}
.head-pill {
  display: inline-block;
  background: var(--bg-badge);
  color: var(--badge);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
}

.hero-media {
    width: 100%;
    height: clamp(220px, 30vw, 360px);
    overflow: hidden;
    border-radius: 16px; /* optional, looks premium */
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 this does the cropping */
}


/* @media (max-width: 992px) {
    .hero-inner {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (max-width: 576px) {
    .hero-inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }
} */
/* ---------------------------- 2. Process Section ---------------------------- */


.process-section {
    padding-top: 80px;
    padding-bottom: 72px;
}

/* MAX WIDTH CONTROL */
.process-container {
    max-width: 1280px;
}

/* HEADER */
.section-header {
    margin-bottom: 72px;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: #3A3A3A;
}

.section-header p {
    color: #6c757d;
    font-size: 16px;
}

/* CARD BASE */
.process-card {
    border-radius: 20px;
    padding: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* IMAGE */
.card-img {
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.card-img img {
    max-width: 100%;
    height: auto;
}

.card-content .step {
    font-size: 30px;
    opacity: 0.5;
    font-weight: 700;
}

.card-content h5 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* COLOR VARIANTS */
.card-1 {
    background: var(--card-2-bg);
}

.card-2 {
    background: var(--card-4-bg);
}

.card-3 {
    background: var(--card-5-bg);
}
/* @media (max-width: 992px) {
    .process-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-header {
        margin-bottom: 32px;
    }
} */

/* ---------------------------- 3. Doc upload Benefit Section ---------------------------- */

/* SECTION */
.doc-upload-benefit {
    padding: 96px 0;
}

/* YOUR custom container (IMPORTANT FIX) */
.doc-benefir-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
}

/* HEADER */
.doc-benefit-header {
    margin-bottom: 48px;
}

.doc-benefit-header h2 {
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.3;
}

.doc-benefit-header p {
    font-size: 16px;
    color: #6c757d;
}

/* CARD */
.doc-benefit-card {
    padding: 24px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease;
}

.doc-benefit-card:hover {
    transform: translateY(-6px);
}

/* ICON */
.icon-box {
    width: 48px;
    height: 48px;
    /* background: rgba(255,255,255,0.2); */
    background-color: #ffffff;
    color: var(--app-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* TEXT */
.doc-benefit-card h5 {
    margin: 0;
    font-weight: 600;
}

.doc-benefit-card p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* COLORS */
.card-4 {
    background: var(--card-1-bg)
}

.card-5 {
    background: var(--card-2-bg);
}

.card-6 {
    background: var(--card-5-bg);
}

.card-7 {
    background: var(--card-6-bg);
}

.doc-benefit-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
/* MOBILE */
@media (max-width: 768px) {
    .doc-benefit-header {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .doc-upload-benefit {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (max-width: 576px) {
    .doc-upload-benefit {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}
/* ---------------------------- 4. Doc CTA Section ---------------------------- */

.doc-cta{
    background: #6b0000; /* burgundy tone */
    padding: 96px 0;
    color: #fff;
}
.doc-cta-container{
    max-width: 1280px;
}

.doc-cta-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.doc-cta-content h2{
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

.doc-cta-content p{
    opacity: 0.9;
    margin-bottom: 20px;
}

.doc-cta-content ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 24px;
}

.doc-cta-content li{
    margin-bottom: 10px;
    opacity: 0.95;
}

.cta-btn{
    background: #fff;
    color: #6b0000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.doc-cta-image img{
    width: 120%;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    border-radius: 16px;
    margin-left: -100px;
}
.doc-cta-image img:hover{
    transform: rotate(-2deg) scale(1.03);
}

@media (max-width: 992px) {
    .doc-cta-content {
        align-items: center;
        text-align: center;
    }

    .doc-cta-content ul {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .doc-cta-image {
        display: flex;
        justify-content: center;
    }

    .doc-cta-image img {
        margin-left: 0;
        width: 100%;
    }
    .doc-cta-image img{
        margin-left:0px;
        width:100%;
    }
    .doc-cta {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .doc-cta .row {
        row-gap: 40px;
    }
}

@media (max-width: 576px) {
    .doc-cta {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}
