/*
Theme Name: NUGENx Custom
Theme URI: https://nugenx.in/
Author: NUGENx
Description: Custom WordPress theme for NUGENx.
Version: 1.0.0
Text Domain: nugenx-custom
*/


/* =========================================================
   DESIGN TOKENS
========================================================= */

:root {

    /* ---------- Brand ---------- */

    --green-950: #06251B;
    --green-900: #083426;
    --green-800: #0B3D2E;
    --green-700: #145A43;
    --green-600: #1D7355;

    /* ---------- Neutral ---------- */

    --black: #090B0A;
    --black-soft: #111512;

    --white: #FFFFFF;

    --gray-50: #F7F9F8;
    --gray-100: #EEF3F0;
    --gray-200: #DDE6E1;
    --gray-300: #C6D1CB;
    --gray-500: #68756F;
    --gray-700: #26332D;

    /* ---------- Semantic ---------- */

    --primary: var(--green-800);
    --primary-dark: var(--green-950);
    --primary-light: var(--green-600);

    --background: var(--white);
    --background-soft: var(--gray-50);
    --background-green: #EAF3EE;

    --text: var(--black);
    --text-muted: var(--gray-500);

    --border: var(--gray-200);

    /* ---------- Typography ---------- */

    --font-sans:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --font-display:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    /* ---------- Layout ---------- */

    --container: 1240px;

    --space-section: clamp(80px, 10vw, 150px);

    /* ---------- Radius ---------- */

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    /* ---------- Shadows ---------- */

    --shadow-sm:
        0 5px 20px rgba(6, 37, 27, 0.06);

    --shadow-md:
        0 15px 45px rgba(6, 37, 27, 0.10);

    --shadow-lg:
        0 30px 80px rgba(6, 37, 27, 0.14);

    /* ---------- Transitions ---------- */

    --ease:
        cubic-bezier(.2,.8,.2,1);

    --transition:
        300ms var(--ease);

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    color: var(--text);
    background: var(--background);

    font-family: var(--font-sans);

    font-size: 16px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
}


img {
    display: block;

    max-width: 100%;
    height: auto;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


ul,
ol {
    margin-top: 0;
}


::selection {
    color: var(--white);
    background: var(--primary);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


.container-narrow {

    width: min(
        calc(100% - 40px),
        900px
    );

    margin-inline: auto;

}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    margin-top: 0;

    color: var(--text);

    font-family: var(--font-display);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -0.035em;

}


h1 {

    font-size:
        clamp(
            48px,
            7vw,
            92px
        );

}


h2 {

    font-size:
        clamp(
            38px,
            5vw,
            64px
        );

}


h3 {

    font-size:
        clamp(
            28px,
            3vw,
            42px
        );

}


h4 {

    font-size: 24px;

}


p {

    margin-top: 0;

}


.text-muted {

    color: var(--text-muted);

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding:
        0 24px;

    border: 1px solid transparent;

    border-radius: 999px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-primary {

    color: var(--white);

    background: var(--primary);

}


.btn-primary:hover {

    background: var(--primary-dark);

}


.btn-dark {

    color: var(--white);

    background: var(--black);

}


.btn-dark:hover {

    background: var(--primary);

}


.btn-outline {

    color: var(--text);

    border-color: var(--border);

    background: transparent;

}


.btn-outline:hover {

    color: var(--white);

    border-color: var(--primary);

    background: var(--primary);

}


.btn-white {

    color: var(--primary);

    background: var(--white);

}


.btn-white:hover {

    background: var(--gray-100);

}


/* =========================================================
   SECTION SYSTEM
========================================================= */

.section {

    padding:
        var(--space-section)
        0;

}


.section-small {

    padding:
        70px 0;

}


.section-header {

    max-width: 800px;

    margin-bottom: 60px;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.section-label::before {

    content: "";

    width: 28px;
    height: 2px;

    background: var(--primary);

}


.section-title {

    margin-bottom: 20px;

}


.section-description {

    max-width: 680px;

    color: var(--text-muted);

    font-size: 18px;

}


/* =========================================================
   CARDS
========================================================= */

.card {

    padding: 32px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-lg);

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

}


.card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(11,61,46,.25);

    box-shadow:
        var(--shadow-md);

}


/* =========================================================
   GREEN SECTION
========================================================= */

.section-green {

    color: var(--white);

    background:
        var(--primary);

}


.section-green h1,
.section-green h2,
.section-green h3,
.section-green h4 {

    color: var(--white);

}


.section-green .section-description {

    color:
        rgba(255,255,255,.72);

}


/* =========================================================
   DARK SECTION
========================================================= */

.section-dark {

    color: var(--white);

    background:
        var(--black);

}


.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {

    color: var(--white);

}


/* =========================================================
   GRID
========================================================= */

.grid-2 {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;

}


.grid-3 {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

}


.grid-4 {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.screen-reader-text {

    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0,0,0,0);

    white-space: nowrap;

    border: 0;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .grid-4 {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 768px) {

    .container,
    .container-narrow {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );

    }


    .section {

        padding:
            80px 0;

    }


    .section-header {

        margin-bottom: 40px;

    }


    .grid-2,
    .grid-3,
    .grid-4 {

        grid-template-columns:
            1fr;

    }


    .card {

        padding: 24px;

    }


    .btn {

        min-height: 48px;

        padding:
            0 20px;

    }

}


















/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.94);

    border-bottom:
        1px solid
        rgba(220,230,225,.8);

    backdrop-filter:
        blur(16px);

}


