﻿*,
*::before,
*::after {
    box-sizing: border-box;
}



:root {
    /* ========================
   PRIMARY BRAND COLORS
======================== */
    --primary-color:#7A0F2E; /* deep wine */
    --primary-dark:#5A0B21; /* darker maroon */
    --primary-light:#A61E45; /* lighter wine */
    /* ========================
   GOLD ACCENTS
======================== */
    --secondary-color:#D4A35F; /* main gold */
    --secondary-dark:#B8843E; /* deep gold */
    --secondary-light:#F0C27B; /* soft gold */
    --gold-gradient:linear-gradient( 135deg, #F0C27B 0%, #D4A35F 40%, #B8843E 100% );
    /* ========================
   BACKGROUNDS
======================== */
    --bg-main:#F9F5F1; /* cream background */
    --bg-light:#FFFFFF;
    --bg-soft:#F3ECE6;
    --bg-section:#FBF7F3;
    /* ========================
   TEXT COLORS
======================== */
    --heading-color:#5A0B21; /* elegant maroon heading */
    --text-color:#4A4A4A;
    --text-light:#777777;
    --white:#FFFFFF;
    /* ========================
   BUTTON COLORS
======================== */
    --btn-primary:linear-gradient( 135deg, #D4A35F, #B8843E );
    --btn-primary-hover:linear-gradient( 135deg, #B8843E, #7A0F2E );
    --btn-text:#FFFFFF;
    /* ========================
   BORDER & SHADOW
======================== */
    --border-color:#E8DED6;
    --shadow-soft:0 8px 25px rgba(0,0,0,0.08);
    --shadow-medium:0 12px 35px rgba(0,0,0,0.12);
    /* ========================
   CARD COLORS
======================== */
    --card-bg:#FFFFFF;
    --card-hover:#FBF7F3;
    /* ========================
   HEADER GRADIENT
======================== */
    --header-gradient:linear-gradient( 135deg, #7A0F2E 0%, #A61E45 50%, #D4A35F 100% );
    /* ========================
   OVERLAY
======================== */
    --overlay-dark:rgba(90,11,33,0.75);
    --overlay-light:rgba(255,255,255,0.85);
    /* ========================
   TRANSITIONS
======================== */
    --transition-fast:0.3s ease;
    --transition-medium:0.5s ease;
    --transition-slow:0.8s ease;
}

:root {
    --font-heading:"Cormorant", serif;
    --font-body:"Josefin Sans", sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--bg-main);
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--heading-color);
}

.btn-primary {
    background: var(--btn-primary);
    color: var(--btn-text);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    transition: var(--transition-fast);
    text-decoration: none;
}

    .btn-primary:hover {
        background: var(--btn-primary-hover);
    }
/* ===============================
   MAIN TOP BAR
================================ */

.nn-topbar {
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}


    /* GOLD TOP LINE ANIMATION */

    .nn-topbar::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: var(--gold-gradient);
        animation: nnTopbarLine 4s linear infinite;
    }

@keyframes nnTopbarLine {

    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


/* CONTAINER */

.nn-topbar-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}


/* LEFT & RIGHT */

.nn-topbar-left,
.nn-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* ITEM */

.nn-topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--secondary-light);
    transition: var(--transition-fast);
}


    /* ICON */

    .nn-topbar-item i {
        color: var(--secondary-color);
        transition: var(--transition-fast);
    }


    /* HOVER EFFECT */

    .nn-topbar-item:hover {
        color: var(--white);
        transform: translateY(-2px);
    }

        .nn-topbar-item:hover i {
            color: var(--secondary-light);
        }


/* DIVIDER */

.nn-topbar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

    .nn-topbar-divider::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gold-gradient);
        animation: dividerGlow 3s linear infinite;
    }

@keyframes dividerGlow {

    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}


/* CONSULT BUTTON */

.nn-consult-btn {
    background: var(--btn-primary);
    color: var(--btn-text);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}


    /* BUTTON SHINE EFFECT */

    .nn-consult-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,0.4), transparent );
        transition: .6s;
    }

    .nn-consult-btn:hover::before {
        left: 100%;
    }


    /* BUTTON HOVER */

    .nn-consult-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
    }


