﻿*,
*::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: 13px 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: 16px;
    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:1rem;
    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;
    }
   .nn-consult-btn {
  padding: 8px 11px;
  font-size: 0.7rem;
}
}


/* 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;
        }

        .nn-nav ul li a i{
    padding-right: 5px;
}
/* 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;
}

/* ===== MEGA MENU MAIN CONTAINER ===== */

.nn-mega-dropdown {
    position: relative;
}


/* FORCE MEGA GRID */
.nn-dropdown-menu.nn-mega-menu {
    position: absolute !important;
    top: calc(100% + 14px) !important;
    left: 0 !important;
    width: 500px !important;
    max-width: 50vw;
    background: #fff !important;
    padding: 5px !important;
    gap: 10px 5px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 99999;
}


/* SHOW ON HOVER */
.nn-mega-dropdown:hover > .nn-mega-menu {
    /*opacity: 1 !important;*/
    /*visibility: visible !important;*/
    transform: translateY(0);
}


/* REMOVE FLOAT / BLOCK FROM OLD CSS */
.nn-mega-menu li {
    float: none !important;
    width: 100% !important;
    /*display: block !important;*/
}


    /* LINK STYLE */
    .nn-mega-menu li a {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 10px;
        border-radius: 6px;
        font-size: 14px !important;
    }


        /* HOVER */
        .nn-mega-menu li a:hover {
            background: #f4f8ff;
            color: #69cc17;
        }


/* 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 5px;
            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:1rem;
        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: initial;
                    align-items: center;
                    padding: 14px 17px;

                }


    /* 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;
    }
}
/* ===================================== */
/* FIX MEGA MENU FOR MOBILE & TABLET */
/* ===================================== */

@media (max-width:992px) {

    /* override mega menu grid */
    .nn-dropdown-menu.nn-mega-menu {
        /*display: block !important;*/ /* change from grid to block */
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* when active, allow expansion */
    .nn-dropdown.active .nn-dropdown-menu.nn-mega-menu {
        max-height: 1000px;
    }

    /* fix item layout */
    .nn-dropdown-menu.nn-mega-menu li {
        /*display: block !important;*/
        width: 100% !important;
    }

        /* fix link layout */
        .nn-dropdown-menu.nn-mega-menu li a {
            display: flex !important;
        }
}

@media (min-width:993px) {

    .nn-dropdown-menu.nn-mega-menu {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}
/* ============================= */
/* MEGA MENU MOBILE & TABLET FIX */
/* ============================= */

@media (max-width: 992px) {

    /* mega menu container */
    .nn-dropdown-menu.nn-mega-menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr); /* tablet 2 columns */
        gap: 5px;
        position: static !important;
        /*opacity: 1 !important;*/
        /*visibility: visible !important;*/
        transform: none !important;
        /*max-height: none !important;   /* REMOVE HEIGHT LIMIT */ 
        /*overflow: visible !important;*/
        padding: 10px 15px !important;
    }


    /* mobile view → 1 column */
    @media (max-width: 576px) {

        .nn-dropdown-menu.nn-mega-menu {
            grid-template-columns: 1fr !important;
        }
    }


    /* ensure items visible */
    .nn-dropdown-menu.nn-mega-menu li {
        /*display: block !important;*/
        width: 100% !important;
    }


        /* link styling */
        .nn-dropdown-menu.nn-mega-menu li a {
            padding: 12px 10px !important;
            font-size: 14px;
        }
}

/* ===================================== */
/* FINAL MEGA MENU FIX FOR MOBILE/TABLET */
/* ===================================== */

@media (max-width:992px) {

    /* allow nav to expand fully */
    .nn-nav.active {
        /*max-height: none !important;*/
        /*overflow: visible !important;*/
    }


    /* allow dropdown to expand fully */
    .nn-dropdown.active {
        /*overflow: visible !important;*/
    }


    /* mega menu layout */
    .nn-dropdown-menu.nn-mega-menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr); /* tablet: 2 columns */
        position: static !important;
        /*opacity: 1 !important;*/
        /*visibility: visible !important;*/
        transform: none !important;
        /*max-height: none !important;*/
        /*overflow: visible !important;*/
        padding: 10px 20px !important;
        background: #f9fafc;
    }


    /* mobile: 1 column */
    @media (max-width:576px) {

        .nn-dropdown-menu.nn-mega-menu {
            grid-template-columns: 1fr !important;
        }
    }


    /* fix item spacing */
    .nn-dropdown-menu.nn-mega-menu li {
        padding: 0 !important;
    }


        /* fix links */
        .nn-dropdown-menu.nn-mega-menu li a {
            padding: 12px 10px !important;
            white-space: normal !important;
        }
}

/* DISABLE HOVER OPEN ON MOBILE */
@media (max-width:992px) {
    .nn-dropdown:hover .nn-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

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

@media (max-width:992px) {
    .nn-nav.active {
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

@media (max-width:992px) {

    .nn-dropdown-menu.nn-mega-menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        position: static !important;
        /*max-height: none !important;*/
        /*overflow: visible !important;*/
        padding: 10px 15px !important;
    }

    /* mobile 1 column */
    @media (max-width:576px) {
        .nn-dropdown-menu.nn-mega-menu {
            grid-template-columns: 1fr !important;
        }
    }
}
/* ================================= */
/* MAKE MEGA MENU WORK LIKE NORMAL DROPDOWN */
/* ================================= */

/* DEFAULT STATE (CLOSED) */
.nn-dropdown-menu.nn-mega-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transition: max-height .4s ease, opacity .3s ease;
}


/* OPEN STATE (WHEN CLICKED) */
.nn-dropdown.active > .nn-dropdown-menu.nn-mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 100vh;
}


/* TABLET */
@media (max-width:992px) {
    .nn-dropdown-menu.nn-mega-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */
@media (max-width:576px) {
    .nn-dropdown-menu.nn-mega-menu {
        grid-template-columns: 1fr;
    }
}

/* ================================= */
/* DESKTOP MEGA MENU CLICK OPEN FIX */
/* ================================= */

@media (min-width:993px) {

    /* default hidden */
    .nn-dropdown-menu.nn-mega-menu {
        position: absolute !important;
        top: calc(100% + 14px) !important;
        left: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        width: 500px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        max-height: none !important;
        overflow: visible !important;
    }


    /* show when clicked */
    .nn-dropdown.active > .nn-dropdown-menu.nn-mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0);
    }
}
/* ================================= */
/* PERFECT MEGA MENU ITEM ALIGNMENT */
/* ================================= */

/* remove inherited padding */
.nn-dropdown-menu.nn-mega-menu li {
    padding: 0 !important;
    margin: 0 !important;
}


    /* fix link layout */
    .nn-dropdown-menu.nn-mega-menu li a {
        display: grid !important;
        grid-template-columns: 18px auto; /* fixed icon width */
        align-items: center;
        column-gap: 8px; /* consistent spacing */
        padding: 8px 10px !important;
        font-size: 14px;
        line-height: 1.3;
        white-space: normal !important;
    }


        /* fix icon alignment */
        .nn-dropdown-menu.nn-mega-menu li a i {
            width: 18px !important;
            min-width: 18px !important;
            text-align: center;
            font-size: 14px;
            margin: 0 !important;
        }


/* TABLET */
@media (max-width:992px) {
    .nn-dropdown-menu.nn-mega-menu {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4px 12px !important;
        padding: 8px 12px !important;
    }
        /* ================================= */
        /* FIX MEGA MENU ALIGNMENT CLEANLY */
        /* ================================= */

        /* remove inherited mobile nav link layout */
        .nn-dropdown-menu.nn-mega-menu li a {
            display: flex !important;
            justify-content: flex-start !important; /* FIX: prevent wide spacing */
            align-items: center;
            gap: 20px !important; /* small clean spacing */
            padding: 8px 12px !important;
            margin: 0 !important;
            width: 100%;
            font-size: 14px;
            background: transparent !important;
            border: none !important;
        }


            /* fix icon */
            .nn-dropdown-menu.nn-mega-menu li a i {
                width: 16px !important;
                min-width: 16px !important;
                margin: 0 !important;
                text-align: center;
            }


        /* fix li spacing */
        .nn-dropdown-menu.nn-mega-menu li {
            padding: 0 !important;
            margin: 0 !important;
        }


    /* fix mega grid spacing */
    .nn-dropdown-menu.nn-mega-menu {
        gap: 2px 12px !important;
    }
}