.site-header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.site-logo {

    flex-shrink: 0;

}


.site-logo img {

    width: auto;

    max-width: 190px;

    max-height: 55px;

}


.site-logo-text {

    color:
        var(--primary);

    font-size: 24px;

    font-weight: 800;

}


/* ---------- Navigation ---------- */

.site-navigation {

    margin-left: auto;

}


.site-navigation ul {

    display: flex;

    align-items: center;

    gap: 30px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.site-navigation li {

    position: relative;

}


.site-navigation a {

    display: block;

    padding: 10px 0;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

    transition:
        color var(--transition);

}


.site-navigation a:hover {

    color:
        var(--primary);

}


/* ---------- CTA ---------- */

.header-cta {

    flex-shrink: 0;

}


/* ---------- Mobile ---------- */

.mobile-menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    background: transparent;

}


.mobile-menu-toggle span {

    display: block;

    width: 23px;
    height: 2px;

    margin: 5px auto;

    background:
        var(--black);

}


@media (max-width: 1024px) {

    .site-navigation {

        display: none;

    }

    .header-cta {

        display: none;

    }

    .mobile-menu-toggle {

        display: block;

    }

}











/*home page*/







/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    overflow: hidden;

    padding:
        clamp(90px, 11vw, 170px)
        0;

    background:
        var(--gray-50);

}


.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, .85fr);

    align-items: center;

    gap: 80px;

}


.hero-content {

    max-width: 850px;

}


.hero-content h1 {

    margin-bottom: 28px;

}


.hero-content h1 span {

    color:
        var(--primary);

}


.hero-description {

    max-width: 650px;

    margin-bottom: 35px;

    color:
        var(--text-muted);

    font-size: 19px;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}


/* ---------- Hero visual ---------- */

.hero-visual {

    position: relative;

}


.hero-card {

    position: relative;

    min-height: 500px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 45px;

    overflow: hidden;

    border-radius:
        var(--radius-xl);

    color:
        var(--white);

    background:
        var(--primary);

    box-shadow:
        var(--shadow-lg);

}


.hero-card::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

}


.hero-card::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: 130px;
    left: -80px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.15);

}


.hero-card span {

    position: relative;

    z-index: 2;

    margin-bottom: 15px;

    font-size: 13px;

    letter-spacing: .15em;

    opacity: .65;

}


.hero-card strong {

    position: relative;

    z-index: 2;

    font-size:
        clamp(48px, 7vw, 92px);

    line-height: .9;

    letter-spacing: -.06em;

}


.hero-card small {

    position: relative;

    z-index: 2;

    margin-top: 25px;

    font-size: 14px;

    opacity: .7;

}


/* =========================================================
   TRUST
========================================================= */

