body {
    position: relative;
}

.main-body section {
    min-height: 500px;
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.main-body .heading {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.main-body .sub-heading {
    font-size: 1rem;
    font-weight: 600;
    max-width: 700px;
    margin: auto;
    margin-bottom: 1.5rem;
}

.main-body .information {
    font-size: 18px;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.align-left {
    text-align: end;
}

.align-center {
    text-align: center;
}

.main-body .intro-block .link-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 4.5rem;
}

.main-body .intro-block .link-buttons .btn {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 20px;
}

.img-box {
    height: 500px;
    width: 500px;
}

/* custom card css */

:root {
    --bg: #F7F6F2;
    --surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --accent: #2E6AFF;
    --accent-light: #EEF2FF;
    --border: #E8E6E0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 20px 48px rgba(0, 0, 0, 0.1);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}


.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow);
    animation: fadeUp 0.6s ease both;
}

.card:nth-child(1) {
    animation-delay: 0.05s;
}

.card:nth-child(2) {
    animation-delay: 0.12s;
}

.card:nth-child(3) {
    animation-delay: 0.19s;
}

.card:nth-child(4) {
    animation-delay: 0.26s;
}

.card:nth-child(5) {
    animation-delay: 0.33s;
}

.card:nth-child(6) {
    animation-delay: 0.40s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(46, 106, 255, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #EF8019;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2);
    border-radius: 20px 20px 0 0;
}

.card:hover::before {
    transform: scaleX(1);
}

.icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ef801921;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.card:hover .icon-wrap {
    background: #EF8019;
    transform: scale(1.08);
}

.card:hover .icon-wrap svg {
    color: #fff;
}

.icon-wrap svg {
    width: 24px;
    height: 24px;
    color: #EF8019;
    transition: color 0.3s ease;
}

.tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #EF8019;
    background: #ef801921;
    border-radius: 100px;
    padding: 4px 10px;
    margin-bottom: 14px;
}

.card h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 300;
}

.card-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
}

.stat {
    font-size: 12px;
    color: var(--text-secondary);
}

.stat strong {
    display: block;
    font-size: 18px;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 2px;
}

.arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.arrow-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.arrow-btn:hover svg {
    color: #fff;
}

.arrow-btn svg {
    width: 14px;
    height: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

/* custom card css end */

/* Contact Section */

.contact-block .contact-links {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.contact-block .contact-links:hover {
    color: #EF8019;
}

/* Contact Section End */

/* intro block */

.side-image {
    height: 500px;
    /* width: 500px; */
}

.intro-image {
    height: 100%;
    aspect-ratio: auto;
}

/* intro block end */

/* Why Choose Us Section Start */
.why-choose-section {
    min-height: unset !important;
}

/* Pill badge */
.why-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    border: 1px solid #bbf7d0;
}

.why-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
}

/* Stats */
.why-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 2rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.why-stat-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.why-stat-card:hover {
    transform: translateY(-3px);
    border-color: #EF801960;
}

.why-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: #EF8019;
    margin: 0 0 5px;
    line-height: 1;
}

.why-stat-lbl {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Marquee label */
.why-marquee-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.1em;
    margin: 2.5rem 0 1rem;
}

/* Marquee */
.why-marquee-outer {
    overflow: hidden;
    position: relative;
    margin-bottom: 2.5rem;
}

.why-marquee-outer::before,
.why-marquee-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.why-marquee-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.why-marquee-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.why-marquee-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: whyMarquee 32s linear infinite;
    padding: 4px 0;
}

.why-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes whyMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 5px));
    }
}

.why-feat-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.2s;
    cursor: default;
}

.why-feat-chip:hover {
    border-color: #EF801960;
}

.why-feat-chip-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ef801921;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #EF8019;
}

.why-feat-chip-icon svg {
    width: 16px;
    height: 16px;
}

.why-feat-chip-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

/* CTA block */
.why-cta-block {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.why-cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #EF8019;
}

.why-cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.why-cta-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.why-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.why-trust-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.why-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #aaa;
}

.why-trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #16a34a;
}

/* Why Choose Us Section End */