/* MOBILE */
@media (max-width:576px) {
    .nn-dropdown-menu.nn-mega-menu {
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        padding: 6px 10px !important;
    }
        /* ================================= */
        /* FIX MEGA MENU ALIGNMENT CLEANLY */
        /* ================================= */

        /* remove inherited mobile nav link layout */
        .nn-dropdown-menu.nn-mega-menu li a {
            display: flex !important;
            justify-content: flex-start !important; /* FIX: prevent wide spacing */
            align-items: center;
            gap: 20px !important; /* small clean spacing */
            padding: 8px 12px !important;
            margin: 0 !important;
            width: 100%;
            font-size: 14px;
            background: transparent !important;
            border: none !important;
        }


            /* fix icon */
            .nn-dropdown-menu.nn-mega-menu li a i {
                width: 16px !important;
                min-width: 16px !important;
                margin: 0 !important;
                text-align: center;
            }


        /* fix li spacing */
        .nn-dropdown-menu.nn-mega-menu li {
            padding: 0 !important;
            margin: 0 !important;
        }


    /* fix mega grid spacing */
    .nn-dropdown-menu.nn-mega-menu {
        gap: 2px 12px !important;
    }
}
/* 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;
  object-fit: cover;
}

/* 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;
    }
    .women-banner-img {
   width: 100%;
  height: 22vh;
  display: block;
  object-fit: cover;
}
}

/* 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(10px, 1.5vw, 18px) !important;
            margin: 10px 0 !important;
        }

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

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

/* Slider container */
.women-banner-slider {
    width: 100%;
    position: relative;
}

    /* Ensure slides fit perfectly */
    .women-banner-slider .swiper-slide {
        width: 100%;
    }

    /* Pagination styling */
    .women-banner-slider .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.6;
        box-shadow: 0 0 3px #d47945;
    }


    .women-banner-slider .swiper-pagination-bullet-active {
        background: #d4af37;
        opacity: 1;
    }
    /* ===========================
   TELUGU + ENGLISH BANNER TEXT
   (Does NOT disturb existing layout)
=========================== */

/* English text */
.women-banner-text-en
{
    font-size: clamp(18px, 1.6vw, 26px);
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Telugu text */
.women-banner-text-te
{
    font-size: clamp(16px, 1.4vw, 24px) !important;
  line-height: 1.6;
  color: #f5e6e9;
  font-family: "Noto Sans Telugu", "Gautami", "Vani", sans-serif;
  margin-bottom: 18px !important;
  opacity: 0.95;
}

/* Tablet Telugu */
@media (max-width:1024px)
{
    .women-banner-text-te
    {
        font-size: clamp(14px, 2vw, 15px) !important;
    margin-bottom: 3px !important;
    margin-top: -10px;
    }
}

/* Mobile Telugu */
@media (max-width:768px)
{
    .women-banner-text-te
    {
        font-size: clamp(10px, 2.5vw, 16px);
        margin-bottom: 10px;
    }
}
.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:1rem;
    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:1rem;
    }

    .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:1rem;
}


/* 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:1rem;
    }


    /* 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: 16px;
    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: 16px;
    }

        .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:1rem;
    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;
    }
}



.nn-services-intro {
    padding: 100px 20px;
    background: #fcf7f5;
}

.nn-intro-wrap {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    border-left: 4px solid #d4af37;
    padding-left: 40px;
}

.nn-intro-left h2 {
    font-size: 36px;
    color: #6d0f28;
}

.nn-intro-right p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}
/* ================= TAB VIEW (1024px and below) ================= */

@media (max-width:1024px) {

    .nn-services-intro {
        padding: 80px 20px;
    }

    .nn-intro-wrap {
        /* Keep same 2-column layout */
        grid-template-columns: 320px 1fr;
        gap: 40px;
        padding-left: 30px;
    }

    .nn-intro-left h2 {
        font-size: 30px;
    }

    .nn-intro-right p {
        font-size: 16px;
    }
}


/* ================= MOBILE VIEW (768px and below) ================= */

@media (max-width:768px) {

    .nn-services-intro {
        padding: 60px 20px;
    }


    /* Keep same visual structure but optimize proportions */
    .nn-intro-wrap {
        grid-template-columns: 1fr; /* stack for readability */
        gap: 20px;
        border-left: 3px solid #d4af37;
        padding-left: 20px;
    }


    /* LEFT SIDE */
    .nn-intro-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }


    /* RIGHT SIDE */
    .nn-intro-right p {
        font-size:1rem;
        line-height: 1.7;
    }
}


/* ================= SMALL MOBILE (480px and below) ================= */

@media (max-width:480px) {

    .nn-services-intro {
        padding: 50px 15px;
    }

    .nn-intro-wrap {
        padding-left: 16px;
        gap: 16px;
    }

    .nn-intro-left h2 {
        font-size: 22px;
    }

    .nn-intro-right p {
        font-size: 14px;
    }
}
/* TRUST STRIP */

.nn-trust-strip {
    background: #f3efec;
    padding: 12px 0;
}

.nn-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 14px;
    color: #444;
}

    .nn-trust-row i {
        color: #b8892c;
        margin-right: 6px;
    }

/* SERVICES SECTION */

.nn-services-section {
    background: #f7f4f2;
    padding: 70px 20px;
}

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


/* HEADER */

.nn-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

    .nn-section-header h2 {
        color: #6d0f28;
        font-size: 36px;
        font-weight: 600;
    }

.nn-divider1 {
    width: 100px;
    height: 2px;
    background: linear-gradient( 90deg, transparent, #b8892c,#b8892c);
}

.nn-divider2 {
    width: 100px;
    height: 2px;
    background: linear-gradient( 90deg, #b8892c,#b8892c, transparent);
}

/* GRID */

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



/* SERVICE BOX */

.nn-service-box {
    background: white;
    padding: 35px 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0px 6px rgba(0,0,0,.05);
    transition: .35s ease;
}


/* HORIZONTAL BOX */

.horizontal {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}



/* ICON WRAPPER — NO BACKGROUND */

.nn-icon-wrap {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.horizontal .nn-icon-wrap {
    margin: 0;
}



/* IMAGE ICON — ORIGINAL COLORS */

.nn-icon-wrap img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: .4s ease;
}



/* TEXT */

.nn-service-box h4 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}



/* PREMIUM HOVER EFFECT */

.nn-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,.12);
}


    /* IMAGE HOVER ANIMATION */

    .nn-service-box:hover img {
        transform: scale(1.18) rotate(-6deg);
    }



/* TABLET */

@media(max-width:1024px) {

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

    .horizontal {
        grid-column: span 2;
    }

    .nn-section-header h2 {
        font-size: 24px;
    }
}



/* MOBILE */

@media(max-width:768px) {

    .nn-services-section {
        padding: 50px 20px;
    }

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

    .horizontal {
        grid-column: span 1;
        flex-direction: column;
    }

    .nn-icon-wrap {
        width: 60px;
        height: 60px;
    }

        .nn-icon-wrap img {
            width: 50px;
            height: 50px;
        }

    .nn-service-box h4 {
        font-size:1rem;
    }
}
/* CTA SECTION WITH IMAGE BACKGROUND */

.nn-cta-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
    /* IMAGE BACKGROUND */
    background: url('../images/b5.png') center center / cover no-repeat;
}


/* OPTIONAL DARK OVERLAY FOR TEXT READABILITY */

.nn-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 135deg, rgba(109, 15, 40, 0.25), rgba(138, 24, 54, 0.24), rgba(109, 15, 40, 0.32) );
    z-index: 1;
}


/* container */

.nn-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}


    /* title */

    .nn-cta-container h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--secondary-light);
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 10px;
    }


    /* subtitle */

    .nn-cta-container p {
        font-size: 18px;
        margin-bottom: 30px;
        opacity: .95;
    }


/* CTA BUTTON */

.nn-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg,#b8892c,#e0b84f);
    color: #6d0f28;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}


    .nn-cta-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(0,0,0,.35);
        background: linear-gradient(135deg,#e0b84f,#b8892c);
    }


/* TAB */

@media(max-width:1024px) {

    .nn-cta-container h2 {
        font-size: 26px;
    }

    .nn-cta-container p {
        font-size: 16px;
    }
}


/* MOBILE */

@media(max-width:768px) {

    .nn-cta-section {
        padding: 60px 20px;
    }

    .nn-cta-container h2 {
        font-size: 22px;
    }

    .nn-cta-container p {
        font-size:1rem;
    }

    .nn-cta-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}