.trust-section {

    padding:
        45px 0;

    border-bottom:
        1px solid
        var(--border);

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.trust-grid > div {

    padding:
        10px 30px;

    border-left:
        1px solid
        var(--border);

}


.trust-grid > div:first-child {

    border-left: 0;

}


.trust-number {

    display: block;

    margin-bottom: 5px;

    color:
        var(--primary);

    font-size: 28px;

    font-weight: 800;

}


.trust-label {

    color:
        var(--text-muted);

    font-size: 14px;

}


/* =========================================================
   SERVICES
========================================================= */

.service-card {

    position: relative;

    min-height: 350px;

    display: flex;

    flex-direction: column;

}


.service-number {

    display: block;

    margin-bottom: 60px;

    color:
        var(--primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .12em;

}


.service-card h3 {

    margin-bottom: 15px;

}


.service-card p {

    margin-bottom: 25px;

    color:
        var(--text-muted);

}


.service-card a {

    margin-top: auto;

    color:
        var(--primary);

    font-weight: 700;

}


/* =========================================================
   CTA
========================================================= */

.cta-block {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}


.cta-block h2 {

    max-width: 750px;

    margin-bottom: 0;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .hero-card {

        min-height: 400px;

    }

}


@media (max-width: 768px) {

    .hero-content h1 {

        font-size:
            clamp(44px, 12vw, 68px);

    }


    .hero-description {

        font-size: 17px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-grid > div {

        padding: 20px;

        border-left: 0;

        border-bottom:
            1px solid
            var(--border);

    }


    .cta-block {

        flex-direction: column;

        align-items: flex-start;

    }

}







/*header*/





/* =========================================================
   NUGENx HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid rgba(220, 230, 225, 0.8);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.site-header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    flex-shrink: 0;
}


.site-logo img {
    display: block;

    width: auto;
    max-width: 180px;
    max-height: 52px;
}


.site-logo-text {
    display: inline-block;

    color: var(--primary);

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -0.04em;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.site-navigation {
    margin-left: auto;
}


.primary-menu {
    display: flex;

    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.primary-menu li {
    position: relative;
}


.primary-menu a {
    display: block;

    padding: 10px 0;

    color: var(--text);

    font-size: 14px;
    font-weight: 600;

    transition:
        color var(--transition);
}


.primary-menu a:hover {
    color: var(--primary);
}


/* =========================================================
   DROPDOWN
========================================================= */

.primary-menu .sub-menu {
    position: absolute;

    top: calc(100% + 15px);
    left: 0;

    min-width: 230px;

    margin: 0;
    padding: 12px;

    list-style: none;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}


.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.primary-menu .sub-menu li {
    width: 100%;
}


.primary-menu .sub-menu a {
    padding: 11px 13px;

    border-radius: var(--radius-sm);
}


.primary-menu .sub-menu a:hover {
    color: var(--primary);

    background: var(--background-green);
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    flex-shrink: 0;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: var(--background-green);

    cursor: pointer;
}


.mobile-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: var(--black);

    transition: transform var(--transition);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;

    padding: 20px 0 30px;

    background: var(--white);

    border-top: 1px solid var(--border);
}


.mobile-navigation ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.mobile-navigation li {
    border-bottom: 1px solid var(--border);
}


.mobile-navigation a {
    display: block;

    padding: 15px 0;

    font-weight: 600;
}


.mobile-menu-cta {
    width: 100%;

    margin-top: 25px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1024px) {

    .site-navigation,
    .header-cta {
        display: none;
    }


    .site-header-inner {
        justify-content: space-between;
    }


    .mobile-menu-toggle {
        display: block;
    }


    .mobile-navigation.is-open {
        display: block;
    }

}




/*footer*/






/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    position: relative;

    overflow: hidden;

    padding:
        100px 0 30px;

    color:
        rgba(255,255,255,.72);

    background:
        var(--black);

}


/* =========================================================
   FOOTER DECORATION
========================================================= */

.site-footer::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    right: -150px;

    border-radius: 50%;

    background:
        rgba(20,90,67,.25);

    pointer-events: none;

}


.site-footer::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -250px;
    left: -150px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.06);

    pointer-events: none;

}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 80px;

}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {

    max-width: 360px;

}


.footer-logo {

    display: inline-block;

    margin-bottom: 22px;

    color:
        var(--white);

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -.05em;

}


.footer-description {

    max-width: 340px;

    margin-bottom: 30px;

    color:
        rgba(255,255,255,.62);

    font-size: 15px;

    line-height: 1.8;

}


.footer-contact-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color:
        var(--white);

    font-size: 15px;

    font-weight: 700;

    transition:
        color var(--transition);

}


.footer-contact-link span {

    font-size: 20px;

    transition:
        transform var(--transition);

}


.footer-contact-link:hover {

    color:
        #8FD3B6;

}