/* TABLET */

@media(max-width:1024px) {

    .nn-topbar-container {
        padding: 8px 15px;
    }

    .nn-topbar-item {
        font-size: 13px;
    }
}


/* MOBILE */

@media(max-width:768px) {

    .nn-topbar-container {
        flex-direction: column;
        gap: 8px;
    }

    .nn-topbar-left,
    .nn-topbar-right {
        gap: 6px;
    }
}

.nn-header {
    background: #fdf6f6;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nn-header-container {
    max-width: 1300px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* BRAND AREA */

.nn-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* LOGO */

.nn-logo {
    height: 70px;
    padding-left: 60px;
}


/* TEXT BLOCK */

.nn-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* MAIN TITLE */

.nn-brand-title {
    font-family: "Cormorant", serif;
    font-size: 50px;
    font-weight: 700;
    color: #7A0F2E;
    line-height: .8;
    text-align: center;
}


/* ADVISORY ROW */

.nn-brand-advisory-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 4px;
}


/* GOLD LINES */

.nn-line1 {
    height: 2px;
    width: 50px;
    background: linear-gradient( 90deg, transparent, #e26c2c );
}

.nn-line2 {
    height: 2px;
    width: 50px;
    background: linear-gradient( 90deg, #e26c2c, transparent );
}


/* ADVISORY TEXT */

.nn-brand-advisory {
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: #e26c2c;
}


/* TAGLINE */

.nn-brand-tagline {
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    color: #e26c2c;
    margin-top: 2px;
    text-align: center;
    letter-spacing: 1px;
}


/* NAVIGATION */
.nn-nav {
    padding-right: 60px;
}

    .nn-nav ul {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .nn-nav ul li a {
            text-decoration: none;
            font-family: "Josefin Sans", sans-serif;
            font-weight: 600;
            color: #5A0B21;
            font-size: 16px;
            letter-spacing: .1px;
        }


/* DROPDOWN */

.nn-dropdown {
    position: relative;
}

.nn-dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 12px 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    flex-direction: column;
}

.nn-dropdown:hover .nn-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nn-dropdown-menu li {
    padding: 8px 20px;
}


/* BUTTON */

.nn-btn {
    background: linear-gradient(135deg,#D4A35F,#B8843E);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    text-decoration: none;
}


/* MOBILE */

.nn-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media(max-width:992px) {

    .nn-toggle {
        display: block;
    }

    .nn-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: .4s;
    }

        .nn-nav.active {
            max-height: 400px;
        }

        .nn-nav ul {
            flex-direction: column;
            padding: 20px;
        }

    .nn-btn {
        display: none;
    }

    .nn-logo {
        height: 55px;
    }

    .nn-brand-title {
        font-size: 30px;
    }
}

@media (max-width:992px) and (min-width:768px) {

    /* BRAND AREA */
    .nn-brand {
        gap: 8px;
    }

    /* LOGO */
    .nn-logo {
        height: 60px;
        padding-left: 20px;
    }

    /* BRAND TEXT */
    .nn-brand-title {
        font-size: 36px;
        line-height: 1;
    }

    /* ADVISORY ROW */
    .nn-brand-advisory-row {
        gap: 15px;
    }

    /* GOLD LINES */
    .nn-line1,
    .nn-line2 {
        width: 35px;
    }

    /* ADVISORY TEXT */
    .nn-brand-advisory {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    /* TAGLINE */
    .nn-brand-tagline {
        font-size: 11px;
    }

    /* NAV */
    .nn-nav {
        padding-right: 20px;
    }

        .nn-nav ul {
            gap: 20px;
        }

            .nn-nav ul li a {
                font-size: 16px;
            }
}

@media(max-width:767px) {

    /* BRAND AREA */
    .nn-brand {
        gap: 6px;
    }

    /* LOGO */
    .nn-logo {
        height: 45px;
        padding-left: 15px;
    }

    /* BRAND TEXT */
    .nn-brand-title {
        font-size: 24px;
        line-height: 1;
    }

    /* ADVISORY ROW */
    .nn-brand-advisory-row {
        gap: 10px;
        margin-top: 2px;
    }

    /* GOLD LINES */
    .nn-line1,
    .nn-line2 {
        width: 25px;
        height: 1.5px;
    }

    /* ADVISORY TEXT */
    .nn-brand-advisory {
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* TAGLINE */
    .nn-brand-tagline {
        font-size: 10px;
        letter-spacing: .8px;
    }

    /* NAVIGATION */
    .nn-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: .4s;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

        .nn-nav.active {
            max-height: 400px;
            padding-right: 0;
        }

        .nn-nav ul {
            flex-direction: column;
            padding: 15px 20px;
            gap: 15px;
        }

            .nn-nav ul li a {
                font-size: 16px;
            }

    /* BUTTON */
    .nn-btn {
        display: none;
    }
}

/* DROPDOWN PARENT */
.nn-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}


/* DROPDOWN MENU */
.nn-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .35s ease;
    z-index: 999;
    gap: 5px !important;
}


/* DROPDOWN SHOW */
.nn-dropdown:hover .nn-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* DROPDOWN ITEMS */
.nn-dropdown-menu li {
    padding: 0;
}


    /* DROPDOWN LINKS */
    .nn-dropdown-menu li a {
        display: block;
        padding: 12px 22px;
        font-size: 15px;
        color: var(--text-color);
        font-family: var(--font-body);
        transition: .3s;
        white-space: nowrap;
    }


        /* HOVER EFFECT */
        .nn-dropdown-menu li a:hover {
            background: var(--bg-section);
            color: var(--primary-color);
            padding-left: 28px;
        }

.nn-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media(max-width:992px) {

    .nn-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: var(--shadow-soft);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }


        /* SHOW MOBILE MENU */
        .nn-nav.active {
            max-height: 600px;
            padding-right: 0;
        }


        /* NAV ITEMS */
        .nn-nav ul {
            flex-direction: column;
            gap: 0;
        }


            /* NAV LINKS */
            .nn-nav ul li {
                border-bottom: 1px solid var(--border-color);
            }


                /* NAV LINKS STYLE */
                .nn-nav ul li a {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 14px 20px;
                }


    /* DROPDOWN MENU MOBILE */
    .nn-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-section);
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }


    /* EXPAND DROPDOWN */
    .nn-dropdown.active .nn-dropdown-menu {
        max-height: 100vh;
        opacity: 1;
    }


    /* DROPDOWN MOBILE LINKS */
    .nn-dropdown-menu li a {
        padding: 12px 35px;
        font-size: 14px;
    }
}


