/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background: black;
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Mobile: Much larger logo */
.nnsr-logo-brand {
    width: 120px;
    height: auto;
    display: block;
}

.header-text h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.header-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.nnsr-title-full-text-desktop-v2 {
    display: none;
}

.nnsr-title-mobile-abbr-v2 {
    display: inline;
}

/* Tablet and up: Medium logo, show full text */
@media (min-width: 768px) {
    .nnsr-logo-brand {
        width: 110px;
    }

    .header-text h1 {
        font-size: 2.3rem;
    }

    .header-text p {
        font-size: 1.15rem;
    }

    .nnsr-title-full-text-desktop-v2 {
        display: inline;
    }

    .nnsr-title-mobile-abbr-v2 {
        display: none;
    }
}

/* Desktop: Much larger logo and text */
@media (min-width: 1200px) {
    .nnsr-logo-brand {
        width: 140px;
    }

    .header-text h1 {
        font-size: 2.8rem;
    }

    .header-text p {
        font-size: 1.25rem;
    }
}

.header-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: #ffd700;
    color: #1e7e34;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Standard Navigation */
.nav-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.nav-links>li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #1e7e34;
    background: rgba(40, 167, 69, 0.1);
}

.nav-link.active {
    color: #1e7e34;
    background: rgba(40, 167, 69, 0.15);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #28a745;
    border-radius: 2px;
}

/*slide*/
#slider {
    width: 600px;
    height: 400px;
    overflow: hidden;
}

.slide {
    width: 600px;
    height: 400px;
    float: left;
}



/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown .nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(40, 167, 69, 0.1);
    color: #1e7e34;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    text-align: center;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers horizontally */
    text-align: center;
    margin-bottom: 3rem;
}


.section-header h2 {
    font-size: 2.5rem;
    color: #1e7e34;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Overview Section */
.overview-section {
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    position: relative;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.card-icon {
    /* background: linear-gradient(135deg, #1e7e34, #28a745); */
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.overview-card:hover .card-icon {
    transform: scale(1.1);
}

.overview-card h3 {
    color: #1e7e34;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #28a745;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.overview-card:hover .read-more {
    color: #1e7e34;
}

.overview-card:hover .read-more i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .overview-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .overview-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}




/* Terms Section */
.terms-section {
    background: white;
}

.terms-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #e8f5e8;
}

.accordion-header h3 {
    color: #1e7e34;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.accordion-header i:last-child {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i:last-child {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
    max-height: 500px;
}

.accordion-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Legal Section */
.legal-section {
    background: #f8f9fa;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.legal-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e7e34;
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.legal-card h3 {
    color: #1e7e34;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contact-card h3 {
    color: #1e7e34;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-links a {
    color: #1e7e34;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}



/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 2rem 0;
    }

    .price {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}


@media (max-width: 480px) {
    .right-menu-toggle {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
    }

    .menu-header {
        padding: 15px;
    }

    .menu-section h4 {
        padding: 10px 15px;
        font-size: 12px;
    }

    .menu-link {
        padding: 10px 15px;
        font-size: 13px;
    }

    .logo {
        font-size: 1.3rem;
        padding: 0.6rem;
    }

    .header-links {
        flex-direction: column;
        width: 100%;
    }

    .btn-link,
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Enhanced Main Content Spacing */
.main-content {
    margin-top: 0;
    padding-top: 2rem;
}

/* Improved Section Spacing */
.section {
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }

    .main-content {
        padding-top: 1rem;
    }
}


/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 14px;
    }

    .dropdown-menu {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        justify-content: flex-end;
    }

    .logo {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 1.8rem;
    }

    .header-text p {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.3rem;
        padding: 0.6rem;
    }

    .header-links {
        flex-direction: column;
        width: 100%;
    }

    .btn-link,
    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .mobile-nav {
        width: 100%;
        left: -100%;
    }
}

/* Enhanced Main Content Spacing */
.main-content {
    margin-top: 0;
    padding-top: 2rem;
}