.nn-upcoming-events {
    padding: 100px 20px;
    background: #fcf7f5;
}


.nn-upcoming-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}


/* FEATURED */

.nn-event-featured {
    position: relative;
}

.nn-events-header h2 {
    font-size: 36px;
}

.nn-event-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.nn-event-featured-content {
    position: absolute;
    bottom: 0;
    background: linear-gradient(transparent,rgba(0,0,0,.85));
    color: white;
    padding: 30px;
    border-radius: 0 0 12px 12px;
}


.nn-event-badge {
    background: #b8892c;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}


.nn-event-info {
    margin: 15px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}


.nn-event-btn {
    background: #b8892c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}



/* SIDE EVENTS */

.nn-event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.nn-event-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    transition: .3s;
}


    .nn-event-item:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 25px rgba(0,0,0,.1);
    }


    .nn-event-item img {
        width: 90px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
    }


.nn-event-details h4 {
    margin-bottom: 5px;
}


.nn-event-meta {
    font-size: 14px;
    color: #777;
}

.nn-prev-strip-section {
    padding: 100px 20px;
    background: #fcf7f5;
}


/* HEADER */

.nn-prev-strip-header {
    text-align: center;
    margin-bottom: 70px;
}

    .nn-prev-strip-header h2 {
        font-size: 36px;
        color: #6d0f28;
    }

    .nn-prev-strip-header p {
        color: #555;
    }



/* STRIP ITEM */

.nn-prev-strip-item {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}



    /* REVERSE */

    .nn-prev-strip-item.reverse {
        grid-template-columns: 1fr 450px;
    }

        .nn-prev-strip-item.reverse .nn-prev-strip-image {
            order: 2;
        }

        .nn-prev-strip-item.reverse .nn-prev-strip-content {
            order: 1;
        }



/* IMAGE */

.nn-prev-strip-image {
    position: relative;
}

    .nn-prev-strip-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 10px;
    }



/* DATE BADGE */

.nn-prev-strip-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #6d0f28;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    text-align: center;
}

.nn-date-day {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.nn-date-month {
    font-size: 12px;
}



/* CONTENT */

.nn-prev-strip-content h3 {
    color: #6d0f28;
    margin-bottom: 10px;
}

.nn-prev-strip-content p {
    color: #555;
    margin-bottom: 15px;
}



/* META */

.nn-prev-strip-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

    .nn-prev-strip-meta span {
        font-size: 14px;
        color: #444;
    }

    .nn-prev-strip-meta i {
        color: #b8892c;
        margin-right: 6px;
    }

/* ===========================
   TABLET RESPONSIVE (1024px)
   SAME LAYOUT AS DESKTOP
=========================== */

@media (max-width:1024px) {

    /* CONTAINER */
    .nn-container {
        max-width: 95%;
    }


    /* UPCOMING EVENTS */

    .nn-upcoming-events {
        padding: 80px 20px;
    }

    /* KEEP SAME GRID */
    .nn-upcoming-layout {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }


    /* FEATURED */

    .nn-event-featured img {
        height: 420px;
    }

    .nn-event-featured-content {
        padding: 25px;
    }

        .nn-event-featured-content h3 {
            font-size: 22px;
        }

        .nn-event-featured-content p {
            font-size:1rem;
        }


    /* SIDE EVENTS */

    .nn-event-item {
        padding: 10px;
    }

        .nn-event-item img {
            width: 85px;
            height: 75px;
        }


    /* PREVIOUS EVENTS */

    .nn-prev-strip-section {
        padding: 80px 20px;
    }

    /* KEEP SAME GRID */

    .nn-prev-strip-item {
        grid-template-columns: 420px 1fr;
        gap: 40px;
    }

        .nn-prev-strip-item.reverse {
            grid-template-columns: 1fr 420px;
        }

    .nn-prev-strip-image img {
        height: 260px;
    }


    /* TEXT */

    .nn-prev-strip-content h3 {
        font-size: 22px;
    }

    .nn-prev-strip-content p {
        font-size:1rem;
    }
}
/* ==========================================
   MOBILE VIEW (MAX 768px)
========================================== */

@media (max-width:768px) {

    /* SECTION SPACING */
    .nn-upcoming-events,
    .nn-prev-strip-section {
        padding: 60px 16px;
    }


    /* ==========================================
   UPCOMING EVENTS
========================================== */

    /* Stack layout */
    .nn-upcoming-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* Featured Event */
    .nn-event-featured {
        border-radius: 12px;
        overflow: hidden;
    }

        .nn-event-featured img {
            height: 260px;
            border-radius: 12px;
        }

    .nn-event-featured-content {
        padding: 18px;
    }

        .nn-event-featured-content h3 {
            font-size: 20px;
            line-height: 1.3;
        }

        .nn-event-featured-content p {
            font-size: 14px;
            line-height: 1.6;
        }

    .nn-event-info {
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
    }

    .nn-event-btn {
        display: inline-block;
        margin-top: 10px;
        font-size: 14px;
        padding: 9px 18px;
    }


    /* Side Events */
    .nn-event-list {
        gap: 15px;
    }

    .nn-event-item {
        align-items: center;
        padding: 10px;
        gap: 12px;
    }

        .nn-event-item img {
            width: 70px;
            height: 65px;
            border-radius: 6px;
        }

    .nn-event-details h4 {
        font-size:1rem;
        margin-bottom: 4px;
    }

    .nn-event-meta {
        font-size: 13px;
    }


    /* ==========================================
   PREVIOUS EVENTS
========================================== */

    /* Stack layout */
    .nn-prev-strip-item {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 40px;
    }

        /* Remove reverse ordering */
        .nn-prev-strip-item.reverse {
            grid-template-columns: 1fr;
        }

            .nn-prev-strip-item.reverse .nn-prev-strip-image,
            .nn-prev-strip-item.reverse .nn-prev-strip-content {
                order: unset;
            }


    /* Image */
    .nn-prev-strip-image img {
        height: 220px;
        border-radius: 10px;
    }

    /* Date badge resize */
    .nn-prev-strip-date {
        padding: 2px 10px;
    }

    .nn-date-day {
        font-size: 16px;
    }

    .nn-date-month {
        font-size: 11px;
    }


    /* Content */
    .nn-prev-strip-content {
        text-align: left;
    }

        .nn-prev-strip-content h3 {
            font-size: 19px;
            margin-bottom: 8px;
        }

        .nn-prev-strip-content p {
            font-size: 14px;
            line-height: 1.6;
        }


    /* Meta info stacked clean */
    .nn-prev-strip-meta {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
    }
}

/* Make section reference point */
.nn-upcoming-events {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background: #fcf7f5;
}


/* RIGHT CURVE IMAGE */
.nn-upcoming-curve-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 500px;
    max-width: 35%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: .9;
}


/* Keep content above curve */
.nn-upcoming-events .nn-container {
    position: relative;
    z-index: 2;
}

@media (max-width:1024px) {

    .nn-upcoming-curve-right {
        width: 240px;
        max-width: 40%;
        opacity: .8;
    }
}

@media (max-width:768px) {

    .nn-upcoming-curve-right {
        width: 160px;
        max-width: 50%;
        opacity: .6;
    }
}

/* SECTION BASE */
.nn-prev-strip-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background: #fcf7f5;
}


/* TOP LEFT CURVE */
.nn-prev-curve-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    max-width: 35%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: .9;
}


/* BOTTOM RIGHT CURVE */
.nn-prev-curve-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 500px;
    max-width: 35%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: .9;
}


/* KEEP CONTENT ABOVE CURVES */
.nn-prev-strip-section .nn-container {
    position: relative;
    z-index: 2;
}

@media (max-width:1024px) {

    .nn-prev-curve-top {
        width: 240px;
        max-width: 40%;
        opacity: .8;
    }

    .nn-prev-curve-bottom {
        width: 240px;
        max-width: 40%;
        opacity: .8;
    }
}

@media (max-width:768px) {

    .nn-prev-strip-section {
        padding: 70px 20px;
    }

    .nn-prev-curve-top {
        width: 160px;
        max-width: 50%;
        opacity: .6;
    }

    .nn-prev-curve-bottom {
        width: 160px;
        max-width: 50%;
        opacity: .6;
    }
}


.nn-media-ribbon-section {
    padding: 60px 20px;
    background: #fcf7f5;
}


/* HEADER */

.nn-media-ribbon-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

    .nn-media-ribbon-header h2 {
        font-size: 38px;
        color: #6d0f28;
    }



/* CARD */

