* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #0b2545;
    --secondary: rgb(237, 245, 251);
    --accent-orange: #f26522;
    --text-dark: #1d2939;
    --text-subtle: #475467;
    --badge-bg: #f2f4f7;
    --muted-foreground: #88a2b9;
    --font-family: 'Inter', sans-serif;
    --border-mute: rgba(110, 110, 110, 0.25);
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================= HERO SECTION ================= */

.hero-section {
    padding: 122px 80px;
    background: var(--secondary);
    animation: fadeIn 1s ease;
}

.hero-section .row {
    align-items: center;
}

.hero-content {
    opacity: 0;
    animation: fadeLeft 1s ease forwards;
}

.image-wrapper {
    opacity: 0;
    animation: fadeRight 1.2s ease forwards;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    animation: floatImage 5s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.image-wrapper img:hover {
    transform: scale(1.03);
}

/* ================= STATS SECTION ================= */

.stats-section {
    padding: 45px 0;
    background: white;
}

.stats-box {
    text-align: left;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    transition: transform 0.4s ease;
}

.stats-box:hover {
    transform: translateY(-10px);
}

.stats-box:nth-child(1) {
    animation-delay: 0.2s;
}

.stats-box:nth-child(2) {
    animation-delay: 0.4s;
}

.stats-box:nth-child(3) {
    animation-delay: 0.6s;
}

.stats-box:nth-child(4) {
    animation-delay: 0.8s;
}

.stats-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.stats-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    animation: pulseGlow 3s infinite;
    transition: transform 0.4s ease;
}

.stats-box:hover .stats-icon {
    transform: rotate(10deg) scale(1.1);
}

.stats-icon i {
    font-size: 22px;
    color: var(--primary-navy);
}

.stats-top h2 {
    color: var(--primary-navy);
    font-size: 25px;
    font-weight: 800;
    margin: 0;
}

.stats-box p {
    color: var(--muted-foreground);
    font-size: 13px;
    letter-spacing: 1px;
    margin-left: 66px;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* ================= GLOBAL SOURCING SECTION ================= */

.global-sourcing-section {
    padding: 100px 0;
    background: white;
}

.global-content {
    max-width: 850px;
    margin: 0 auto 70px;
    opacity: 0;
    animation: zoomFade 1s ease forwards;
}

.global-content h1 span {
    color: var(--accent-orange);
}

.global-sourcing-section .card {
    padding: 38px 30px;
    border-radius: 18px;
    transition: all 0.4s ease;
    border: 1px solid #dce6ef;
    opacity: 0;
    animation: cardReveal 0.9s ease forwards;
}

.global-sourcing-section .card:nth-child(1) {
    animation-delay: 0.1s;
}

.global-sourcing-section .card:nth-child(2) {
    animation-delay: 0.2s;
}

.global-sourcing-section .card:nth-child(3) {
    animation-delay: 0.3s;
}

.global-sourcing-section .card:nth-child(4) {
    animation-delay: 0.4s;
}

.global-sourcing-section .card:nth-child(5) {
    animation-delay: 0.5s;
}

.global-sourcing-section .card:nth-child(6) {
    animation-delay: 0.6s;
}

.global-sourcing-section .card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 12px 28px rgba(8, 38, 74, 0.12);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #edf7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: pulseGlow 3s infinite;
    transition: transform 0.4s ease;
}

.global-sourcing-section .card:hover .icon-box {
    transform: rotate(8deg) scale(1.1);
}

.icon-box i {
    font-size: 24px;
    color: var(--primary-navy);
}

.global-sourcing-section .card h3 {
    color: var(--primary-navy);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.global-sourcing-section .card p {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ================= WHAT YOU GET SECTION ================= */

.Whatget-section {
    padding: 122px 80px;
    background: var(--secondary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    animation: fadeLeft 0.8s ease forwards;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.6s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.8s;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2.5s infinite;
}

.check-icon i {
    color: white;
    font-size: 14px;
}

.benefit-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--primary-navy);
}

.cta-card {
    padding: 45px 40px;
    background: white;
    border: 1px solid var(--border-mute);
    border-radius: 20px;
    opacity: 0;
    animation: zoomFade 1s ease forwards;
    animation-delay: 0.5s;
    transition: transform 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
}

.cta-card h2 {
    color: var(--primary-navy);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-button {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    padding: 16px 24px;
    background: var(--primary-navy);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    color: white;
}

.btn-outline-custom {
    border: 1px solid var(--border-mute);
    border-radius: 16px;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--primary-navy);
    transition: 0.3s;
}

.btn-outline-custom:hover {
    transform: translateY(-5px);
    color: var(--primary-navy);
}

.btn-primary-custom::before,
.btn-outline-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.btn-primary-custom:hover::before,
.btn-outline-custom:hover::before {
    left: 130%;
}

/* ================= FOOTER ================= */

.footer-section {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

/* ================= KEYFRAMES ================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(242, 101, 34, 0);
    }

    50% {
        box-shadow: 0 0 22px rgba(242, 101, 34, 0.35);
    }

    100% {
        box-shadow: 0 0 0 rgba(242, 101, 34, 0);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(80px) rotateX(10deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {

    .hero-section,
    .Whatget-section {
        padding: 90px 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .global-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {

    .hero-section,
    .Whatget-section {
        padding: 70px 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .description {
        margin: auto;
    }

    .image-wrapper img {
        height: 380px;
        margin-top: 30px;
    }

    .stats-box {
        text-align: center;
    }

    .stats-top {
        justify-content: center;
    }

    .stats-box p {
        margin-left: 0;
    }

    .cta-card {
        margin-top: 40px;
    }

    .Whatget-section h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {

    .hero-section,
    .Whatget-section {
        padding: 55px 15px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content .description {
        font-size: 16px;
    }

    .image-wrapper img {
        height: 280px;
        border-radius: 16px;
    }

    .global-sourcing-section {
        padding: 70px 15px;
    }

    .global-content {
        margin-bottom: 45px;
    }

    .global-content h1 {
        font-size: 36px;
    }

    .global-content .description {
        font-size: 16px;
    }

    .global-sourcing-section .card {
        padding: 30px 24px;
    }

    .Whatget-section {
        text-align: center;
    }

    .Whatget-section h1 {
        font-size: 36px;
    }

    .benefit-item {
        text-align: left;
    }

    .cta-button {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .hero-section,
    .Whatget-section {
        padding: 45px 12px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .image-wrapper img {
        height: 230px;
    }

    .stats-top h2 {
        font-size: 28px;
    }

    .global-content h1 {
        font-size: 30px;
    }

    .global-sourcing-section .card h3 {
        font-size: 20px;
    }

    .cta-card {
        padding: 30px 22px;
    }

    .cta-card h2 {
        font-size: 30px;
    }

    .benefit-item p {
        font-size: 16px;
    }
}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}