/* Banner container fits image exactly */
.women-banner {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

/* Image controls banner size */
.women-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content positioned over image */
.women-banner-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 550px;
}

    /* Heading */
    .women-banner-content h1 {
        font-size: clamp(28px, 4vw, 60px);
        line-height: 1.2;
        margin-bottom: 18px;
        color: #fff;
    }

    .women-banner-content span {
        color: #d4af37;
    }

    /* Paragraph */
    .women-banner-content p {
        font-size: clamp(24px, 1.6vw, 30px);
        margin-bottom: 28px;
    }

/* Buttons */
.banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 28px;
    background: #8b0025;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary {
    padding: 12px 28px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width:768px) {
    .women-banner-content {
        left: 5%;
        max-width: 90%;
    }

    .banner-buttons {
        gap: 10px;
    }
}

/* Right side image container */
.women-banner-right {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

/* Image styling */
.women-right-img {
    height: 90%;
    max-height: 520px;
    width: auto;
    object-fit: contain;
    animation: floatWoman 4s ease-in-out infinite;
}

/* ===========================
   PRIMARY GRADIENT BUTTON
=========================== */

.btn-grad-primary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, #7A0F2E, #C51F4A);
    box-shadow: 0 6px 18px rgba(122, 15, 46, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all .35s ease;
    display: inline-block;
}


    /* Hover */
    .btn-grad-primary:hover {
        background: linear-gradient(135deg, #C51F4A, #7A0F2E);
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(122, 15, 46, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
    }


/* ===========================
   SECONDARY GOLD BUTTON
=========================== */

.btn-grad-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 1px;
    color: #4A2E00;
    background: linear-gradient(135deg, #D4AF37, #F5D77A);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: all .35s ease;
    display: inline-block;
}


    /* Hover */
    .btn-grad-secondary:hover {
        background: linear-gradient(135deg, #F5D77A, #D4AF37);
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255,255,255,0.5);
    }


@media (max-width:1024px) and (min-width:769px) {

    /* Content positioning */
    .women-banner-content {
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
        max-width: 420px;
    }

        /* Heading */
        .women-banner-content h1 {
            font-size: clamp(26px, 4.2vw, 45px);
            line-height: 1.25;
        }

        /* Paragraph */
        .women-banner-content p {
            font-size: clamp(16px, 2.2vw, 22px);
        }

    /* Buttons */
    .banner-buttons {
        gap: 12px;
    }

    /* Button size */
    .btn-grad-primary,
    .btn-grad-secondary {
        padding: 12px 24px;
        font-size: 12px;
    }
}

@media (max-width:768px) {


    /* Content alignment */
    .women-banner-content {
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
        max-width: 85%;
    }

        /* Heading */
        .women-banner-content h1 {
            font-size: clamp(15px, 4vw, 28px);
            line-height: 1.3;
            margin-bottom: 5px;
        }

        /* Paragraph */
        .women-banner-content p {
            font-size: clamp(9px, 1.5vw, 18px);
            margin-bottom: 5px;
        }

    /* Buttons */
    .banner-buttons {
        gap: 10px;
    }

    /* Button size */
    .btn-grad-primary,
    .btn-grad-secondary {
        padding: 5px 5px;
        font-size: 8px;
    }
}


.nn-empower-section {
    position: relative;
    background: linear-gradient(to right,#efdde3,#fcf7f7,#fcf7f7,#fcf7f7,#f7e5e7);
    padding: 80px 20px 100px;
    overflow: hidden;
}


/* CONTAINER */

.nn-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}


/* TITLE */

.nn-title {
    font-size: 40px;
    font-family: "Cormorant", serif;
    color: #6d0f28;
    margin-bottom: 15px;
}


/* SUBTITLE */

.nn-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
}

    .nn-subtitle span {
        color: #d4af37;
        font-weight: 600;
    }


/* GRID */

.nn-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}


/* CARD */

.nn-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: left;
    transition: .3s;
}

    .nn-card:hover {
        transform: translateY(-5px);
    }