.nn-media-ribbon-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
    transition: .4s;
}

    .nn-media-ribbon-card:hover {
        transform: translateY(-6px);
    }



/* LEFT PANEL */

.nn-media-ribbon-left {
    background: linear-gradient(180deg,#6d0f28,#b8892c);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

    .nn-media-ribbon-left i {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .nn-media-ribbon-left h3 {
        font-size: 22px;
    }


/* CURVE */

.nn-ribbon-curve {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    opacity: .4;
}



/* RIGHT SIDE */

.nn-media-ribbon-right {
    display: grid;
    grid-template-columns: 300px 1fr;
}


.nn-media-ribbon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.nn-media-ribbon-content {
    padding: 30px;
}

    .nn-media-ribbon-content p {
        margin-bottom: 15px;
        color: #555;
    }


.nn-media-ribbon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .nn-media-ribbon-list span {
        font-size:1rem;
    }

    .nn-media-ribbon-list i {
        color: #b8892c;
        margin-right: 6px;
    }


/* REVERSE */

.nn-media-ribbon-card.reverse {
    direction: rtl;
}

    .nn-media-ribbon-card.reverse .nn-media-ribbon-right {
        direction: ltr;
    }

/* MAKE CARD POSITIONED */

.nn-media-ribbon-card {
    position: relative;
    overflow: hidden;
}



/* COMMON CURVE STYLE */

.nn-card-curve {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}



/* TOP LEFT CURVE */

.nn-card-curve-top {
    top: 0;
    left: 0;
    width: 250px;
    z-index: 9;
}



/* BOTTOM RIGHT CURVE */

.nn-card-curve-bottom {
    bottom: 0;
    right: 0;
    width: 250px;
    z-index: 9;
}



/* KEEP CONTENT ABOVE CURVES */

.nn-media-ribbon-left,
.nn-media-ribbon-right {
    position: relative;
    z-index: 1;
}

/* RIGHT SIDE GRID */

.nn-media-ribbon-right {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
}


/* IMAGE FULL HEIGHT */

.nn-media-ribbon-image {
    height: 100%;
}

    .nn-media-ribbon-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


/* CONTENT FULL HEIGHT */

.nn-media-ribbon-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


/* INNER CONTENT BALANCING */

.nn-media-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


/* TITLES */

.nn-media-title {
    font-size: 20px;
    color: #6d0f28;
    margin-bottom: 12px;
    font-weight: 600;
}


/* DESCRIPTION */

.nn-media-desc {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.nn-media-electronic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 10px;
}


.nn-media-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size:1rem;
    color: #444;
}


    .nn-media-point i {
        color: #b8892c;
        font-size: 18px;
    }

/* =====================================
   TABLET VIEW (768px – 1024px)
   Image fully fits container height
===================================== */

@media (max-width:1024px) {

    /* SECTION COMPACT */
    .nn-media-ribbon-section {
        padding: 60px 20px;
    }


    /* CARD STRUCTURE */
    .nn-media-ribbon-card {
        grid-template-columns: 200px 1fr;
        margin-bottom: 30px;
        border-radius: 16px;
    }


    /* LEFT PANEL */
    .nn-media-ribbon-left {
        padding: 28px 15px;
    }

        .nn-media-ribbon-left i {
            font-size: 42px;
        }

        .nn-media-ribbon-left h3 {
            font-size: 18px;
        }


    /* RIGHT SIDE GRID */
    .nn-media-ribbon-right {
        grid-template-columns: 240px 1fr;
        align-items: stretch; /* IMPORTANT */
        height: 100%;
    }


    /* IMAGE CONTAINER — FULL HEIGHT */
    .nn-media-ribbon-image {
        height: 100%;
        min-height: 220px;
        display: flex;
    }


        /* IMAGE FITS PERFECTLY */
        .nn-media-ribbon-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 8px;
        }


    /* CONTENT FULL HEIGHT */
    .nn-media-ribbon-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }


    /* TITLE */
    .nn-media-title {
        font-size: 18px;
        margin-bottom: 8px;
    }


    /* DESCRIPTION */
    .nn-media-ribbon-content p,
    .nn-media-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }


    /* LIST */
    .nn-media-ribbon-list {
        gap: 8px;
    }

        .nn-media-ribbon-list span {
            font-size: 13px;
        }


    /* ELECTRONIC GRID */
    .nn-media-electronic-grid {
        gap: 10px;
    }

    .nn-media-point {
        font-size: 13px;
    }

        .nn-media-point i {
            font-size:1rem;
        }


    /* HEADER */
    .nn-media-ribbon-header h2 {
        font-size: 28px;
    }

    .nn-media-ribbon-header p {
        font-size:1rem;
    }


    /* CURVES SMALLER */
    .nn-card-curve-top {
        width: 180px;
    }

    .nn-card-curve-bottom {
        width: 180px;
    }
}
/* ===============================
   MOBILE VIEW (Below 768px)
================================ */

@media (max-width:768px) {

    .nn-media-ribbon-section {
        padding: 60px 15px;
    }


    /* STACK CARD */
    .nn-media-ribbon-card {
        grid-template-columns: 1fr;
    }


    /* LEFT PANEL FULL WIDTH */
    .nn-media-ribbon-left {
        padding: 30px 20px;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }

        .nn-media-ribbon-left i {
            font-size: 40px;
            margin: 0;
        }

        .nn-media-ribbon-left h3 {
            font-size: 18px;
        }


    /* STACK IMAGE + CONTENT */
    .nn-media-ribbon-right {
        grid-template-columns: 1fr;
    }


    /* IMAGE HEIGHT FIX */
    .nn-media-ribbon-image {
        height: 220px;
    }


    /* CONTENT */
    .nn-media-ribbon-content {
        padding: 20px;
    }


    /* LIST SINGLE COLUMN */
    .nn-media-ribbon-list {
        grid-template-columns: 1fr;
    }


    /* ELECTRONIC GRID SINGLE COLUMN */
    .nn-media-electronic-grid {
        grid-template-columns: 1fr;
    }


    /* CURVES SMALLER */
    .nn-card-curve-top {
        width: 140px;
    }

    .nn-card-curve-bottom {
        width: 140px;
    }
}

.nn-blog-timeline-section {
    padding: 50px 20px;
    background: #fcf7f5;
}

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

/* HEADER */

.nn-blog-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

    .nn-blog-header h2 {
        font-size: 38px;
        color: #6d0f28;
        margin: 10px 0;
    }

/* LAYOUT */

.nn-blog-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
}

/* TIMELINE */

.nn-blog-timeline {
    position: relative;
}

.nn-blog-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    margin-bottom: 40px;
    background: url('../images/curve9.png') center;
    background-size: cover;
    border-radius: 5px;
}