/* Improved Section Spacing */
.section {
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }

    .main-content {
        padding-top: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #1e7e34;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #28a745;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.faq-answer a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: #1e7e34;
    font-weight: 600;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 0.75rem;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0.75rem;
    }
}


/* Library Services Section Styles */
.library-section {
    background: #f8f9fa;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.library-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.library-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.library-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e7e34, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.library-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.library-card h3 {
    color: #1e7e34;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.library-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.library-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.library-card ul li {
    padding: 0.5rem 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.library-card ul li:last-child {
    border-bottom: none;
}

.library-card ul li:before {
    content: "•";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.library-card ul li strong {
    color: #1e7e34;
    font-weight: 600;
}

.library-contact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #28a745;
}

.library-contact h3 {
    color: #1e7e34;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #495057;
    font-weight: 500;
}

.contact-details i {
    color: #28a745;
    margin-right: 0.5rem;
}

.contact-details a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Library Services Responsive Design */
@media (max-width: 768px) {
    .library-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .library-card {
        padding: 1.5rem;
    }

    .contact-details {
        flex-direction: column;
        text-align: center;
    }

    .library-contact {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .library-card {
        padding: 1rem;
    }

    .library-card .card-icon {
        width: 50px;
        height: 50px;
    }

    .library-card .card-icon i {
        font-size: 1.2rem;
    }

    .library-contact {
        padding: 1rem;
    }
}



/* Propose New Standard Section */
.propose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.propose-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.propose-info h3 {
    color: #1e7e34;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.propose-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.proposal-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #495057;
    font-weight: 500;
}

.propose-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.propose-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1e7e34;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #28a745;
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #495057;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #28a745;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.submit-btn,
.reset-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.reset-btn {
    background: #6c757d;
    color: white;
}

.reset-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Proposal Process Section */
.proposal-process {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.proposal-process h3 {
    color: #1e7e34;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-content h4 {
    color: #1e7e34;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design for Propose Section */
@media (max-width: 768px) {
    .propose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .submit-btn,
    .reset-btn {
        width: 100%;
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .propose-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .propose-section {
        padding: 2rem 0;
    }

    .propose-form-container {
        padding: 1rem;
    }

    .step {
        padding: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}


/* Catalogue Section Styles */
.catalogue-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid #28a745;
}

.catalogue-section h3 {
    color: #1e7e34;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.catalogue-description {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.catalogue-usage {
    margin-bottom: 2rem;
}

.catalogue-usage h4 {
    color: #1e7e34;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.catalogue-usage ul {
    list-style: none;
    padding: 0;
}

.catalogue-usage li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.catalogue-usage li:last-child {
    border-bottom: none;
}

.catalogue-collections h4 {
    color: #1e7e34;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.collection-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.collection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.collection-icon i {
    font-size: 1.5rem;
    color: white;
}

.collection-card h5 {
    color: #1e7e34;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.collection-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.collection-count {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Media Holdings Styles */
.holdings-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.holdings-column h5 {
    color: #1e7e34;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    border-bottom: 2px solid #28a745;
    padding-bottom: 0.3rem;
}

.holdings-column ul {
    list-style: none;
    padding: 0;
}

.holdings-column li {
    padding: 0.3rem 0;
    color: #495057;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f3f4;
}

.holdings-column li:last-child {
    border-bottom: none;
}

/* Responsive Design for Catalogue */
@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .holdings-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .catalogue-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .catalogue-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .collection-card {
        padding: 1rem;
    }

    .collection-icon {
        width: 50px;
        height: 50px;
    }

    .collection-icon i {
        font-size: 1.2rem;
    }
}


/* ===== CUSTOMER SERVICE SECTIONS STYLES ===== */

/* Client Enquiry Form Section */
.enquiry-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.enquiry-info h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.help-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.help-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.help-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

.help-item h4 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.help-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.enquiry-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Customer Feedback Form Section */
.feedback-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.feedback-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.feedback-info h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.feedback-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #28a745;
}

.benefit-item span {
    font-weight: 500;
    color: #2c5530;
}

.feedback-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.rating-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.rating-section h4 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.rating-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-item label {
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating .star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #ffc107;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: white;
}

.radio-option:hover {
    border-color: #28a745;
    background: #f8f9fa;
}

.radio-option input[type="radio"] {
    margin: 0;
}

.radio-option input[type="radio"]:checked+span {
    color: #28a745;
    font-weight: 600;
}

/* Questionnaires Section */
.questionnaires-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 80px 0;
}

.survey-intro {
    text-align: center;
    margin-bottom: 50px;
}

.survey-intro h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.survey-intro p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.surveys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.survey-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.survey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.survey-card.completed::before {
    background: linear-gradient(90deg, #6c757d, #adb5bd);
}

.survey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.survey-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.survey-header h4 {
    color: #2c5530;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.survey-header i {
    color: #28a745;
    margin-right: 10px;
}

.survey-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.survey-status.active {
    background: #d4edda;
    color: #155724;
}

.survey-status.upcoming {
    background: #fff3cd;
    color: #856404;
}

.survey-status.completed {
    background: #d1ecf1;
    color: #0c5460;
}

.survey-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.survey-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.survey-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #6c757d;
}

.survey-meta i {
    color: #28a745;
}

.survey-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.survey-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.5;
}

/* Service Charter Section */
.charter-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.charter-intro {
    text-align: center;
    margin-bottom: 50px;
}

.charter-intro h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.charter-intro p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.charter-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.charter-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.charter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.charter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.charter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.charter-header i {
    font-size: 2.5rem;
    color: #28a745;
}

.charter-header h3 {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.charter-content-text p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.charter-content-text ul {
    list-style: none;
    padding: 0;
}

.charter-content-text li {
    padding: 8px 0;
    color: #6c757d;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.charter-content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-commitments {
    margin-bottom: 60px;
}

.service-commitments h3 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.commitment-item {
    display: flex;
    gap: 25px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.commitment-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon i {
    font-size: 2rem;
    color: white;
}

.commitment-details h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.commitment-details p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.commitment-details ul {
    list-style: none;
    padding: 0;
}

.commitment-details li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.commitment-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.performance-standards {
    margin-bottom: 50px;
}

.performance-standards h3 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.standards-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.standards-table table {
    width: 100%;
    border-collapse: collapse;
}

.standards-table th {
    background: linear-gradient(135deg, #2c5530, #28a745);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.standards-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
}

.standards-table tr:last-child td {
    border-bottom: none;
}

.standards-table tr:hover {
    background: #f8f9fa;
}

.achievement {
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
}

.achievement.excellent {
    background: #d4edda;
    color: #155724;
}

.achievement.good {
    background: #d1ecf1;
    color: #0c5460;
}

.feedback-commitment {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.feedback-commitment h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.feedback-commitment p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.contact-option i {
    font-size: 1.5rem;
    color: #28a745;
}

.contact-option h4 {
    color: #2c5530;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.contact-option p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

/* Enhanced Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c5530;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
}

.btn-outline:hover {
    background: #28a745;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Customer Service Sections */
@media (max-width: 768px) {

    .enquiry-content,
    .feedback-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .help-categories {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .rating-categories {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .surveys-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .charter-sections {
        grid-template-columns: 1fr;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .commitment-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .form-actions {
        flex-direction: column;
    }

    .standards-table {
        overflow-x: auto;
    }

    .standards-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {

    .enquiry-form,
    .feedback-form {
        padding: 25px;
    }

    .survey-card,
    .charter-card {
        padding: 20px;
    }

    .commitment-item {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .charter-intro h3,
    .survey-intro h3 {
        font-size: 1.6rem;
    }
}


/* NNSP User Guide Styles */
.user-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.nnsp-intro {
    margin-bottom: 60px;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.intro-text {
    flex: 1;
}

.intro-visual {
    flex: 1;
}

.nnsp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.nnsp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nnsp-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nnsp-features .feature-item i {
    font-size: 1.5rem;
    color: #28a745;
}

.getting-started {
    margin-bottom: 60px;
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #28a745;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.step-action {
    margin-top: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.account-types {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.account-type {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.account-type i {
    color: #28a745;
}

.plan-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.plan-option {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.plan-option strong {
    color: #28a745;
    display: block;
    margin-bottom: 5px;
}

.nav-section {
    margin-bottom: 40px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-features {
    margin-top: 20px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feature-row .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.feature-row .feature-item i {
    color: #28a745;
    font-size: 1.3rem;
    margin-top: 3px;
}

.feature-details strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.menu-structure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.menu-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #28a745;
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.menu-header i {
    color: #28a745;
    font-size: 1.2rem;
}

.menu-subitems {
    list-style: none;
    padding: 0;
}

.menu-subitems li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.menu-subitems li:before {
    content: "•";
    color: #28a745;
    margin-right: 8px;
}

.search-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.search-method {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #28a745;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.method-header i {
    color: #28a745;
    font-size: 1.5rem;
}

.search-example {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.example-item {
    margin: 8px 0;
    font-family: monospace;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.filter-group ul {
    margin: 10px 0;
    padding-left: 20px;
}

.browse-structure {
    margin-top: 15px;
}

.browse-path {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.path-example {
    font-family: monospace;
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 10px;
    border-left: 4px solid #28a745;
}

.account-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.account-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #28a745;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-header i {
    color: #28a745;
    font-size: 1.5rem;
}

.features-detailed {
    display: grid;
    gap: 40px;
}

.feature-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-category h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 2px solid #28a745;
    padding-bottom: 10px;
}

.feature-category h4 i {
    color: #28a745;
    font-size: 1.3rem;
}

.feature-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-details .feature-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.feature-details .feature-item strong {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.trouble-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.trouble-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.trouble-category h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 10px;
}

.trouble-category h4 i {
    color: #dc3545;
    font-size: 1.3rem;
}

.trouble-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.trouble-item h5 {
    color: #dc3545;
    margin-bottom: 10px;
}

.solution {
    margin-top: 10px;
}

.solution ul {
    margin: 10px 0;
    padding-left: 20px;
}

.support-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support-intro {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.support-option {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #28a745;
}

.support-icon {
    text-align: center;
    margin-bottom: 20px;
}

.support-icon i {
    font-size: 2.5rem;
    color: #28a745;
}

.support-content h4 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.support-content p {
    text-align: center;
    margin-bottom: 15px;
    color: #666;
}

.contact-details {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
}

.contact-details a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.practice-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #28a745;
}

.practice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.practice-header i {
    color: #28a745;
    font-size: 1.5rem;
}

.practice-content ul {
    list-style: none;
    padding: 0;
}

.practice-content li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.practice-content li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for NNSP User Guide */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        gap: 20px;
    }

    .nnsp-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .start-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-structure {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .account-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trouble-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .practice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nnsp-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .nnsp-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-card {
        padding: 20px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* International Standards Best Practices Styles */
.international-practices {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.international-practices h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.international-practices h3 i {
    margin-right: 0.5rem;
    color: #28a745;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.practice-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #28a745;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.practice-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.practice-header i {
    font-size: 1.5rem;
    color: #28a745;
    margin-right: 0.75rem;
    width: 30px;
    text-align: center;
}

.practice-header h4 {
    color: #2c5530;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.practice-content p {
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.practice-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.practice-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
    line-height: 1.5;
}

.practice-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.global-alignment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.global-alignment h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.global-alignment h4 i {
    margin-right: 0.5rem;
    color: #28a745;
}

.alignment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.alignment-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.alignment-item i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.alignment-item span {
    color: #495057;
    font-weight: 500;
}

/* Responsive Design for International Practices */
@media (max-width: 768px) {
    .international-practices .practice-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .international-practices .practice-card {
        padding: 1rem;
    }

    .international-practices {
        padding: 1rem;
        margin: 2rem 0;
    }

    .international-practices h3 {
        font-size: 1.5rem;
    }

    .international-practices .alignment-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .international-practices .practice-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .international-practices .practice-header i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    .international-practices .global-alignment {
        padding: 1rem;
    }
}















.son-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.son-hero-slider-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 45%;
    /* 16:9 aspect ratio - adjust as needed */
}

.son-hero-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.son-hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.son-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Green Overlay */
.son-hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 126, 52, 0.85) 0%, rgba(40, 167, 69, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Slide Content */
.son-hero-slide-content {
    max-width: 800px;
    text-align: left;
    color: white;
    z-index: 10;
}

.son-hero-slide-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.son-hero-slide-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.son-hero-slide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
    color: #1e7e34;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.son-hero-slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.son-hero-slide-button:active {
    transform: translateY(-1px);
}

.son-hero-slide-button i {
    font-size: 1rem;
}

/* Navigation Arrows */
.son-hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
}

.son-hero-slider:hover .son-hero-nav-arrow {
    opacity: 1;
}

.son-hero-nav-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.son-hero-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.son-hero-nav-arrow i {
    font-size: 22px;
    color: #1e7e34;
}

.son-hero-nav-arrow.son-hero-prev {
    left: 24px;
}

.son-hero-nav-arrow.son-hero-next {
    right: 24px;
}

/* Slide Indicators */
.son-hero-slide-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
}

.son-hero-indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.son-hero-indicator-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.son-hero-indicator-dot.son-hero-active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Autoplay Toggle Button */
.son-hero-autoplay-toggle {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
}

.son-hero-slider:hover .son-hero-autoplay-toggle {
    opacity: 1;
}

.son-hero-autoplay-toggle:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.son-hero-autoplay-toggle i {
    font-size: 16px;
    color: #1e7e34;
}

/* Progress Bar */
.son-hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(30, 126, 52, 0.3);
    width: 100%;
    z-index: 15;
}

.son-hero-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .son-hero-slider-wrapper {
        padding-bottom: 56.25%;
        /* 16:9 for tablets */
    }

    .son-hero-slide-heading {
        font-size: 2.5rem;
    }

    .son-hero-slide-text {
        font-size: 1.1rem;
    }

    .son-hero-nav-arrow {
        width: 48px;
        height: 48px;
    }

    .son-hero-nav-arrow i {
        font-size: 18px;
    }

    .son-hero-nav-arrow.son-hero-prev {
        left: 16px;
    }

    .son-hero-nav-arrow.son-hero-next {
        right: 16px;
    }
}

@media (max-width: 768px) {
    .son-hero-slider-container {
        margin: 20px auto;
        padding: 0 12px;
    }

    .son-hero-slider {
        border-radius: 12px;
    }

    .son-hero-slider-wrapper {
        padding-bottom: 100%;
        /* Square for mobile */
    }

    .son-hero-slide-overlay {
        padding: 20px;
    }

    .son-hero-slide-heading {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .son-hero-slide-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .son-hero-slide-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .son-hero-nav-arrow {
        width: 40px;
        height: 40px;
        opacity: 1;
        /* Always visible on mobile */
    }

    .son-hero-nav-arrow i {
        font-size: 16px;
    }

    .son-hero-nav-arrow.son-hero-prev {
        left: 12px;
    }

    .son-hero-nav-arrow.son-hero-next {
        right: 12px;
    }

    .son-hero-autoplay-toggle {
        top: 12px;
        right: 12px;
        padding: 10px 16px;
        font-size: 12px;
        opacity: 1;
        /* Always visible on mobile */
    }

    .son-hero-slide-indicators {
        bottom: 16px;
        padding: 10px 16px;
    }

    .son-hero-indicator-dot {
        width: 8px;
        height: 8px;
    }

    .son-hero-indicator-dot.son-hero-active {
        width: 24px;
    }
}

/* Demo Section */
.demo-info {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.demo-info h2 {
    color: #1e7e34;
    margin-bottom: 20px;
}

.demo-info ul {
    list-style: none;
    padding: 0;
}

.demo-info li {
    padding: 10px 0;
    color: #555;
}

.demo-info li i {
    color: #28a745;
    margin-right: 10px;
}







/* Navigation Wrapper */
.primary-nav-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.primary-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Desktop Navigation */
.primary-nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}

.primary-nav-item {
    position: relative;
}

.primary-nav-anchor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
}

.primary-nav-anchor:hover {
    color: #1e7e34;
    background: rgba(40, 167, 69, 0.1);
}

.primary-nav-anchor.nav-active {
    color: #1e7e34;
    background: rgba(40, 167, 69, 0.15);
    font-weight: 600;
}

.primary-nav-anchor.nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #28a745;
    border-radius: 2px;
}

.primary-nav-chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Styles */
.primary-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Desktop hover - only on desktop screens */
@media (min-width: 1025px) {
    .primary-nav-item:hover .primary-nav-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .primary-nav-item:hover .primary-nav-chevron {
        transform: rotate(180deg);
    }
}


/* NNSP Hero Section with Ultra-Specific Classes */
.nigerian-national-standards-platform-hero-section-wrapper {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
}

.nigerian-national-standards-platform-hero-content-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nigerian-national-standards-platform-hero-main-title-heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.nigerian-national-standards-platform-hero-description-paragraph {
    font-size: clamp(0.938rem, 2.5vw, 1.125rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.95;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.nigerian-national-standards-platform-hero-call-to-action-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
}

.nigerian-national-standards-platform-hero-action-button-link {
    padding: 0.875rem 2rem;
    font-size: clamp(0.938rem, 2vw, 1rem);
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.nigerian-national-standards-platform-hero-primary-action-button {
    background-color: #155724;
    color: white;
}

.nigerian-national-standards-platform-hero-primary-action-button:hover {
    background-color: #0d3d1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nigerian-national-standards-platform-hero-secondary-action-button {
    background-color: #6c757d;
    color: white;
}

.nigerian-national-standards-platform-hero-secondary-action-button:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
    .nigerian-national-standards-platform-hero-section-wrapper {
        padding: 3rem 1rem;
    }

    .nigerian-national-standards-platform-hero-call-to-action-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
        padding: 0 1.5rem;
    }

    .nigerian-national-standards-platform-hero-action-button-link {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
    .nigerian-national-standards-platform-hero-section-wrapper {
        padding: 2.5rem 1rem;
    }

    .nigerian-national-standards-platform-hero-main-title-heading {
        margin-bottom: 0.875rem;
        padding: 0 0.5rem;
    }

    .nigerian-national-standards-platform-hero-description-paragraph {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .nigerian-national-standards-platform-hero-call-to-action-buttons-wrapper {
        padding: 0 0.5rem;
        gap: 0.75rem;
    }

    .nigerian-national-standards-platform-hero-action-button-link {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.938rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .nigerian-national-standards-platform-hero-section-wrapper {
        padding: 2rem 0.75rem;
    }

    .nigerian-national-standards-platform-hero-call-to-action-buttons-wrapper {
        padding: 0 0.25rem;
    }

    .nigerian-national-standards-platform-hero-action-button-link {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
}

/* When dropdown is open via click */
.primary-nav-item.dropdown-open .primary-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.primary-nav-item.dropdown-open .primary-nav-chevron {
    transform: rotate(180deg);
}

.primary-nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.primary-nav-dropdown-link i {
    width: 20px;
    color: #28a745;
}

.primary-nav-dropdown-link:hover {
    background: rgba(40, 167, 69, 0.1);
    color: #1e7e34;
}

.primary-nav-divider {
    height: 1px;
    background: #e9ecef;
    margin: 0.5rem 0;
}

/* Mobile Hamburger */


/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    body.mobile-menu-open {
        overflow: hidden;
    }
}


/* NNSP Hero Section Styles */
.nnsp-hero-section {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nnsp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nnsp-hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 0 1rem;
}

.nnsp-hero-description {
    font-size: clamp(0.938rem, 2.5vw, 1.125rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.95;
    padding: 0 1rem;
}

.nnsp-hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.nnsp-cta-btn {
    padding: 0.875rem 2rem;
    font-size: clamp(0.938rem, 2vw, 1rem);
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
    text-align: center;
}

.nnsp-cta-primary {
    background-color: #155724;
    color: white;
}

.nnsp-cta-primary:hover {
    background-color: #0d3d1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nnsp-cta-secondary {
    background-color: #6c757d;
    color: white;
}

.nnsp-cta-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .nnsp-hero-section {
        padding: 3rem 1rem;
    }

    .nnsp-hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }

    .nnsp-cta-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nnsp-hero-section {
        padding: 2.5rem 0.75rem;
    }

    .nnsp-hero-title {
        margin-bottom: 0.875rem;
    }

    .nnsp-hero-description {
        margin-bottom: 1.5rem;
    }

    .nnsp-cta-btn {
        max-width: 100%;
    }
}

/* --- Stats Section Unique Styles --- */

.stats-wrapper-1 {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.stats-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* --- Each Stat Card --- */
.stat-card-1 {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 28px 24px;
    gap: 18px;
    transition: all 0.3s ease;
}

.stat-card-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* --- Icon --- */
.stat-icon-1 {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #007b55, #5ad790);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

/* --- Text Content --- */
.stat-content-1 {
    flex: 1;
}

.stat-content-1 h3 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.stat-content-1 p {
    font-size: 15px;
    color: #666;
    margin: 4px 0 0;
}

/* --- Optional Counter Styling --- */
.counter-1 {
    color: #007b55;
    font-weight: 800;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .stat-card-1 {
        padding: 22px 18px;
        gap: 14px;
    }

    .stat-icon-1 {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-content-1 h3 {
        font-size: 24px;
    }
}


.news-wrapper {
    margin: 3rem auto;
    position: relative;
    padding: 0 2rem;

}

/* News Section Header */
.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.news-header p {
    font-size: 16px;
    color: var(--gray-600);
    text-transform: capitalize;
}

/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.news-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

/* News Card */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: calc(33.333% - 20px);
    max-width: 360px;
    /* Change from 200px to 360px */
    flex-shrink: 0;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Date Section */
.news-date {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
    padding: 18px;
    text-align: center;
    color: white;
}

.news-date h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.news-date p {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Content Section */
.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-tag {
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    color: var(--son-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.news-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-content>p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--son-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.read-more i {
    font-size: 12px;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--son-green);
    color: var(--son-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--son-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--son-green);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .news-header h2 {
        font-size: 28px;
    }

    .news-card {
        min-width: 100%;
    }

    .slider-container {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* NNSR Unique Header Branding */
/* NNSR Unique Header Branding - BALANCED SIZES */

.nnsr-logo-brand {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.nnsr-header-title-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff00;
    line-height: 1.2;
    transition: font-size 0.3s ease;
}

.nnsr-header-tagline {
    font-size: 0.8rem;
    color: #00ff00;
    margin: 5px 0 0 0;
    line-height: 1.4;
    transition: font-size 0.3s ease;
    opacity: 0.95;
}

/* Mobile: Compact column layout */
.logo-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.header {
    padding: 1.5rem 0;
}

/* Hide full text on mobile, show abbreviation */
.nnsr-title-full-text-desktop-v2 {
    display: none !important;
}

.nnsr-title-mobile-abbr-v2 {
    display: inline !important;
}

/* Tablet and up - Show full text, row layout */
@media (min-width: 769px) {
    .nnsr-logo-brand {
        height: 75px;
    }

    .nnsr-header-title-main {
        font-size: 1.6rem;
    }

    .nnsr-header-tagline {
        font-size: 0.95rem;
    }

    .header {
        padding: 2rem 0;
    }

    /* Back to row layout */
    .logo-section {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    /* Show full text, hide abbreviation */
    .nnsr-title-full-text-desktop-v2 {
        display: inline !important;
    }

    .nnsr-title-mobile-abbr-v2 {
        display: none !important;
    }
}

/* Desktop - Slightly larger */
@media (min-width: 1200px) {
    .nnsr-logo-brand {
        height: 85px;
    }

    .nnsr-header-title-main {
        font-size: 1.9rem;
    }

    .nnsr-header-tagline {
        font-size: 1.05rem;
    }
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}