.footer-contact-link:hover span {

    transform:
        translateX(5px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h3 {

    margin-bottom: 22px;

    color:
        var(--white);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.footer-column ul {

    margin: 0;
    padding: 0;

    list-style: none;

}


.footer-column li {

    margin-bottom: 13px;

}


.footer-column a {

    color:
        rgba(255,255,255,.62);

    font-size: 15px;

    transition:
        color var(--transition),
        transform var(--transition);

}


.footer-column a:hover {

    color:
        var(--white);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.12);

}


.footer-bottom p {

    margin: 0;

    color:
        rgba(255,255,255,.45);

    font-size: 13px;

}


.footer-legal {

    display: flex;

    align-items: center;

    gap: 25px;

}


.footer-legal a {

    color:
        rgba(255,255,255,.45);

    font-size: 13px;

    transition:
        color var(--transition);

}


.footer-legal a:hover {

    color:
        var(--white);

}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .site-footer {

        padding-top: 70px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 60px;

    }


    .footer-brand {

        max-width: 100%;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-legal {

        flex-wrap: wrap;

        gap: 15px;

    }

}







/*page php*/













/* =========================================================
   INNER PAGE HERO
========================================================= */

.inner-page-hero {

    position: relative;

    overflow: hidden;

    padding:
        clamp(100px, 12vw, 170px)
        0
        90px;

    color: var(--white);

    background:
        var(--primary);

}


.inner-page-hero::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -300px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    pointer-events: none;

}


.inner-page-hero::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -220px;
    left: 15%;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.10);

    pointer-events: none;

}


.inner-page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 950px;

}


.inner-page-hero .section-label {

    color:
        rgba(255,255,255,.75);

}


.inner-page-hero .section-label::before {

    background:
        rgba(255,255,255,.75);

}


.inner-page-hero h1 {

    margin: 0;

    color: var(--white);

    font-size:
        clamp(52px, 7vw, 90px);

}


/* =========================================================
   PAGE CONTENT
========================================================= */

.page-content-section {

    background:
        var(--white);

}


.page-layout {

    max-width: 950px;

    margin-inline: auto;

}


.page-content {

    min-width: 0;

}


.page-featured-image {

    margin-bottom: 60px;

    overflow: hidden;

    border-radius:
        var(--radius-xl);

}


.page-featured-image img {

    width: 100%;

    height: auto;

}


/* =========================================================
   WORDPRESS CONTENT
========================================================= */

.page-content-body {

    color:
        var(--text);

    font-size: 18px;

    line-height: 1.85;

}


.page-content-body > * {

    max-width: 850px;

}


.page-content-body h2 {

    margin-top: 65px;

    margin-bottom: 20px;

}


.page-content-body h3 {

    margin-top: 45px;

    margin-bottom: 18px;

}


.page-content-body h4 {

    margin-top: 35px;

    margin-bottom: 15px;

}


.page-content-body p {

    margin-bottom: 24px;

}


.page-content-body ul,
.page-content-body ol {

    margin-bottom: 30px;

    padding-left: 25px;

}


.page-content-body li {

    margin-bottom: 10px;

}


.page-content-body a {

    color:
        var(--primary);

    font-weight: 600;

    text-decoration:
        underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 4px;

}


.page-content-body blockquote {

    margin:
        45px 0;

    padding:
        30px 35px;

    border-left:
        4px solid
        var(--primary);

    border-radius:
        0 var(--radius-md)
        var(--radius-md) 0;

    background:
        var(--background-green);

    font-size: 21px;

    font-weight: 600;

}


.page-content-body img {

    margin:
        35px 0;

    border-radius:
        var(--radius-md);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .inner-page-hero {

        padding:
            85px 0
            70px;

    }


    .inner-page-hero h1 {

        font-size:
            clamp(44px, 12vw, 68px);

    }


    .page-content-body {

        font-size: 17px;

        line-height: 1.75;

    }


    .page-content-body h2 {

        margin-top: 50px;

    }


    .page-content-body blockquote {

        padding: 25px;

        font-size: 18px;

    }

}









/*single post page */








/* =========================================================
   SINGLE BLOG POST
========================================================= */

.single-post-hero {

    position: relative;

    overflow: hidden;

    padding:
        clamp(90px, 11vw, 150px)
        0 100px;

    color: var(--white);

    background: var(--primary);

}


.single-post-hero::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -350px;
    right: -150px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

}


.single-post-hero-content {

    position: relative;

    z-index: 2;

    max-width: 1000px;

}


.post-category {

    margin-bottom: 25px;

}


