@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sen', sans-serif;
    min-height: 100vh;
    width: 100%;
}

.hero {
    width: 100%;
    /* ── FIX 2: removed max-width so it stretches full width like section2 ── */
    min-height: 600px;
    background-color: #f7f8fc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 100px;
    position: relative;
    overflow: hidden;
    margin-top: 35px;
}

/* dot grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c5cad9 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.left {
    flex: 1;
    max-width: 540px;
    z-index: 1;
    animation: fadeInLeft 0.65s ease both;
}

.hero .badge {
    display: inline-block;
    background: #dce5f9;
    color: #003db8;
    font-family: 'Sen', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    margin-top: 10px;
    letter-spacing: 0.01em;
    border: none;
}

.headline {
    font-family: 'Sen', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #00123A;
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

.subtext {
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6D6D6D;
    line-height: 1.65;
    max-width: 430px;
    margin-bottom: 38px;
}

.buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #003db8;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #1f43c8;
    transform: translateY(-1px);
}

.btn-secondary1 {
    background: transparent;
    color: #00123A;
    border: 2px solid #6D6D6D;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-secondary1:hover {
    border-color: #003db8;
    color: #003db8;
    transform: translateY(-1px);
}

/* Stats */
.stats {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}

.stat-value {
    font-family: 'Sen', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #003db8 !important;
    line-height: 1;
    margin-bottom: 5px;
    text-align: center;
}

.stat-label1 {
    font-family: 'Sen', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6d6d6d;
}

/*  RIGHT  */
.right {
    flex: 1;
    max-width: 580px;
    position: relative;
    height: 480px;
    z-index: 1;
    animation: fadeInRight 0.65s ease 0.15s both;
}

/* Blobs */
.blob {
    position: absolute;
    width: 270px;
    height: 270px;
    background: #91a8fc;
    border-radius: 40px;
    top: 10px;
    right: -20px;
    transform: rotate(18deg);
    z-index: 0;
    opacity: 0.9;
}

.blob1 {
    position: absolute;
    width: 270px;
    height: 270px;
    background: #91a8fc;
    border-radius: 40px;
    top: 230px;
    right: 250px;
    transform: rotate(-19deg);
    z-index: 0;
    opacity: 0.9;
}

.blob2 {
    position: absolute;
    width: 70px;
    height: 70px;
    background: transparent;
    border: rgba(100, 100, 100, 0.562) solid 1px;
    border-radius: 10px;
    top: 0px;
    right: -40px;
    transform: rotate(10deg);
    z-index: 0;
    opacity: 0.5;
}

.blob3 {
    position: absolute;
    width: 70px;
    height: 70px;
    background: transparent;
    border: rgba(100, 100, 100, 0.562) solid 1px;
    border-radius: 10px;
    top: 450px;
    right: 210px;
    transform: rotate(19deg);
    z-index: 0;
    opacity: 0.5;
}

/* ── Card base ── */
.card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 30px rgba(20, 40, 100, 0.10), 0 2px 8px rgba(20, 40, 100, 0.06);
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.card-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-title {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00123A;
}

.card-subtitle {
    font-family: 'Sen', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    color: #9aa0b8;
    margin-top: 2px;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Sen', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #354575;
}

.check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #003db8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.check img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.check svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Card positions (desktop) ── */
.card-1 {
    top: 30px;
    right: 18px;
    width: 252px;
}

.card-2 {
    bottom: 180px;
    left: 28px;
    width: 234px;
}

.card-3 {
    bottom: 38px;
    right: 14px;
    width: 245px;
}

/* 
   CARD ANIMATIONS
*/