.nn-blog-date {
    background: #6d0f28;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}

    .nn-blog-date span {
        display: block;
        font-size: 22px;
        font-weight: bold;
    }

/* BLOG INFO */

.nn-blog-info h3 {
    margin: 5px 0;
}

    .nn-blog-info h3 a {
        color: #6d0f28;
        text-decoration: none;
        transition: .3s;
    }

        .nn-blog-info h3 a:hover {
            color: #b8892c;
        }

.nn-blog-category {
    font-size: 13px;
    color: #b8892c;
    text-decoration: none;
    font-weight: 600;
}

    .nn-blog-category:hover {
        color: #6d0f28;
    }

.nn-blog-read {
    display: inline-block;
    margin-top: 10px;
    color: #6d0f28;
    text-decoration: none;
    font-weight: 600;
}

    .nn-blog-read:hover {
        color: #b8892c;
        transform: translateX(6px);
    }

/* FEATURED */

.nn-blog-featured {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .nn-blog-featured img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.nn-blog-featured-content {
    padding: 30px;
}

    .nn-blog-featured-content h3 a {
        color: #6d0f28;
        text-decoration: none;
    }

        .nn-blog-featured-content h3 a:hover {
            color: #b8892c;
        }

/* BUTTON */

.nn-blog-btn {
    display: inline-block;
    margin-top: 15px;
    background: #b8892c;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

    .nn-blog-btn:hover {
        background: #6d0f28;
        color: white;
    }

/* TABLET */

@media(max-width:1024px) {

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

    .nn-blog-featured img {
        height: 220px;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .nn-blog-header h2 {
        font-size: 26px;
    }

    .nn-blog-item {
        grid-template-columns: 70px 1fr;
    }

    .nn-blog-date span {
        font-size: 18px;
    }
}

.nn-contact-v2 {
    padding: 120px 20px;
    background: #fcf7f5;
    position: relative;
    overflow: hidden;
}

.nn-contact-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    opacity: .15;
}

.nn-contact-bg-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    opacity: .15;
}

.nn-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADER */

.nn-contact-v2-header {
    text-align: center;
    margin-bottom: 60px;
}

    .nn-contact-v2-header h2 {
        font-size: 40px;
        color: #6d0f28;
        margin: 10px 0;
    }

/* MAIN CARD */

.nn-contact-v2-card {
    display: grid;
    grid-template-columns: 1fr 480px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0px 6px rgba(0,0,0,.08);
    overflow: hidden;
}

/* LEFT SIDE */

.nn-contact-v2-left {
    padding: 60px;
    background: linear-gradient(135deg,#6f0143, #b90243);
    color: white;
}

    .nn-contact-v2-left h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

/* INFO GRID */

.nn-contact-v2-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.nn-contact-v2-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

    .nn-contact-v2-info i {
        font-size: 22px;
        margin-top: 5px;
    }

    /* ANCHOR */

    .nn-contact-v2-info a {
        color: white;
        text-decoration: none;
    }

        .nn-contact-v2-info a:hover {
            text-decoration: underline;
        }

/* FORM SIDE */

.nn-contact-v2-right {
    padding: 50px;
}

/* FORM */

.nn-contact-v2-form h3 {
    color: #6d0f28;
    margin-bottom: 25px;
}

/* FLOATING INPUT */

.nn-input-group {
    position: relative;
    margin-bottom: 22px;
}

    .nn-input-group input,
    .nn-input-group textarea,
    .nn-input-group select {
        width: 100%;
        padding: 14px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size:1rem;
        background: none;
        outline: none;
    }

    .nn-input-group label {
        position: absolute;
        left: 14px;
        top: 14px;
        color: #888;
        background: white;
        padding: 0 5px;
        transition: .3s;
        pointer-events: none;
    }

    /* FLOAT EFFECT */

    .nn-input-group input:focus + label,
    .nn-input-group input:valid + label,
    .nn-input-group textarea:focus + label,
    .nn-input-group textarea:valid + label,
    .nn-input-group select:focus + label,
    .nn-input-group select:valid + label {
        top: -8px;
        font-size: 12px;
        color: #b8892c;
    }

/* BUTTON */

.nn-contact-v2-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg,#6f0143, #b90243);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

    .nn-contact-v2-btn:hover {
        opacity: .9;
    }
    .nn-contact-v2-intro h3{
        color:#E0A271;
    }

/* TABLET */

@media(max-width:1024px) {

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

    .nn-contact-v2-left {
        padding: 40px;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .nn-contact-v2 {
        padding: 70px 15px;
    }

    .nn-contact-v2-header h2 {
        font-size: 28px;
    }

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

    .nn-contact-v2-right {
        padding: 30px;
    }
}
/* INTRO */

.nn-contact-v2-intro {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding-bottom: 20px;
}

.nn-contact-tag {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .8;
    display: block;
    margin-bottom: 8px;
}

.nn-contact-v2-intro h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.nn-contact-v2-intro p {
    opacity: .95;
    line-height: 1.7;
}


/* INFO LIST */

.nn-contact-v2-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* INFO ROW */

.nn-contact-v2-info-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}


/* ICON */

.nn-contact-v2-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: .3s;
}

.nn-contact-v2-details {
    text-align: initial;
    padding-left: 20px;
}

/* HOVER */

.nn-contact-v2-info-row:hover .nn-contact-v2-icon {
    background: white;
    color: #6d0f28;
}


/* DETAILS */

.nn-contact-v2-details h4 {
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 600;
    margin-top: 0px;
    color: var(--secondary-light);
}

.nn-contact-v2-details p {
    font-size: 14px;
    line-height: 1.6;
    opacity: .95;
}


/* ANCHOR */

.nn-contact-v2-details a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

    .nn-contact-v2-details a:hover {
        text-decoration: underline;
    }


/* MOBILE */

@media(max-width:768px) {

    .nn-contact-v2-intro h3 {
        font-size: 22px;
    }

    .nn-contact-v2-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* RIGHT SIDE LAYOUT FIX */

.nn-contact-v2-right {
    padding: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* FORM TAKES REQUIRED SPACE */

.nn-contact-v2-form {
    margin-bottom: 30px;
}


/* MAP CONTAINER */

.nn-contact-map {
    margin-top: 20px;
    margin-left: -50px;
    margin-right: -50px;
    margin-bottom: -50px;
    height: 100%;
    border-top: 1px solid #eee;
    overflow: hidden;
}


    /* MAP FULL WIDTH & HEIGHT */

    .nn-contact-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }


/* TABLET */

@media(max-width:1024px) {

    .nn-contact-map {
        margin-left: -50px;
        margin-right: -50px;
        margin-bottom: -50px;
        height: 240px;
    }
}


/* MOBILE */

@media(max-width:768px) {

    .nn-contact-map {
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: -30px;
        height: 220px;
    }
}




.nn-why-clean {

    background: linear-gradient(to right,#efdde3,#fcf7f7,#fcf7f7,#fcf7f7,#f7e5e7);
    padding-top: 30px;
}

.nn-why-header h2 {
    color: #7A0F2E;
    font-size: 36px;
    margin-bottom: 10px;
}

.nn-clean-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px 1fr;
    gap: 50px;
    align-items: center;
}


/* CENTER IMAGE */

.nn-clean-center {
    text-align: center;
    position: relative;
}

    .nn-clean-center img {
        width: 100%;
        max-width: 300px;
        animation: float 4s ease-in-out infinite;
    }

.nn-center-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle,#D4A35F40,transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


/* SIDE */

.nn-clean-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* CARD */

.nn-clean-card {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: .3s;
}


/* ICON */

.nn-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6fa;
    border-radius: 10px;
}

    .nn-icon i {
        font-size: 18px;
        color: #D4A35F;
    }


/* TEXT */

.nn-text {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}


/* HOVER */

.nn-clean-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}


/* FLOAT */

@keyframes float {

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

    50% {
        transform: translateY(-12px);
    }
}

.nn-services-zigzag {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(to right,#efdde3,#fcf7f7,#fcf7f7,#fcf7f7,#f7e5e7);
}

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

.nn-services-header {
    text-align: center;
    margin-bottom: 50px;
}

    .nn-services-header h2 {
        color: #7A0F2E;
        font-size: 36px;
        margin-bottom: 10px;
    }

    .nn-services-header p {
        color: #555;
        max-width: 700px;
        margin: auto;
    }

.nn-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

    .nn-row.reverse {
        grid-template-columns: 1fr 300px;
    }

.nn-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 30%;
}

.nn-tab {
    padding: 14px 16px;
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    font-family:inherit;
    text-align: left;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

    .nn-tab i {
        margin-right: 8px;
        color: #D4A35F;
    }

    .nn-tab:hover {
        transform: translateX(5px);
    }

    .nn-tab.active {
        background: #7A0F2E;
        color: #fff;
    }

        .nn-tab.active i {
            color: #fff;
        }

.nn-content {
    min-height: 300px;
    width:100%;
}

.nn-card-new {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    animation: fadeUp .4s ease;
    text-align: initial;
}

    .nn-card-new.active {
        display: block;
    }

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

    .nn-card-new-header i {
        color: #D4A35F;
        font-size: 22px;
    }

    .nn-card-new-header h3 {
        color: #7A0F2E;
        margin: 0;
    }

.nn-card-new-desc {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.nn-card-new-list {
    padding-left: 0;
}

    .nn-card-new-list li {
        list-style: none;
        margin-bottom: 10px;
        padding-left: 18px;
        position: relative;
        line-height: 1.6;
    }

.nn-card-new-new-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #D4A35F;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media(max-width:992px) {
    .nn-row,
    .nn-row.reverse {
        grid-template-columns: 1fr;
    }

    .nn-tabs {
        flex-direction: row;
        overflow: auto;
    }

    .nn-tab {
        min-width: 200px;
    }
}

/* ===================================== */
/* TABLET VIEW (768px to 1024px) */
/* KEEP EXACT DESKTOP LAYOUT */
/* ===================================== */

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

    /* container scaling */
    .nn-container {
        max-width: 95%;
    }


    /* KEEP SAME GRID STRUCTURE */
    .nn-row {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 30px;
        align-items: start;
    }

        .nn-row.reverse {
            grid-template-columns: 1fr 280px;
        }


    /* tabs */
    .nn-tabs {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }


    /* tab styling scaled */
    .nn-tab {
        padding: 13px 15px;
        font-size: 14.5px;
        border-radius: 8px;
    }


    /* content area */
    .nn-content {
        width: 100%;
    }


    /* cards scaled */
    .nn-card-new {
        padding: 24px;
        border-radius: 12px;
    }


    /* header */
    .nn-card-new-header h3 {
        font-size: 19px;
    }


    /* description */
    .nn-card-new-desc {
        font-size: 14.5px;
    }


    /* list */
    .nn-card-new-list li {
        font-size: 14.5px;
    }


    /* WHY CHOOSE US SECTION */
    /* KEEP SAME 3 COLUMN LAYOUT */

    .nn-clean-wrapper {
        display: grid;
        grid-template-columns: 1fr 260px 1fr;
        gap: 30px;
    }


    /* center image scaled */
    .nn-clean-center img {
        max-width: 240px;
    }


    /* glow scaled */
    .nn-center-glow {
        width: 220px;
        height: 220px;
    }


    /* cards */
    .nn-clean-card {
        padding: 12px 14px;
    }


    /* text */
    .nn-text {
        font-size: 14px;
    }
}

/* ========================= */
/* MOBILE VIEW (767px and below) */
/* STACK CLEANLY */
/* ========================= */

@media (max-width: 767px) {

    .nn-services-zigzag {
        padding: 50px 15px;
    }


    /* stack zigzag layout */
    .nn-row,
    .nn-row.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* tabs horizontal scroll */
    .nn-tabs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        padding-bottom: 5px;
        width:100%;
    }



        /* scrollbar styling */
        .nn-tabs::-webkit-scrollbar {
            height: 4px;
        }

        .nn-tabs::-webkit-scrollbar-thumb {
            background: #D4A35F;
            border-radius: 10px;
        }


    /* tab width */
    .nn-tab {
        min-width: 160px;
        font-size: 14px;
    }


    /* card spacing */
    .nn-card-new {
        padding: 20px;
    }


    /* header */
    .nn-card-new-header h3 {
        font-size: 17px;
    }


    /* WHY SECTION STACK */
    .nn-clean-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* center image */
    .nn-clean-center {
        order: -1;
    }

        .nn-clean-center img {
            max-width: 200px;
        }


    /* card alignment */
    .nn-clean-card {
        grid-template-columns: 40px 1fr;
    }


    .nn-text {
        font-size: 14px;
    }
}