.post-category a {

    display: inline-flex;

    padding:
        8px 14px;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 999px;

    color:
        rgba(255,255,255,.85);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.single-post-title {

    max-width: 1000px;

    margin:
        0 0 30px;

    color: var(--white);

    font-size:
        clamp(46px, 7vw, 86px);

    line-height: 1.02;

    letter-spacing: -.045em;

}


.post-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;

}


.post-meta-separator {

    opacity: .5;

}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.single-post-featured {

    margin-top: -50px;

    position: relative;

    z-index: 5;

}


.single-post-featured-image {

    overflow: hidden;

    border-radius:
        var(--radius-xl);

    box-shadow:
        var(--shadow-lg);

}


.single-post-featured-image img {

    width: 100%;

    height: auto;

}


/* =========================================================
   ARTICLE
========================================================= */

.single-post-content-section {

    background:
        var(--white);

}


.single-post-layout {

    width: min(
        100%,
        900px
    );

    margin-inline: auto;

}


.article-content {

    color:
        var(--text);

    font-size: 18px;

    line-height: 1.9;

}


.article-content > * {

    max-width: 850px;

}


.article-content p {

    margin-bottom: 25px;

}


.article-content h2 {

    margin-top: 65px;
    margin-bottom: 22px;

}


.article-content h3 {

    margin-top: 45px;
    margin-bottom: 18px;

}


.article-content h4 {

    margin-top: 35px;
    margin-bottom: 15px;

}


.article-content ul,
.article-content ol {

    margin-bottom: 30px;

    padding-left: 25px;

}


.article-content li {

    margin-bottom: 10px;

}


.article-content a {

    color:
        var(--primary);

    font-weight: 600;

    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 4px;

}


.article-content blockquote {

    margin:
        45px 0;

    padding:
        30px 35px;

    border-left:
        4px solid
        var(--primary);

    border-radius:
        0 var(--radius-md)
        var(--radius-md) 0;

    background:
        var(--background-green);

    font-size: 21px;

    font-weight: 600;

}


.article-content img {

    margin:
        35px 0;

    border-radius:
        var(--radius-md);

}


/* =========================================================
   TAGS
========================================================= */

.post-tags {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 60px;

    padding-top: 30px;

    border-top:
        1px solid
        var(--border);

}


.post-tags-label {

    margin-right: 5px;

    font-weight: 700;

}


.post-tags a {

    display: inline-flex;

    padding:
        7px 13px;

    border:
        1px solid
        var(--border);

    border-radius: 999px;

    color:
        var(--text-muted);

    font-size: 13px;

    text-decoration: none;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);

}


.post-tags a:hover {

    color:
        var(--white);

    border-color:
        var(--primary);

    background:
        var(--primary);

}


/* =========================================================
   RELATED POSTS
========================================================= */

.related-posts-section {

    background:
        var(--background-soft);

}


.related-post-card {

    padding: 0;

    overflow: hidden;

}


.related-post-image {

    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background:
        var(--gray-100);

}


.related-post-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 500ms var(--ease);

}


.related-post-card:hover
.related-post-image img {

    transform:
        scale(1.05);

}


.related-post-body {

    padding: 28px;

}


.related-post-date {

    margin-bottom: 12px;

    color:
        var(--text-muted);

    font-size: 13px;

}


.related-post-body h3 {

    margin-bottom: 12px;

    font-size: 24px;

}


.related-post-body h3 a {

    transition:
        color var(--transition);

}


.related-post-body h3 a:hover {

    color:
        var(--primary);

}


.related-post-body p {

    color:
        var(--text-muted);

    font-size: 15px;

}


.related-post-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

    color:
        var(--primary);

    font-weight: 700;

}


.related-post-link span {

    transition:
        transform var(--transition);

}


.related-post-link:hover span {

    transform:
        translateX(4px);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .single-post-hero {

        padding:
            80px 0 80px;

    }


    .single-post-title {

        font-size:
            clamp(42px, 11vw, 65px);

    }


    .single-post-featured {

        margin-top: -30px;

    }


    .article-content {

        font-size: 17px;

        line-height: 1.8;

    }


    .article-content blockquote {

        padding: 24px;

        font-size: 18px;

    }


    .related-post-body {

        padding: 24px;

    }

}







/*blog hero*/












/* =========================================================
   BLOG HERO
========================================================= */

.blog-hero {

    position: relative;

    overflow: hidden;

    padding:
        clamp(90px, 11vw, 150px)
        0;

    color: var(--white);

    background: var(--primary);

}