@keyframes revealCard1 {
    0% {
        opacity: 0;
        transform: rotate(3deg) translateY(160px) scale(0.85);
        filter: blur(6px);
    }

    55% {
        opacity: 1;
        transform: rotate(3deg) translateY(-14px) scale(1.03);
        filter: blur(0px);
    }

    72% {
        transform: rotate(3deg) translateY(5px) scale(0.99);
    }

    88% {
        transform: rotate(3deg) translateY(-3px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: rotate(3deg) translateY(0px) scale(1);
        filter: blur(0px);
    }
}

@keyframes revealCard2 {
    0% {
        opacity: 0;
        transform: rotate(-9deg) translateY(180px) scale(0.82);
        filter: blur(6px);
    }

    55% {
        opacity: 1;
        transform: rotate(-9deg) translateY(-16px) scale(1.03);
        filter: blur(0px);
    }

    72% {
        transform: rotate(-9deg) translateY(6px) scale(0.99);
    }

    88% {
        transform: rotate(-9deg) translateY(-3px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: rotate(-9deg) translateY(0px) scale(1);
        filter: blur(0px);
    }
}

@keyframes revealCard3 {
    0% {
        opacity: 0;
        transform: rotate(0deg) translateY(200px) scale(0.80);
        filter: blur(6px);
    }

    55% {
        opacity: 1;
        transform: rotate(0deg) translateY(-18px) scale(1.03);
        filter: blur(0px);
    }

    72% {
        transform: rotate(2deg) translateY(7px) scale(0.99);
    }

    88% {
        transform: rotate(2deg) translateY(-4px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: rotate(2deg) translateY(0px) scale(1);
        filter: blur(0px);
    }
}

@keyframes floatCard1 {
    0%, 100% {
        opacity: 1;
        transform: rotate(3deg) translateY(0px);
    }

    50% {
        opacity: 1;
        transform: rotate(3deg) translateY(-8px);
    }
}

@keyframes floatCard2 {
    0%, 100% {
        opacity: 1;
        transform: rotate(-9deg) translateY(0px);
    }

    50% {
        opacity: 1;
        transform: rotate(-9deg) translateY(-7px);
    }
}

@keyframes floatCard3 {
    0%, 100% {
        opacity: 1;
        transform: rotate(2deg) translateY(0px);
    }

    50% {
        opacity: 1;
        transform: rotate(2deg) translateY(-10px);
    }
}

.card-1 {
    animation: revealCard1 5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.card-2 {
    animation: revealCard2 5s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.card-3 {
    animation: revealCard3 5s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.card-1.card--floating {
    animation: floatCard1 4s ease-in-out 0s infinite;
    opacity: 1;
}

.card-2.card--floating {
    animation: floatCard2 5s ease-in-out 0.6s infinite;
    opacity: 1;
}

.card-3.card--floating {
    animation: floatCard3 4.5s ease-in-out 1.1s infinite;
    opacity: 1;
}

/* Entry animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
   SECTION 2 — Strategic Outreach
*/

.section2 {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, #0d1b6e 0%, #1a2fa0 40%, #0a1560 100%);
    padding: 80px 20px 90px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── FIX 4: Section2 badge — scoped separately from hero badge ── */
.section2 .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e8ecff;
    font-family: 'Sen', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    /* override hero badge blue background */
    background-color: rgba(255, 255, 255, 0.15);
    color: #e8ecff;
}

/* decorative rounded rectangles */
.deco {
    position: absolute;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.deco-tl {
    width: 140px;
    height: 140px;
    top: -30px;
    left: -30px;
    transform: rotate(-10deg);
}

.deco-br-1 {
    width: 200px;
    height: 140px;
    bottom: -50px;
    right: -40px;
    transform: rotate(8deg);
    border-color: rgba(80, 110, 255, 0.35);
}

.deco-br-2 {
    width: 240px;
    height: 160px;
    bottom: -80px;
    right: -70px;
    transform: rotate(8deg);
    border-color: rgba(80, 110, 255, 0.18);
}

/* Section 2 heading */
.section2 h2 {
    color: #fff;
    font-family: 'Sen', sans-serif;
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    max-width: 720px;
    margin-bottom: 28px;
}

/* Section 2 body text */
.section2 p {
    color: rgba(220, 228, 255, 0.85);
    font-family: 'Sen', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 56px;
}

/* Features row */
.features {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:nth-child(1) {
    transition-delay: 0.0s;
}

.feature:nth-child(2) {
    transition-delay: 0.1s;
}

.feature:nth-child(3) {
    transition-delay: 0.2s;
}

.feature:nth-child(4) {
    transition-delay: 0.3s;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.icon-box:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.icon-box svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature span {
    color: rgba(220, 228, 255, 0.9);
    font-family: 'Sen', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Section 2 entrance animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section2 .badge {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.7s ease 0.1s forwards;
}

.section2 h2 {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.7s ease 0.25s forwards;
}

.section2 p {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.7s ease 0.4s forwards;
}

/* 
   RESPONSIVE
 */

@media (max-width: 1280px) {
    .hero {
        padding: 60px 60px;
    }

    .headline {
        font-size: 38px;
    }

    .right {
        max-width: 500px;
        height: 440px;
    }

    .blob {
        width: 230px;
        height: 230px;
    }

    .blob1 {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 50px 44px;
        gap: 0;
    }

    .headline {
        font-size: 34px;
    }

    .left {
        max-width: 420px;
    }

    .right {
        max-width: 420px;
        height: 420px;
    }

    .blob {
        width: 200px;
        height: 200px;
        right: -10px;
    }

    .blob1 {
        width: 200px;
        height: 200px;
        top: 210px;
        right: 200px;
    }

    .card-1 {
        width: 210px;
        top: 20px;
        right: 8px;
        padding: 16px 18px;
    }

    .card-2 {
        width: 196px;
        bottom: 140px;
        left: 10px;
        padding: 16px 18px;
    }

    .card-3 {
        width: 206px;
        bottom: 24px;
        right: 8px;
        padding: 16px 18px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-subtitle {
        font-size: 11px;
    }

    .card-features li {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 44px 28px 52px;
        min-height: unset;
        gap: 0;
    }

    .left {
        max-width: 100%;
        width: 100%;
    }

    .headline {
        font-size: 32px;
        letter-spacing: -0.6px;
    }

    .subtext {
        font-size: 15px;
        max-width: 100%;
    }

    .subtext br {
        display: none;
    }

    .buttons {
        margin-bottom: 36px;
    }

    .stats {
        gap: 24px;
    }

    .stat-value {
        font-size: 26px;
    }

    .right {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 44px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
    }

    .blob, .blob1, .blob2, .blob3 {
        display: none;
    }

    .card,
    .card-1,
    .card-2,
    .card-3,
    .card-1.card--floating,
    .card-2.card--floating,
    .card-3.card--floating {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        transform: none !important;
        filter: none !important;
        animation: fadeInUp 0.5s ease both !important;
        padding: 18px 20px;
        opacity: 1;
    }

    .card-1 {
        animation-delay: 0s !important;
    }

    .card-2 {
        animation-delay: 0.12s !important;
    }

    .card-3 {
        animation-delay: 0.24s !important;
    }

    .card-title {
        font-size: 14px;
    }

    .card-subtitle {
        font-size: 11.5px;
    }

    .card-features li {
        font-size: 13px;
    }

    /* Section 2 responsive */
    .features {
        gap: 32px;
    }
}

@media (min-width: 560px) and (max-width: 768px) {
    .right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .card-3 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 36px 20px 48px;
    }

    .headline {
        font-size: 26px;
    }

    .subtext {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label1 {
        font-size: 12px;
    }

    .stats {
        gap: 18px;
    }

    .right {
        margin-top: 36px;
        gap: 14px;
    }

    .card {
        padding: 16px 18px;
    }

    .card-icon {
        width: 34px;
        height: 34px;
    }

    .card-icon svg {
        width: 16px;
        height: 16px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-subtitle {
        font-size: 11px;
    }

    .card-features li {
        font-size: 12.5px;
        gap: 8px;
    }

    .check {
        width: 18px;
        height: 18px;
    }

    .check svg {
        width: 9px;
        height: 9px;
    }

    .card-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .card-features {
        gap: 8px;
    }

    /* Section 2 mobile */
    .features {
        gap: 24px;
    }

    .icon-box {
        width: 52px;
        height: 52px;
    }

    .section2 {
        padding: 60px 16px 70px;
    }
}

@media (max-width: 400px) {
    .hero {
        padding: 30px 16px 40px;
    }

    .headline {
        font-size: 22px;
    }

    .hero .badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .stat-value {
        font-size: 20px;
    }

    .stats {
        gap: 16px;
    }

    .right {
        margin-top: 30px;
        gap: 12px;
    }

    .card {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .card-title {
        font-size: 12.5px;
    }

    .card-features li {
        font-size: 12px;
    }
}

/* 
   SECTION 3 — Core Capabilities
   Paste this into your dataintell.css
*/

.section3 {
    width: 100%;
    background: #f0f2f8;
    padding: 80px 80px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Header ── */
.s3-header {
    text-align: center;
    max-width: 760px;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.s3-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.s3-badge {
    display: inline-block;
    background: #dce5f9;
    color: #003db8;
    font-family: 'Sen', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.s3-title {
    font-family: 'Sen', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: #00123A;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.s3-sub {
    font-family: 'Sen', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 400;
    color: #6d6d6d;
    line-height: 1.7;
}

.s3-sub br {
    display: block;
}

/* ── Grid ── */
.s3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

/* ── Card ── */
.s3-card {
    background: #d6ddf5;
    border-radius: 20px;
    padding: 36px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.s3-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.s3-card:hover {
    background: #c8d3f0;
    box-shadow: 0 12px 40px rgba(43, 85, 230, 0.12);
    transform: translateY(-4px);
}

/* stagger delays */
.s3-card:nth-child(1) {
    transition-delay: 0.05s;
}

.s3-card:nth-child(2) {
    transition-delay: 0.12s;
}

.s3-card:nth-child(3) {
    transition-delay: 0.19s;
}

.s3-card:nth-child(4) {
    transition-delay: 0.26s;
}

.s3-card:nth-child(5) {
    transition-delay: 0.33s;
}

.s3-card:nth-child(6) {
    transition-delay: 0.40s;
}

/* ── Icon box ── */
.s3-icon {
    width: 54px;
    height: 54px;
    background: #003db8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.s3-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
}

/* ── Card text ── */
.s3-card-title {
    font-family: 'Sen', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #00123A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.s3-card-text {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}

/* ── Explore link ── */
.s3-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #003db8;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.s3-explore:hover {
    gap: 12px;
}

.s3-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 2px solid #003db8;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

.s3-explore:hover .s3-arrow {
    background: #003db8;
    color: #fff;
}

/*  RESPONSIVE  */
@media (max-width: 1100px) {
    .section3 {
        padding: 70px 44px 80px;
    }
}

@media (max-width: 900px) {
    .s3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .section3 {
        padding: 56px 20px 64px;
    }

    .s3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s3-sub br {
        display: none;
    }

    .s3-card {
        padding: 28px 24px 24px;
    }

    .s3-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 22px;
    }

    .s3-icon svg {
        width: 22px;
        height: 22px;
    }

    .s3-card-title {
        font-size: 15px;
    }

    .s3-card-text {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .section3 {
        padding: 44px 16px 52px;
    }
}

/* 
   SECTION 4 — Industry-Leading Quality Protocols
   Paste into dataintell.css
*/

.section4 {
    width: 100%;
    background: #e8ebf5;
    padding: 90px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    overflow: hidden;
}

/*  LEFT  */
.s4-left {
    flex: 1;
    max-width: 520px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.s4-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.s4-badge {
    display: inline-block;
    background: #dce5f9;
    color: #003db8;
    font-family: 'Sen', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.s4-title {
    font-family: 'Sen', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: #00123A;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.s4-sub {
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6b7494;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 40px;
}

/* ── List items ── */
.s4-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s4-item {
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 2px 12px rgba(43, 85, 230, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.s4-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.s4-item:hover {
    box-shadow: 0 8px 28px rgba(43, 85, 230, 0.13);
}

.s4-item:nth-child(1) {
    transition-delay: 0.1s;
}

.s4-item:nth-child(2) {
    transition-delay: 0.2s;
}

.s4-item:nth-child(3) {
    transition-delay: 0.3s;
}

/* ── Icon ── */
.s4-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #003db8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.s4-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

/* dark variant used on item 2 */
.s4-icon--dark {
    background: #1a3ab8;
}

.s4-item-text h4 {
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #00123A;
    margin-bottom: 6px;
}

.s4-item-text p {
    font-family: 'Sen', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #6D6D6D;
    line-height: 1.6;
}

/*  RIGHT — stacked cards  */
.s4-right {
    flex: 1;
    max-width: 500px;
    position: relative;
    height: 460px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.s4-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Back blue card */
.s4-card-back {
    position: absolute;
    width: 88%;
    height: 90%;
    background: #003db8;
    border-radius: 24px;
    top: 5%;
    right: -2%;
    transform: rotate(4deg);
    z-index: 0;
}

/* Front white card */
.s4-card-front {
    position: absolute;
    width: 90%;
    height: 92%;
    background: #fff;
    border-radius: 24px;
    top: 2%;
    left: 0;
    z-index: 1;
    padding: 36px 36px 28px;
    box-shadow: 0 16px 50px rgba(20, 40, 100, 0.13);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ── Metrics ── */
.s4-metrics {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.s4-metric-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.s4-metric-label {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #00123A;
}

.s4-metric-value {
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #003db8;
}

.s4-bar-track {
    width: 100%;
    height: 7px;
    background: #6d6d6d;
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 15px;
}

.s4-bar-fill {
    height: 100%;
    width: 0%;
    /* starts at 0, JS animates to data-width */
    background: linear-gradient(90deg, #003db8, #5b7fff);
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Bottom stats ── */
.s4-card-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f2f8;
}

.s4-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.s4-stat-value {
    font-family: 'Sen', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #003db8;
    line-height: 1;
}

.s4-stat-label {
    font-family: 'Sen', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6b7494;
}

/*  RESPONSIVE  */
@media (max-width: 1100px) {
    .section4 {
        padding: 70px 60px;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .section4 {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 44px;
    }

    .s4-left {
        max-width: 100%;
    }

    .s4-right {
        width: 100%;
        max-width: 100%;
        height: 420px;
    }

    .s4-card-front {
        width: 88%;
    }
}

@media (max-width: 600px) {
    .section4 {
        padding: 50px 20px;
        gap: 40px;
    }

    .s4-right {
        height: 380px;
    }

    .s4-card-front {
        padding: 26px 24px 22px;
    }

    .s4-metric-label {
        font-size: 13px;
    }

    .s4-metric-value {
        font-size: 14px;
    }

    .s4-stat-value {
        font-size: 22px;
    }

    .s4-item {
        padding: 18px 18px;
    }

    .s4-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .s4-icon img {
        width: 20px;
        height: 20px;
    }

    .s4-item-text h4 {
        font-size: 14px;
    }

    .s4-item-text p {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .section4 {
        padding: 40px 16px;
    }

    .s4-title {
        font-size: 26px;
    }

    .s4-right {
        height: 340px;
    }
}

/* 
   SECTION 5 — Measurable Results That Drive Growth
*/

.section5 {
    width: 100%;
    background: #ffffff;
    padding: 90px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*  Header  */
.s5-header {
    text-align: center;
    max-width: 680px;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.s5-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.s5-badge {
    display: inline-block;
    background: #dce5f9;
    color: #003db8;
    font-family: 'Sen', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.s5-title {
    font-family: 'Sen', sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    color: #00123A;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.s5-sub {
    font-family: 'Sen', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 400;
    color: #6d6d6d;
    line-height: 1.7;
}

.s5-sub br {
    display: block;
}

/*  Grid  */
.s5-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

/*  Card base  */
.s5-card {
    border-radius: 22px;
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.s5-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.s5-card:hover {
    box-shadow: 0 14px 44px rgba(20, 40, 100, 0.13);
    transform: translateY(-4px);
}

/* stagger */
.s5-card:nth-child(1) {
    transition-delay: 0.05s;
}

.s5-card:nth-child(2) {
    transition-delay: 0.15s;
}

.s5-card:nth-child(3) {
    transition-delay: 0.25s;
}

.s5-card:nth-child(4) {
    transition-delay: 0.35s;
}

/* ── Card colour variants ── */
.s5-card--blue {
    background: #003db8;
}

.s5-card--blue .s5-card-title {
    color: #fff;
}

.s5-card--blue .s5-card-text {
    color: rgba(255, 255, 255, 0.78);
}

.s5-card--blue .s5-stat-number {
    color: #fff;
}

.s5-card--blue .s5-stat-label {
    color: rgba(255, 255, 255, 0.75);
}

.s5-card--lightblue {
    background: #dde5f8;
}

.s5-card--lightblue .s5-card-title {
    color: #00123A;
}

.s5-card--lightblue .s5-card-text {
    color: #4a5275;
}

.s5-card--lightblue .s5-stat-number {
    color: #003db8;
}

.s5-card--lightblue .s5-stat-label {
    color: #4a5275;
}

.s5-card--grey {
    background: #eeeff4;
}

.s5-card--grey .s5-card-title {
    color: #00123A;
}

.s5-card--grey .s5-card-text {
    color: #4a5275;
}

.s5-card--grey .s5-stat-number {
    color: #003db8;
}

.s5-card--grey .s5-stat-label {
    color: #4a5275;
}

.s5-card--dark {
    background: #00123A;
}

.s5-card--dark .s5-card-title {
    color: #fff;
}

.s5-card--dark .s5-card-text {
    color: rgba(255, 255, 255, 0.65);
}

.s5-card--dark .s5-stat-number {
    color: #fff;
}

.s5-card--dark .s5-stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Icon box ── */
.s5-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.s5-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

/* icon on blue/dark cards — frosted light square */
.s5-icon--light {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* icon on light cards — solid blue */
.s5-icon--blue {
    background: #003db8;
}

/* ── Card text ── */
.s5-card-title {
    font-family: 'Sen', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.s5-card-text {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 28px;
    flex: 1;
}

/* ── Stat ── */
.s5-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.s5-stat-number {
    font-family: 'Sen', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.s5-stat-sup {
    font-size: 24px;
    font-weight: 800;
}

.s5-stat-label {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/*  RESPONSIVE  */
@media (max-width: 1100px) {
    .section5 {
        padding: 70px 60px;
    }
}

@media (max-width: 700px) {
    .section5 {
        padding: 56px 20px;
    }

    .s5-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .s5-sub br {
        display: none;
    }

    .s5-card {
        padding: 28px 24px 26px;
    }

    .s5-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        margin-bottom: 22px;
    }

    .s5-icon img {
        width: 22px;
        height: 22px;
    }

    .s5-card-title {
        font-size: 16px;
    }

    .s5-card-text {
        font-size: 13px;
    }

    .s5-stat-number {
        font-size: 32px;
    }

    .s5-stat-sup {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .section5 {
        padding: 44px 14px;
    }

    .s5-title {
        font-size: 26px;
    }
}

/* 
   SECTION 5 — Directional entrance animations
   Add these to your dataintell.css
   (replaces the old .s5-card base opacity/transform)
*/

/* ── Base card — hidden by default ── */
.s5-card {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease;
}

/* Card 1 — enters from TOP */
.s5-card:nth-child(1) {
    transform: translateY(-50px);
    transition-delay: 0.0s;
}

/* Card 2 — enters from RIGHT */
.s5-card:nth-child(2) {
    transform: translateX(50px);
    transition-delay: 0.15s;
}

/* Card 3 — enters from BOTTOM */
.s5-card:nth-child(3) {
    transform: translateY(50px);
    transition-delay: 0.3s;
}

/* Card 4 — enters from LEFT */
.s5-card:nth-child(4) {
    transform: translateX(-50px);
    transition-delay: 0.45s;
}

/* ── Visible state — all cards settle to natural position ── */
.s5-card.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── Hover lift (only after visible) ── */
.s5-card.visible:hover {
    box-shadow: 0 14px 44px rgba(20, 40, 100, 0.13);
    transform: translateY(-5px);
}

.section-7 {
    min-height: 100vh;
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.section-7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(100, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }
}

.container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.6);
    }
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both, floating 3s ease-in-out 1.2s infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: linear-gradient(120deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both, textWave 3s ease-in-out 0.4s infinite;
    letter-spacing: 0.5px;
}

@keyframes textWave {
    0%, 100% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
    animation: shadowPulse 2s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.8);
    }
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: borderSlide 3s ease-in-out infinite;
}

@keyframes borderSlide {
    0% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

.stat {
    animation: scaleIn 0.8s ease-out 0.8s both, slideUp 1s ease-out 0.8s backwards;
    position: relative;
    padding: 30px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.15) 0%, rgba(50, 100, 255, 0.1) 100%);
    /* backdrop-filter: blur(20px); */
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}


.stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: pulse 20s ease-in-out infinite;
    border-radius: 16px;
    pointer-events: none;
}


.stat:hover {
    background: linear-gradient(135deg, rgba(150, 180, 255, 0.25) 0%, rgba(100, 150, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-12px) scale(1.08) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 50, 200, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat:nth-child(1):hover {
    box-shadow: 0 30px 60px rgba(0, 50, 200, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 150, 100, 0.2);
}

.stat:nth-child(2):hover {
    box-shadow: 0 30px 60px rgba(0, 50, 200, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 40px rgba(100, 200, 255, 0.2);
}

.stat:nth-child(3):hover {
    box-shadow: 0 30px 60px rgba(0, 50, 200, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 40px rgba(100, 255, 200, 0.2);
}

.stat:nth-child(4):hover {
    box-shadow: 0 30px 60px rgba(0, 50, 200, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 200, 100, 0.2);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-value1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: block;
    animation: countUp 20s ease-out 10s both, textGlow 2s ease-in-out 10s infinite, numberBounce 20s ease-in-out 0.8s infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(100, 150, 255, 0.3);
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}



.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: 0.8px;
    animation: labelGlow 3s ease-in-out 1.5s infinite;
}



@media (max-width: 768px) {
    .main-heading {
        font-size: 2.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.8rem;
    }

    .stat-value1 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}