/* CARD HEADER */

.nn-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

    .nn-card-header img {
        height: 50px;
    }

    .nn-card-header h3 {
        font-size: 20px;
        color: #6d0f28;
    }


/* CARD TEXT */

.nn-card p {
    font-size: 15px;
    color: #555;
}


/* BUTTON */

.nn-btn-wrapper {
    margin-top: 40px;
}

.nn-btn {
    background: linear-gradient(135deg,#d4af37,#b8892c);
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}


/* CORNER CURVE IMAGE */

.nn-corner-curve {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 500px;
    pointer-events: none;
}

@media (max-width:1024px) {

    .nn-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .nn-title {
        font-size: 32px;
    }

    .nn-corner-curve {
        width: 400px;
    }

    .nn-curve-top {
        width: 400px !important;
    }
}

@media (max-width:768px) {

    .nn-grid {
        grid-template-columns: 1fr;
    }

    .nn-title {
        font-size: 26px;
    }

    .nn-subtitle {
        font-size: 15px;
    }

    .nn-card {
        padding: 20px;
    }

    .nn-corner-curve {
        width: 200px;
        opacity: 0.6;
        bottom: 70px;
    }

    .nn-curve-top {
        width: 200px !important;
        opacity: 0.6;
    }
}


.nn-strength-section {
    position: relative;
    padding: 90px 20px 120px;
    background: linear-gradient(to right,#efdde3,#fcf7f7,#fcf7f7,#fcf7f7,#f7e5e7);
    overflow: hidden;
}


/* CONTAINER */

.nn-strength-container {
    max-width: 1150px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}


/* TITLE */

.nn-strength-title {
    font-family: "Cormorant", serif;
    font-size: 40px;
    color: #6d0f28;
    margin-bottom: 50px;
}


/* GRID */

.nn-strength-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}


/* CARD */

.nn-strength-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    text-align: left;
}