.nn-didknow-showcase {
    padding: 90px 20px;
    background: linear-gradient(to right,#efdde3,#fcf7f7,#fcf7f7,#fcf7f7,#f7e5e7);
}

.nn-container1 {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}


/* LEFT */

.nn-didknow-left h2 {
    color: #7A0F2E;
    font-size: 36px;
    margin-bottom: 10px;
}

.nn-didknow-left p {
    color: #555;
    margin-bottom: 25px;
}


/* LIST */

.nn-didknow-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* ITEM */

.nn-didknow-item {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    border-left: 4px solid transparent;
}

    .nn-didknow-item:hover {
        transform: translateX(6px);
    }

    .nn-didknow-item.active {
        border-left: 4px solid #7A0F2E;
        background: #fff5f7;
    }


/* RIGHT IMAGE */

.nn-didknow-right {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0px 5px rgba(102, 0, 38, 0.46);
}

    .nn-didknow-right img {
        width: 100%;
        border-radius: 10px;
        animation: fadeSlide .5s ease;
    }


/* ANIMATION */

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

.nn-didknow-showcase
{
    position: relative;
    padding: 140px 20px 90px 20px; /* extra top space for curve */
    background: linear-gradient(to right,#efdde3,#fcf7f7,#f7e5e7);
    overflow: hidden;
}

/* TOP CURVE CONTAINER */
.nn-top-curve
{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;       /* full viewport width */
    line-height: 0;
    z-index: 1;
}

/* CURVE IMAGE */
.nn-top-curve img
{
    width: 100vw;       /* full width */
    height: auto;
    display: block;
    object-fit: cover;
}

/* ensure content stays above curve background */
.nn-container1
{
    position: relative;
    z-index: 2;
}
/* TABLET VIEW — SAME AS DESKTOP */
@media (min-width:768px) and (max-width:1024px) {

    .nn-container1 {
        grid-template-columns: 1fr 1.2fr; /* SAME AS DESKTOP */
        gap: 30px;
        align-items: center;
    }


    /* adjust text size slightly */
    .nn-didknow-left h2 {
        font-size: 30px;
    }

    .nn-didknow-left p {
        font-size:1rem;
    }


    /* compact items slightly */
    .nn-didknow-item {
        padding: 14px;
        font-size:1rem;
    }


    /* image container */
    .nn-didknow-right {
        padding: 15px;
    }
}
/* =============================== */
/* MOBILE PERFECT FIT LAYOUT */
/* Full Image Visible + Short Content */
/* =============================== */

@media (max-width:767px) {

    .nn-didknow-showcase {
        padding: 10px 12px;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to bottom,#efdde3,#fcf7f7,#f7e5e7);
    }


    /* CONTAINER */
    .nn-container1 {
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: 10px;
    }


    /* IMAGE SECTION */
    .nn-didknow-right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
        min-height: 0;
    }


        /* FULL IMAGE VISIBLE */
        .nn-didknow-right img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }


    /* CONTENT SECTION */
    .nn-didknow-left {
        flex: 0 0 auto;
        text-align: center;
    }


        /* SHORT HEADING */
        .nn-didknow-left h2 {
            font-size: 20px;
            margin-bottom: 4px;
            color: #7A0F2E;
        }


        /* SHORT DESCRIPTION */
        .nn-didknow-left p {
            font-size: 12.5px;
            margin-bottom: 8px;
            color: #666;
            line-height: 1.4;
        }


    /* COMPACT LIST */
    .nn-didknow-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }


    /* SMALL ITEMS */
    .nn-didknow-item {
        padding: 8px 6px;
        font-size: 11.5px;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,.08);
        background: #fff;
        border-left: 2px solid transparent;
        line-height: 1.2;
    }


        /* ACTIVE ITEM */
        .nn-didknow-item.active {
            border-left: 2px solid #7A0F2E;
            background: #fff5f7;
        }


        /* TOUCH EFFECT */
        .nn-didknow-item:active {
            transform: scale(.96);
        }
}
/* SECTION */

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


/* TOP CURVE */

.nn-top-curve1
{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    line-height:0;
}

.nn-top-curve1 img
{
    width:100%;
    height:auto;
    display:block;
}


/* CONTAINER */

.nn-vertical-container
{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}


/* HEADER */

.nn-vertical-header
{
    text-align:center;
    margin-bottom:50px;
}

.nn-vertical-header h2
{
    font-size:36px; 
    font-weight:700;
}

.nn-vertical-header p
{
    font-size:16px;
    color:#555;
}


/* GRID */

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


/* CARD */