.blog-hero::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -350px;
    right: -150px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    pointer-events: none;

}


.blog-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.blog-hero .section-label {

    color:
        rgba(255,255,255,.75);

}


.blog-hero .section-label::before {

    background:
        rgba(255,255,255,.75);

}


.blog-hero h1 {

    margin-bottom: 25px;

    color: var(--white);

    font-size:
        clamp(50px, 7vw, 86px);

}


.blog-hero p {

    max-width: 650px;

    margin: 0;

    color:
        rgba(255,255,255,.7);

    font-size: 19px;

}


/* =========================================================
   BLOG GRID
========================================================= */

.blog-list-section {

    background:
        var(--background-soft);

}


.blog-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-lg);

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

}


.blog-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(11,61,46,.2);

    box-shadow:
        var(--shadow-md);

}


/* =========================================================
   BLOG IMAGE
========================================================= */

.blog-card-image {

    display: block;

    aspect-ratio:
        16 / 10;

    overflow: hidden;

    background:
        var(--gray-100);

}


.blog-card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 500ms var(--ease);

}


.blog-card:hover
.blog-card-image img {

    transform:
        scale(1.05);

}


.blog-card-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--white);

    background:
        var(--primary);

}


.blog-card-placeholder span {

    font-size: 32px;

    font-weight: 800;

    letter-spacing: -.05em;

}


/* =========================================================
   BLOG CONTENT
========================================================= */

.blog-card-content {

    padding: 28px;

}


.blog-card-category {

    display: inline-block;

    margin-bottom: 8px;

    color:
        var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.blog-card-date {

    margin-bottom: 15px;

    color:
        var(--text-muted);

    font-size: 13px;

}


.blog-card h2 {

    margin-bottom: 14px;

    font-size: 25px;

    line-height: 1.15;

}


.blog-card h2 a {

    transition:
        color var(--transition);

}


.blog-card h2 a:hover {

    color:
        var(--primary);

}


.blog-card-content p {

    margin-bottom: 20px;

    color:
        var(--text-muted);

    font-size: 15px;

    line-height: 1.7;

}


.blog-card-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        var(--primary);

    font-size: 14px;

    font-weight: 700;

}


.blog-card-link span {

    transition:
        transform var(--transition);

}


.blog-card-link:hover span {

    transform:
        translateX(5px);

}


/* =========================================================
   PAGINATION
========================================================= */

.blog-pagination {

    margin-top: 60px;

}


.blog-pagination ul {

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;

}


.blog-pagination a,
.blog-pagination span {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 42px;
    min-height: 42px;

    padding:
        8px 14px;

    border:
        1px solid
        var(--border);

    border-radius:
        999px;

    color:
        var(--text);

    background:
        var(--white);

    font-size: 14px;

}


.blog-pagination .current {

    color:
        var(--white);

    border-color:
        var(--primary);

    background:
        var(--primary);

}


/* =========================================================
   EMPTY BLOG
========================================================= */

.blog-empty {

    padding:
        100px 30px;

    text-align: center;

}


.blog-empty h2 {

    margin-bottom: 15px;

}


.blog-empty p {

    color:
        var(--text-muted);

}


/* =========================================================
   BLOG RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .blog-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 650px) {

    .blog-grid {

        grid-template-columns:
            1fr;

    }


    .blog-hero {

        padding:
            80px 0;

    }


    .blog-hero h1 {

        font-size:
            clamp(44px, 12vw, 65px);

    }


    .blog-hero p {

        font-size: 17px;

    }


    .blog-card-content {

        padding: 24px;

    }

}




/*404 page*/











/* =========================================================
   404 PAGE
========================================================= */

.error-section {

    min-height: 700px;

    display: flex;

    align-items: center;

    padding:
        100px 0;

    background:
        var(--background-soft);

}


.error-content {

    max-width: 850px;

}


.error-number {

    margin-bottom: 10px;

    color:
        var(--primary);

    font-size:
        clamp(90px, 15vw, 190px);

    font-weight: 800;

    line-height: .8;

    letter-spacing: -.08em;

}


.error-content h1 {

    max-width: 800px;

    margin-bottom: 25px;

}


.error-content p {

    max-width: 600px;

    margin-bottom: 35px;

    color:
        var(--text-muted);

    font-size: 18px;

}


.error-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


@media (max-width: 600px) {

    .error-section {

        min-height: 600px;

    }

    .error-actions {

        flex-direction: column;

        align-items: stretch;

    }

}