@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;500&family=Orbitron:wght@500;700&display=swap');
* {
    padding: 0px;
    margin: 0px;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
a, a:link, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
    display: block;
}
h1, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
legend {
    display: block;
}
/**/
:root {
    --rich-black: #021a1a;
    --bangladesh-green: #03624c;
    --bangladesh-green-hover: rgba(3, 98, 76, 0.8);
    --carribean-green: #00df82;
    --carribean-green-hover: rgba(0, 223, 130, 0.8);
    --anti-flash-white: #f1f7f7;

    --font-primary: 'Karla', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--anti-flash-white);
    color: var(--rich-black);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nmp-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.nmp-title--main {
    font-family: var(--font-secondary);
    font-size: clamp(1.9rem, 1.6rem + 1.5vw, 3rem);
    line-height: 1.25;
    color: var(--bangladesh-green);
    margin-bottom: 16px;
}

.nmp-title--sub {
    font-family: var(--font-secondary);
    font-size: clamp(1.6rem, 1.5rem + 0.6vw, 2.3rem);
    line-height: 1.4;
    color: var(--bangladesh-green);
    margin-bottom: 16px;
}

.nmp-title--small {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 0.8rem + 1vw, 1.7rem);
    line-height: 1.5;
    color: var(--rich-black);
    margin-bottom: 16px;
}

.nmp-text {
    font-size: clamp(1rem, 0.85rem + 0.4vw, 1.3rem);
    color: var(--rich-black);
    line-height: 1.7;
    margin-bottom: 16px;
}

.nmp-section__heading {
    font-weight: 700;
    color: var(--bangladesh-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-secondary);
}

.nmp-button {
    display: inline-block;
    padding: clamp(0.625rem, 0.5893rem + 0.1786vw, 0.75rem) clamp(1.125rem, 1.0179rem + 0.5357vw, 1.5rem);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-secondary);
}

.nmp-button--primary {
    background-color: var(--bangladesh-green);
    color: var(--anti-flash-white);
}

.nmp-button--primary:hover {
    background-color: var(--bangladesh-green-hover);
    transform: scale(1.08);
}

.nmp-button--secondary {
    background-color: var(--carribean-green);
    color: var(--rich-black);
}

.nmp-button--secondary:hover {
    background-color: var(--carribean-green-hover);
    transform: scale(1.05);
}

/**/

.nmp-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 10;
}

.nmp-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nmp-header__logo img {
    height: 60px;
}

.nmp-header__nav a {
    font-family: var(--font-primary);
    color: var(--anti-flash-white);
    text-decoration: none;
    margin-left: 28px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nmp-header__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--carribean-green);
    transition: width 0.3s ease;
}

.nmp-header__nav a:hover {
    color: var(--carribean-green);
}

.nmp-header__nav a:hover::after {
    width: 100%;
}
/* Десктоп */
.nmp-header__nav--desktop {
    display: flex;
}

/* Бургер (спочатку прихований) */
.nmp-burger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bangladesh-green);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 15;
}

.nmp-burger__line {
    width: 22px;
    height: 2px;
    background-color: var(--anti-flash-white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.nmp-mobile-menu {
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: var(--rich-black);
    border-radius: 12px;
    padding: 15px 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 12;
}

.nmp-mobile-menu a {
    color: var(--anti-flash-white);
    text-decoration: none;
    font-family: var(--font-primary);
}

/* Анімація бургера */
.nmp-burger.open .nmp-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nmp-burger.open .nmp-burger__line:nth-child(2) {
    opacity: 0;
}

.nmp-burger.open .nmp-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Адаптив */
@media (max-width: 768px) {
    .nmp-header__nav--desktop {
        display: none;
    }

    .nmp-burger {
        display: flex;
    }
}

/**/
.nmp-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: url('img/hero-image.webp') no-repeat center center/cover;
    display: flex;
    align-items: flex-end;
    padding: 0 0 clamp(3.75rem, -4.0625rem + 25vw, 10rem) 0;
    color: var(--anti-flash-white);
    animation: heroZoom 6s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 105%;
    }
}

.nmp-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 26, 26, 0.5);
    z-index: 1;
}

.nmp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 18px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nmp-hero__subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.8;
}

.nmp-hero__title {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 1.5rem + 2vw, 4rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.nmp-hero__link {
    font-family: var(--font-primary);
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    color: var(--anti-flash-white);
    display: inline-block;
    transition: all 0.3s ease;
}

.nmp-hero__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: var(--carribean-green);
    transition: width 0.3s ease;
}

.nmp-hero__link:hover {
    color: var(--carribean-green);
}

.nmp-hero__link:hover::after {
    width: 100%;
}
/**/
.nmp-intro {
    background-color: var(--anti-flash-white);
    overflow: hidden;
    padding: clamp(6.25rem, 4.4643rem + 8.9286vw, 12.5rem) 0;
}

.nmp-intro__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.nmp-intro__left {
    flex: 1;
    min-width: 280px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1.2s ease-out forwards;
    max-width: 500px;
}

.nmp-intro__headline {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
    color: var(--rich-black);
    margin-bottom: 12px;
}

.nmp-intro__sub {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--bangladesh-green);
    opacity: 0.8;
}