/* CARD HEADER */

.nn-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

    .nn-card-head img {
        height: 50px;
    }

    .nn-card-head h3 {
        font-size: 20px;
        color: #6d0f28;
    }


/* CARD TEXT */

.nn-strength-card p {
    color: #555;
    font-size: 15px;
}


/* BUTTON */

.nn-strength-btn-wrap {
    margin-top: 35px;
}

.nn-strength-btn {
    padding: 14px 36px;
    background: linear-gradient(135deg,#d4af37,#b8892c);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
}


/* TOP LEFT CURVE */

.nn-curve-top {
    position: absolute;
    top: 30px;
    left: 0;
    width: 500px;
    z-index: 1;
}


/* BOTTOM FULL CURVE */

.nn-curve-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}


@media (max-width:1024px) {

    /* SECTION PADDING */
    .nn-strength-section {
        padding: 70px 20px 100px;
    }


    /* TITLE */
    .nn-strength-title {
        font-size: 32px;
        line-height: 1.3;
    }


    /* GRID → 2 columns */
    .nn-strength-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }


    /* CARD */
    .nn-strength-card {
        padding: 24px;
    }


    /* CARD HEADER */
    .nn-card-head img {
        height: 45px;
    }

    .nn-card-head h3 {
        font-size: 18px;
    }


    /* BUTTON */
    .nn-strength-btn {
        padding: 12px 28px;
        font-size: 15px;
    }


    /* TOP CURVE */
    .nn-curve-top {
        width: 350px;
        top: 20px;
    }


    /* RIGHT BOTTOM CURVE */
    .nn-corner-curve {
        width: 350px;
        opacity: .9;
    }
}

@media (max-width:767px) {

    /* SECTION */
    .nn-strength-section {
        padding: 60px 15px 80px;
    }


    /* TITLE */
    .nn-strength-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 30px;
    }


    /* GRID → Single column */
    .nn-strength-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    /* CARD */
    .nn-strength-card {
        padding: 20px;
        border-radius: 10px;
    }


    /* CARD HEADER */
    .nn-card-head {
        gap: 12px;
    }

        .nn-card-head img {
            height: 40px;
        }

        .nn-card-head h3 {
            font-size: 17px;
        }


    /* CARD TEXT */
    .nn-strength-card p {
        font-size: 14px;
    }


    /* BUTTON */
    .nn-strength-btn {
        padding: 12px 24px;
        font-size: 14px;
    }


    /* TOP LEFT CURVE */
    .nn-curve-top {
        width: 220px;
        top: 10px;
        opacity: .7;
    }


    /* RIGHT CURVE */
    .nn-corner-curve {
        width: 220px;
        opacity: .7;
    }
}
.nn-footer{

background:#f4efec;
font-family:"Josefin Sans", sans-serif;

}


/* CONTAINER */

.nn-footer-container{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:2fr 1fr 1fr 1.2fr;

gap:40px;

padding:60px 20px;

}


/* BRAND */

.nn-footer-brand-row{

display:flex;
align-items:center;
gap:12px;

margin-bottom:15px;

}

.nn-footer-logo{

height:50px;

}

.nn-footer-title{

font-size:22px;
font-weight:600;
color:#6d0f28;

}

.nn-footer-sub{

font-size:13px;
color:#b8892c;

}

.nn-footer-desc{

font-size:14px;
color:#555;
line-height:1.7;

}


/* COLUMN */

.nn-footer-column h4{

color:#6d0f28;
margin-bottom:18px;
font-size:17px;

}

.nn-footer-column ul{

list-style:none;
padding:0;

}

.nn-footer-column ul li{

margin-bottom:12px;
font-size:14px;

}

.nn-footer-column ul li a{

text-decoration:none;
color:#444;
transition:.3s;

}