.nn-vertical-card
{
    background: #fff5fa;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0px 6px rgba(194,24,91,0.15);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

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


/* IMAGE FULLY VISIBLE */

.nn-vertical-card img
{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}


/* TITLE */

.nn-vertical-title
{
    padding:18px;
    text-align:center;
    font-size:17px;
    font-weight:600;
    color:#880e4f;
    background:#fff5fa;
}


/* TABLET */

@media(max-width:992px)
{
    .nn-vertical-grid
    {
        grid-template-columns:repeat(2,1fr);
    }
}


/* MOBILE */

@media(max-width:600px)
{
    .nn-vertical-section
    {
        padding-top:100px;
    }

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

    .nn-top-curve1 img
    {
        height:60px;
        object-fit:cover;
    }

    .nn-vertical-header h2
    {
        font-size:26px;
    }
}


 



/* SECTION */

.nn-impact-section
{
    padding:0px 0px;
    background:linear-gradient(135deg,#fff,#fff7f9);
    text-align:center;
    margin-top: -55px;
}



/* HEADER */

.nn-impact-small
{
    color:var(--secondary-dark);
}

.nn-impact-title
{
    font-size:42px;
    color:var(--primary-color);
    margin:15px 0;
}

.nn-impact-desc
{
    max-width:700px;
    margin:auto;
    color:#555;
}



/* RIBBON */

.nn-impact-ribbon
{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:50px;
}



/* BOX */

.nn-impact-box
{
    flex:1;
    min-width:220px;
    padding:35px 20px;
    background:#fff;
    border-right:1px solid #eee;
    transition:.3s;
}

.nn-impact-box:last-child
{
    border-right:none;
}

.nn-impact-box:hover
{
    background:var(--primary-color);
    color:#fff;
}

.nn-impact-box:hover .nn-impact-number
{
    color:#fff;
}



/* NUMBER */

.nn-impact-number
{
    font-size:36px;
    font-weight:bold;
    color:var(--primary-color);
}



/* LABEL */

.nn-impact-label
{
    margin-top:10px;
}



/* BUTTON */

.nn-impact-action
{
    margin-top:50px;
}

.nn-impact-btn
{
    padding:14px 40px;
    background:var(--primary-color);
    color:#fff;
    text-decoration:none;
}



/* ANIMATIONS */

.nn-anim-top
{
    animation:fadeDown 1s ease;
}

.nn-anim-rise
{
    animation:riseUp 1s ease;
}

.nn-anim-bottom
{
    animation:fadeUp 1.5s ease;
}

.delay1{animation-delay:.2s;}
.delay2{animation-delay:.4s;}
.delay3{animation-delay:.6s;}



@keyframes fadeDown
{
    from{opacity:0; transform:translateY(-40px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes riseUp
{
    from{opacity:0; transform:translateY(50px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes fadeUp
{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}



/* MOBILE */

@media(max-width:768px)
{
    .nn-impact-title
    {
        font-size:28px;
    }

    .nn-impact-box
    {
        border-right:none;
        border-bottom:1px solid #eee;
    }
}
 
/* SECTION */

.nn-pillars-section
{
    padding:100px 20px;
    background:#ffffff;
}



/* HEADER */

.nn-pillars-header
{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:80px;
}

.nn-pillars-header h4
{
    color:var(--secondary-color);
}

.nn-pillars-header h1
{
    color:var(--primary-color);
    margin:10px 0;
}

.nn-pillars-header p
{
    color:#555;
}



/* GRID */

.nn-pillars-container
{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;
}



/* PILLAR */

.nn-pillar
{
    background:#fff;

    border-top:5px solid var(--secondary-color);

    box-shadow:0 12px 30px rgba(0,0,0,0.08);

    transition:.4s;

    animation:nnPillarFade 1s ease forwards;
}

.nn-pillar:hover
{
    transform:translateY(-10px);
}



/* TOP ICON */

.nn-pillar-top
{
    background:var(--primary-color);

    color:#fff;
      padding: 10px;
  font-size: 60px;

    text-align:center;
}



/* BODY */

.nn-pillar-body
{
    padding:25px;
}

.nn-pillar-body h3
{
    color:var(--primary-color);
}

.nn-pillar-body span
{
    color:var(--secondary-color);
    font-weight:600;
}

.nn-pillar-body ul
{
    margin-top:15px;
    padding-left:18px;
}

.nn-pillar-body li
{
    margin-bottom:6px;
}



/* TIMELINE */

.nn-pillar-time
{
    margin-top:15px;
    color:var(--primary-light);
}



/* ANIMATIONS */

@keyframes nnPillarFade
{
    from
    {
        opacity:0;
        transform:translateY(40px);
    }
    to
    {
        opacity:1;
        transform:translateY(0);
    }
}

.nn-pillars-animate-top
{
    animation:fadeTop 1.5s ease;
}

@keyframes fadeTop
{
    from{opacity:0; transform:translateY(-30px);}
    to{opacity:1; transform:translateY(0);}
}

.delay1{animation-delay:.2s;}
.delay2{animation-delay:.4s;}
.delay3{animation-delay:.6s;}
.delay4{animation-delay:.8s;}
.delay5{animation-delay:1s;}

/* ========================================= */
/* CARD HOVER - PREMIUM LIFT + BORDER GLOW */
/* ========================================= */

.nn-pillar
{
    position:relative;
    transition:all .4s ease;
    border-top:5px solid var(--secondary-color);
}

/* animated border highlight */
.nn-pillar::after
{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:0;
    background:linear-gradient(to bottom,
        var(--secondary-color),
        transparent);
    opacity:0;
    transition:.4s ease;
}

.nn-pillar:hover::after
{
    height:100%;
    opacity:.08;
}

/* lift effect */
.nn-pillar:hover
{
    transform:translateY(-14px);
    box-shadow:
        0 22px 55px rgba(0,0,0,.18),
        0 6px 18px rgba(122,15,46,.18);

    border-top-color:var(--primary-light);
}


/* ========================================= */
/* ICON ANIMATION */
/* ========================================= */

.nn-pillar-top i
{
    display:inline-block;
    transition:all .4s ease;
}

/* rotate + zoom */
.nn-pillar:hover .nn-pillar-top i
{
    transform:scale(1.25) rotate(8deg);
}

/* background animation */
.nn-pillar-top
{
    transition:all .4s ease;
}

.nn-pillar:hover .nn-pillar-top
{
    background:linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary-color)
    );
}


/* ========================================= */
/* IMAGE SUPPORT */
/* ========================================= */

.nn-pillar-top img
{
    width:72px;
    height:72px;
    object-fit:contain;
    display:block;
    margin:auto;

    transition:all .4s ease;
}

/* image zoom */
.nn-pillar:hover .nn-pillar-top img
{
    transform:scale(1.2);
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.25));
}


/* ========================================= */
/* TEXT HOVER EFFECT */
/* ========================================= */

.nn-pillar-body h3
{
    transition:.3s ease;
}

.nn-pillar:hover .nn-pillar-body h3
{
    color:var(--secondary-dark);
}

.nn-pillar-body span
{
    transition:.3s ease;
}

.nn-pillar:hover .nn-pillar-body span
{
    color:var(--primary-light);
}


/* ========================================= */
/* LIST SLIDE EFFECT */
/* ========================================= */

.nn-pillar-body li
{
    transition:.3s ease;
}

.nn-pillar:hover .nn-pillar-body li
{
    transform:translateX(6px);
}


/* ========================================= */
/* TIMELINE ANIMATION */
/* ========================================= */

.nn-pillar-time
{
    transition:.3s ease;
}

.nn-pillar:hover .nn-pillar-time
{
    color:var(--secondary-color);
    font-weight:600;
}


/* ========================================= */
/* ENTRY ANIMATION */
/* ========================================= */

.nn-pillar
{
    opacity:0;
    animation:nnFadeRise .9s ease forwards;
}

@keyframes nnFadeRise
{
    from
    {
        opacity:0;
        transform:translateY(50px);
    }
    to
    {
        opacity:1;
        transform:translateY(0);
    }
}


/* ========================================= */
/* MOBILE OPTIMIZATION */
/* ========================================= */

@media(max-width:768px)
{
    .nn-pillar:hover
    {
        transform:translateY(-6px);
    }

    .nn-pillar-top img
    {
        width:58px;
        height:58px;
    }
}

/* HERO SECTION */

.nn-schemes-hero5
{
    position:relative;
    padding:60px 20px;

    background:
    linear-gradient(180deg,
    #ffffff 0%,
    #fff4ec 100%);

    overflow:hidden;
}


/* CONTAINER */

.nn-schemes-hero5-container
{
    max-width:1000px;
    margin:auto;

    text-align:center;

    position:relative;
    z-index:2;
}


/* LABEL */

.nn-schemes-hero5-label
{
    display:inline-block;

    padding:8px 20px;

    background:rgba(122,15,46,0.08);

    color:var(--primary-color);

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

    animation:nnFadeDown 1s ease;
}


/* TITLE */

.nn-schemes-hero5-title
{
    font-size:46px;

    color:var(--primary-color);

    margin-bottom:20px;

    animation:nnFadeUp 1.2s ease;
}


/* DESCRIPTION */

.nn-schemes-hero5-desc
{
    font-size:18px;

    color:#555;

    line-height:1.7;

    max-width:700px;

    margin:auto;

    margin-bottom:50px;

    animation:nnFadeUp 1.4s ease;
}


/* STATS GRID */

.nn-schemes-hero5-stats
{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:50px;
}


/* STAT CARD */

.nn-hero5-stat-card
{
    background:#fff;

    padding:25px;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:.4s;

    animation:nnFadeUp 1.6s ease;
}

.nn-hero5-stat-card:hover
{
    transform:translateY(-10px);
}


/* HIGHLIGHT CARD */

.nn-hero5-stat-card.highlight
{
    background:var(--primary-color);

    color:#fff;
}

.nn-hero5-stat-card.highlight span
{
    color:#fff;
}


/* STAT TEXT */

.nn-hero5-stat-card h2
{
    color:var(--secondary-color);
    margin-bottom:5px;
}

.nn-hero5-stat-card.highlight h2
{
    color:#fff;
}

.nn-hero5-stat-card span
{
    font-size:14px;
    color:#777;
}


/* BUTTON */

.nn-hero5-btn
{
    display:inline-block;

    padding:14px 32px;

    background:var(--secondary-color);

    color:#fff;

    border-radius:6px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

    animation:nnFadeUp 1.8s ease;
}

.nn-hero5-btn:hover
{
    background:var(--secondary-dark);

    transform:translateY(-3px);
}


/* BACKGROUND SHAPES */

.nn-schemes-bg-shape
{
    position:absolute;

    border-radius:50%;

    opacity:.08;
}

.shape1
{
    width:300px;
    height:300px;

    background:var(--primary-color);

    top:-100px;
    left:-100px;
}

.shape2
{
    width:250px;
    height:250px;

    background:var(--secondary-color);

    bottom:-80px;
    right:-80px;
}


/* ANIMATIONS */

@keyframes nnFadeUp
{
    from
    {
        opacity:0;
        transform:translateY(40px);
    }
    to
    {
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes nnFadeDown
{
    from
    {
        opacity:0;
        transform:translateY(-40px);
    }
    to
    {
        opacity:1;
        transform:translateY(0);
    }
}


/* RESPONSIVE */

@media(max-width:992px)
{
    .nn-schemes-hero5-stats
    {
        grid-template-columns:repeat(2,1fr);
    }

    .nn-schemes-hero5-title
    {
        font-size:34px;
    }
}

@media(max-width:600px)
{
    .nn-schemes-hero5-stats
    {
        grid-template-columns:1fr;
    }
}


/* SECTION */

.nn-scheme-vertical-section
{
    padding:100px 20px;
    background:#ffffff;
}



/* HEADER */

.nn-scheme-vertical-header
{
    text-align:center;
    margin-bottom:60px;
}

.nn-scheme-vertical-header h4
{
    color:var(--secondary-color);
}

.nn-scheme-vertical-header h2
{
    color:var(--primary-color);
}

.nn-scheme-vertical-header p
{
    color:#666;
}



/* GRID */

.nn-scheme-vertical-grid
{
    max-width:1200px;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:30px;
}



/* CARD */

.nn-scheme-vertical-card
{
    background:#fff;

    border-radius:8px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    display:flex;

    flex-direction:column;

    transition:.3s;
}

.nn-scheme-vertical-card:hover
{
    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
}



/* TOP */

.nn-scheme-vertical-top
{
    display:flex;

    align-items:center;

    gap:15px;

    padding:20px;

    border-bottom:1px solid #eee;
}

.nn-scheme-vertical-icon
{
    width:50px;
    height:50px;

    background:var(--primary-color);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    border-radius:6px;
}

.nn-scheme-vertical-top h3
{
    margin:0;
    color:var(--primary-color);
}

.nn-scheme-vertical-top span
{
    font-size:13px;
    color:#777;
}



/* BODY */

.nn-scheme-vertical-body
{
    padding:20px;
}



/* PERFECT ALIGNMENT ROW */

.nn-row
{
    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

    border-bottom:1px dashed #eee;

    padding-bottom:6px;
}

.nn-row label
{
    color:#777;
}

.nn-row strong
{
    color:var(--primary-color);
}



/* BENEFITS */

.nn-scheme-vertical-benefits
{
    padding:20px;
}

.nn-scheme-vertical-benefits ul
{
    padding-left:18px;
}

.nn-scheme-vertical-benefits li
{
    margin-bottom:6px;
}



/* FOOTER */

.nn-scheme-vertical-footer
{
    padding:20px;

    border-top:1px solid #eee;
}

.nn-scheme-vertical-footer a
{
    background:var(--primary-color);

    color:#fff;

    padding:10px 20px;

    text-decoration:none;

    border-radius:5px;

    font-size:14px;
}

.nn-scheme-vertical-footer a:hover
{
    background:var(--secondary-color);
}



/* MOBILE */

@media(max-width:768px)
{
    .nn-row
    {
        flex-direction:column;
        gap:4px;
    }
}

/*Service 1*/
.funding-section {
    padding: 60px 20px;
    background-color: #f8f4f5;
}
.funding-section h1{
    text-align:center;
    margin-bottom:40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.funding-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #7a0f2b;
    transition: 0.3s ease;
    text-align: left;
}

.funding-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #7a0f2b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 20px;
}

.funding-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #7a0f2b;
}

.funding-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .funding-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .funding-grid {
        grid-template-columns: 1fr;
    }
}

.process-section {
    padding: 60px 20px;
    background: #ffffff;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.process-section .section-title h2 {
    font-size: 32px;
    color: #7a0f2b;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #fefefe;
    transition: 0.3s ease;
}
.process-card:hover {  
    background: #f4c0cd54;
}


.process-card:hover {
    transform: translateY(-6px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #7a0f2b;
    color: #fff;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.process-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #7a0f2b;
}

.process-card p {
    font-size:1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 60px 20px;
    background: #f8f4f5;
}

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

.faq-section  .section-title {
    text-align: center;
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 32px;
    color: #7a0f2b;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #7a0f2b;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;

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

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: #fff;
}

.faq-answer p {
    padding: 16px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Rotate arrow when open */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 600px) {
    .section-title h2 {
        font-size: 24px;
    }
}


.why-choose-section {
    padding: 80px 20px;
    background: #ffffff;
}


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

.why-title {
    text-align: center;
    margin-bottom: 50px;
}

.why-title h2 {
    font-size: 32px;
    color: #7a0f2b;
}

/* Grid Layout */
.why-pill-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Pill Styling */
.why-pill {
    text-align: center;
    padding: 14px 20px;
    background:#7a0f2b;
    border-radius: 50px;
    border: 2px solid transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Hover */
.why-pill:hover {
    border: 2px solid #7a0f2b;
    background:transparent;
    color: #7a0f2b;
}

/* Tablet View */
@media (max-width: 992px) {
    .why-pill-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .why-pill-container {
        grid-template-columns: 1fr;
    }

    .why-title h2 {
        font-size: 24px;
    }
}

/*homepage modal*/
:root {
    --primary-maroon: #7A0F2E;
    --success-green: #28a745;
}

/* Modal Overlay */
.modal-overlay {
    display:flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.4s ease;
}

/* Promo Image Content */
.modal-content {
    position: relative;
    max-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
}

.promo-img {
    width: 100%;
    border-radius: 10px;
}

.click-instruction {
    color: var(--primary-maroon);
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}
.form-content{
    position:relative;
}
.required{
color:red;
}

/* Form Container Layout */
.form-container {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    max-width: 800px;   
}

 .modal-overlay.show{
    opacity:1;
    visibility:visible;
}

.form-right {
    padding: 40px;
}
.form-right h3{
    font-size:2rem;
    margin:10px 1px 15px;
}
.form-right input::placeholder{
    color: #b5b5b5;
    font-family: 'Segoe UI';
}
.input{
   display: block;
  font-size: 1rem;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid lightgray;
  margin: 5px 0px 10px;
  width: 100%;
}

.form-right label{
  font-size: 1rem;
  font-family: 'Segoe UI';
  font-weight:600
}
.btn-submit {
    background: var(--primary-maroon);
    color: white;
    border: none;
    padding: 17px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    margin-top:10px;
    font-family: 'Segoe UI';
}
.btn-submit:hover {
    background:#AB1843;
    color: white;
}

.close-btn {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 35px;
    cursor: pointer;
    z-index: 100;
    color:#AB1843;

}
@media (max-width:768px){
    .modal-content {
  position: relative;
  max-width: 270px;
  background: white;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
}
    .modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
    .form-right h3 {
  font-size: 1.5rem;
  margin: 10px 1px 15px;
}

}

/*Social media*/

.social-icons{
margin-top:20px;
}
.fa-brands{
    line-height:unset!important;
}

.social-icons a{
display:inline-block;
margin:0 10px;
width:45px;
height:45px;
line-height:45px;
border-radius:50%;
background:#b8003c;
color:white;
font-size:20px;
text-align:center;
transition:0.3s;
}

.social-icons a:hover{
background:#8f002e;
transform:translateY(-5px);
}
.video-wrapper video{
    width:100%;
    height:85vh;
    border-radius:10px;
}
@media(max-width:768px){
 .video-wrapper video {
  width: 100%;
  height: 25vh;
  border-radius: 10px;
}
}