.nmp-intro__right {
    flex: 1;
    min-width: 280px;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.nmp-intro__title {
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
    color: var(--bangladesh-green);
    margin-bottom: 16px;
}

.nmp-intro__text {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--rich-black);
}

.nmp-intro__image-wrapper {
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.6s;
}

.nmp-intro__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    max-height: 600px;
    object-fit: cover;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nmp-hero {
        animation: none;
    }
    .nmp-intro__content {
        flex-direction: column;
    }
}
/**/
.nmp-articles {
    padding: clamp(4rem, 3vw + 3rem, 6rem) 0;
}

.nmp-articles__header {
    text-align: center;
    margin-bottom: 40px;
}

.nmp-articles__title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 1rem + 2vw, 3rem);
    color: var(--rich-black);
    margin-bottom: 12px;
}

.nmp-articles__subtitle {
    font-family: var(--font-primary);
    color: var(--bangladesh-green);
    opacity: 0.8;
    max-width: 620px;
    margin: 0 auto 50px;
}

.nmp-articles__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.nmp-articles__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: var(--anti-flash-white);
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nmp-articles__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.nmp-articles__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(2, 26, 26, 0.5);
    z-index: 1;
}

.nmp-articles__content {
    position: relative;
    z-index: 2;
}

.nmp-articles__card h3 {
    font-family: var(--font-secondary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.nmp-articles__card p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    opacity: 0.85;
}

.nmp-articles__card--large {
    flex: 2 1 calc(66.66% - 10px);
    min-height: 250px;
}

.nmp-articles__card--small {
    flex: 1 1 calc(33.33% - 10px);
    min-height: 250px;
    display: flex;
    align-items: flex-end;
}

@media(max-width: 768px) {
    .nmp-articles__grid {
        flex-direction: column;
    }
    .nmp-articles__card--large, .nmp-articles__card--small {
        flex: 1 1 100%;
    }
}
/**/
.nmp-trends {
    padding: clamp(4rem, 3vw + 3rem, 6rem) 0;
    background-color: var(--anti-flash-white);
    text-align: center;
}

.nmp-trends__header {
    margin-bottom: 40px;
}

.nmp-trends__title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 1rem + 2vw, 3rem);
    color: var(--rich-black);
    margin-bottom: 12px;
}

.nmp-trends__subtitle {
    font-family: var(--font-primary);
    color: var(--bangladesh-green);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.nmp-trends__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.nmp-trend-card {
    width: 250px;
    height: 250px;
    perspective: 1000px;
}

.nmp-trend-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.nmp-trend-card:hover .nmp-trend-card__inner {
    transform: rotateY(180deg);
}

.nmp-trend-card__front,
.nmp-trend-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.nmp-trend-card__front img {
    width: 60px;
    margin-bottom: 16px;
}

.nmp-trend-card__front h3 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--anti-flash-white);
}

.nmp-trend-card__back {
    background-color: var(--rich-black);
    color: var(--anti-flash-white);
    transform: rotateY(180deg);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.4;
    justify-content: center;
    text-align: center;
}
/**/
.nmp-article {
    padding: clamp(4rem, 3vw + 3rem, 6rem) 0;
    background-color: var(--anti-flash-white);
}

.nmp-article__title {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: clamp(2rem, 1rem + 2vw, 3rem);
    color: var(--rich-black);
    margin-bottom: 30px;
}

.nmp-article__content {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 0 18px;
}

.nmp-article__content h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--bangladesh-green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nmp-article__content p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--rich-black);
}
.nmp-article_wrapper {
    max-width: 800px;
}
/**/
.nmp-statistics {
    padding: clamp(4rem, 3vw + 3rem, 6rem) 0;
    background-color: var(--anti-flash-white);
    text-align: center;
}

.nmp-statistics__title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 1rem + 2vw, 3rem);
    color: var(--rich-black);
    margin-bottom: 12px;
}

.nmp-statistics__subtitle {
    font-family: var(--font-primary);
    color: var(--bangladesh-green);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.nmp-statistics__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;

}

.nmp-statistics__card {
    background-color: var(--bangladesh-green-hover);
    border-radius: 12px;
    padding: 30px 20px;
    color: var(--anti-flash-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
    flex: 1 1 200px;
    min-width: 200px;
}

.nmp-statistics__card--tall {
    height: 240px;
}

.nmp-statistics__card--wide {
    height: 160px;
}

.nmp-statistics__number {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nmp-statistics__label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    border-top: 1px solid var(--anti-flash-white);
    padding-top: 10px;
    opacity: 0.85;
}
/**/
.nmp-footer {
    background-color: var(--rich-black);
    color: var(--anti-flash-white);
    padding: 40px 0 20px 0;
    font-family: var(--font-primary);
}

.nmp-footer__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.nmp-footer__logo img {
    height: 40px;
}

.nmp-footer__links {
    display: flex;
    gap: 40px;
}

.nmp-footer__nav-block {
    min-width: 120px;
}

.nmp-footer__nav-title {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--anti-flash-white);
}

.nmp-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nmp-footer__nav a {
    color: var(--anti-flash-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nmp-footer__nav a:hover {
    color: var(--carribean-green);
}

.nmp-footer__bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}