.nn-footer-column ul li a:hover{

color:#b8892c;

}


/* CONTACT */

.nn-footer-contact li{

display:flex;
align-items:center;
gap:10px;

}

.nn-footer-contact span{

color:#b8892c;

}


/* BOTTOM */

.nn-footer-bottom{

background:#e8dfda;
padding:18px 20px;

}

.nn-footer-bottom-inner{

max-width:1200px;
margin:auto;

display:flex;
justify-content:space-between;
align-items:center;

font-size:14px;
color:#555;

}

.nn-footer-policy a{

text-decoration:none;
color:#555;

}

.nn-footer-policy span{

margin:0 10px;

}
@media(max-width:768px)
{

.nn-footer-container{

grid-template-columns:1fr;

text-align:center;

gap:30px;

}


.nn-footer-brand-row{

justify-content:center;

}


.nn-footer-contact li{

justify-content:center;

}


.nn-footer-bottom-inner{

flex-direction:column;
gap:8px;
text-align:center;

}

}
.nn-trust-section {
    background: #f4efec;
    padding: 25px 20px;
    border-top: 1px solid #e5ded9;
    border-bottom: 1px solid #e5ded9;
}


.nn-trust-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}


/* HEADER ROW */

.nn-trust-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 12px;
}


/* TITLE */

.nn-trust-title {
    font-family: "Cormorant", serif;
    font-size: 18px;
    color: #6d0f28;
}


/* DIVIDER LINE */

.nn-line {
    width: 60px;
    height: 1px;
    background: #c8bfb8;
}


/* FEATURES ROW */

.nn-trust-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}


/* ITEMS */

.nn-trust-item {
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* CHECK ICON */

.nn-check {
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
}

@media(max-width:1024px) {

    .nn-trust-header {
        gap: 18px;
    }

    .nn-trust-features {
        gap: 20px;
    }

    .nn-trust-title {
        font-size: 17px;
    }
}

@media(max-width:768px) {

    .nn-trust-header {
        flex-direction: column;
        gap: 10px;
    }

    .nn-trust-features {
        flex-direction: column;
        gap: 10px;
    }

    .nn-line {
        width: 40px;
    }

    .nn-trust-title {
        font-size: 16px;
    }

    .nn-trust-item {
        font-size: 14px;
    }
}


.nn-about-creative {
    padding: 50px 20px;
    background: #fcf7f5;
    font-family: "Josefin Sans", sans-serif;
}

.nn-container {
    max-width: 1100px;
    margin: auto;
}


/* ================= STORY ================= */

.nn-story-creative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.nn-story-accent {
    width: 6px;
    height: 200px;
    background: linear-gradient(#6d0f28,#d4af37);
}

.nn-story-content {
    text-align: center;
    max-width: 600px;
}




/* COMMON */

.nn-section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #b8892c;
}

.nn-gold-line {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 15px 0;
}

    .nn-gold-line.center {
        margin: 15px auto;
    }

 


.nn-about-wrapper {
    background: #fcf7f5;
    padding: 30px 20px;
    font-family: "Josefin Sans", sans-serif;
}





/* ================= VM DIAGONAL ================= */

.nn-vm-diagonal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.nn-vm-left {
    background: #6d0f28;
    color: white;
    padding: 60px;
}

.nn-vm-right {
    background: #fff;
    padding: 60px;
}

    .nn-vm-left h3,
    .nn-vm-right h3 {
        margin-bottom: 15px;
          color: var(--secondary-color);
    }



/* COMMON */

.nn-section-label {
    color: #b8892c;
    letter-spacing: 2px;
    font-size: 13px;
}

.nn-divider {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 15px 0;
}
 


@media(max-width:768px) {

    .nn-story-creative {
        flex-direction: column;
    }

    .nn-story-accent {
        width: 80px;
        height: 4px;
    }
}

@media(max-width:768px) {


    .nn-vm-diagonal {
        grid-template-columns: 1fr;
    }

    .nn-vm-left,
    .nn-vm-right {
        padding: 30px;
    }
}
 
.nn-founder-timeline{

padding:30px 20px;
background:#fcf7f5;
font-family:"Josefin Sans", sans-serif;

}


.nn-founder-container{

max-width:1100px;
margin:auto;

display:grid;
grid-template-columns:120px 280px 1fr;
align-items:center;
gap:40px;

}


/* LEFT TIMELINE */

.nn-founder-timeline-left{

text-align:center;

}

.nn-founder-year{

color:#b8892c;
font-size:14px;
letter-spacing:2px;

}

.nn-founder-line{

width:3px;
height:120px;
background:#d4af37;
margin:15px auto;

}


/* CENTER IMAGE */

.nn-founder-image-wrapper{

padding:10px;
border:3px solid #d4af37;
border-radius:12px;

}

.nn-founder-image-wrapper img{

width:100%;
border-radius:8px;

}


/* RIGHT CONTENT */

.nn-founder-role{

color:#b8892c;
letter-spacing:2px;
font-size:13px;

}

.nn-founder-name{

font-size:36px;
color:#6d0f28;
font-family:"Cormorant", serif;
margin:10px 0;

}

.nn-founder-divider{

width:60px;
height:3px;
background:#d4af37;
margin:15px 0;

}

.nn-founder-timeline-right p{

color:#444;
line-height:1.7;
margin-bottom:12px;

}

.nn-founder-message{

margin-top:20px;
padding:15px;

background:#fff3e3;
border-left:4px solid #d4af37;

color:#6d0f28;
font-weight:600;

}

@media(max-width:1024px){



.nn-founder-divider{

margin:auto;

}

}
@media(max-width:768px){

.nn-founder-name{

font-size:26px;

}

.nn-founder-image-wrapper{

max-width:220px;
margin:auto;

}

.nn-founder-message{

text-align:left;

}

}


/* Make parent reference point */
.nn-about-creative{

position:relative;
overflow:hidden;

}


/* RIGHT CORNER CURVE IMAGE */
.nn-story-curve-right{

position:absolute;

right:0;
bottom:0;

width:280px;
max-width:35%;

pointer-events:none;
user-select:none;

z-index:1;
opacity:.9;

}


/* Ensure content stays above curve */
.nn-container{

position:relative;
z-index:2;

}

@media(max-width:1024px){

.nn-story-curve-right{

width:220px;
opacity:.8;

}

}

@media(max-width:768px){

.nn-story-curve-right{

width:160px;
opacity:.6;

}

}

/* Make section reference point */
.nn-founder-timeline{

position:relative;
overflow:hidden;

}


/* LEFT CURVE IMAGE */
.nn-founder-curve-left{

position:absolute;

left:0;
top:0;

width:300px;
max-width:35%;

pointer-events:none;
user-select:none;

z-index:1;
opacity:.9;

}


/* Ensure content stays above curve */
.nn-founder-container{

position:relative;
z-index:2;

}
@media(max-width:768px){

.nn-founder-curve-left{

width:150px;
opacity:.5;

}

}
@media(max-width:1024px){

.nn-founder-curve-left{

width:220px;
opacity:.7;

}

}

/* ================= TABLET VIEW (KEEP DESKTOP LAYOUT) ================= */

@media (min-width:769px) and (max-width:1024px)
{

/* ================= VISION MISSION ================= */

.nn-vm-diagonal
{
    grid-template-columns: 1fr 1fr; /* SAME AS DESKTOP */
}

.nn-vm-left,
.nn-vm-right
{
    padding: 50px;
}


/* ================= FOUNDER TIMELINE ================= */

.nn-founder-container
{
    grid-template-columns: 120px 260px 1fr; /* SAME STRUCTURE */
    gap: 30px;
}

.nn-founder-timeline-left
{
    display:block; /* SHOW TIMELINE */
}

.nn-founder-image-wrapper
{
    max-width:260px;
}

.nn-founder-name
{
    font-size:32px;
}

.nn-founder-divider
{
    margin:15px 0;
}


/* ================= CURVE IMAGE ================= */

.nn-founder-curve-left
{
    width:220px;
    opacity:.8;
}

}