/*
Theme Name: NSE
Theme URI: https://dariodavico.com
Author: Dario Davico
Author URI: https://dariodavico.com
Description: NSE - Nuove soluzioni energetiche - developed by dario davico
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.nse-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nse-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nse-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nse-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00a859;
}


.nse-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nse-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nse-nav-menu a:hover {
    color: #00a859;
}

/* Header Search */
.nse-header-search {
    position: relative;
}

.nse-header-search-form {
    display: flex;
}

.nse-header-search-input {
    padding: 0.5rem 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 200px;
}

.nse-header-search-input:focus {
    border-color: #00a859;
}

.nse-header-search-button {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    margin-left: -40px;
    transition: color 0.3s ease;
}

.nse-header-search-button:hover {
    color: #00a859;
}

/* Hero Slider */
.nse-hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.nse-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.nse-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.nse-slide.active {
    opacity: 1;
}

.nse-slide-content {
    position: absolute;
    bottom: 100px;
    left: 100px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
}

.nse-slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.nse-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.nse-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.nse-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.nse-slider-dot.active {
    background: white;
}



/* Consistency for internal pages */
.nse-page-entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.nse-page-entry-content p {
    margin-bottom: 1.5rem;
}

.nse-page-header {
    margin-bottom: 3rem;
    text-align: center;
}

/* Ensure images inside page content are responsive */
.nse-page-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}



/* Sections */
.nse-section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.nse-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.nse-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00a859;
}

/* About Section */
.nse-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nse-about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00a859;
}

/* Services Section */
.nse-services-grid {
    display: flex;
    flex-wrap: wrap; /* Permette agli elementi di andare a capo */
    gap: 2rem;
    justify-content: center; /* Centra gli elementi se l'ultima riga non è piena */
}

.nse-service-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 290px;
    max-width: 380px;
}

.nse-service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.7);
    border-color: #00a859;
}

.nse-service-icon {
    font-size: 3.5rem;
    color: #00a859;
    margin-bottom: 1.5rem;
}


/* TABLET: Forza 2 righe da 3 elementi */
@media (max-width: 1200px) {
    .nse-service-card {
        flex: 1 1 calc(33.33% - 2rem);
    }
}

/* SMARTPHONE: Forza 3 righe da 2 elementi */
@media (max-width: 900px) {
    .nse-service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

/* MOBILE PICCOLO: 1 colonna */
@media (max-width: 600px) {
    .nse-service-card {
        flex: 1 1 100%;
    }
}








/* Why Choose Us */
/* .nse-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.nse-reason-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
} */

/* ============================================
   SEZIONE WHY-US (Layout a 4 Colonne Dinamiche)
   ============================================ */
.nse-why-us {
    background-color: #ffffff; /* Sfondo bianco pulito per staccare dai servizi */
}

.nse-reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.nse-reason-card {
    flex: 1 1 calc(25% - 1.5rem); /* Forza 4 elementi per riga su Desktop */
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    text-align: left; /* Allineamento a sinistra per differenziarsi dai servizi */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Effetto bordo colorato al passaggio del mouse */
.nse-reason-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: #00a859; /* Verde NSE */
    opacity: 0;
    transition: opacity 0.3s;
}

.nse-reason-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: transparent;
    transform: translateY(-5px);
}

.nse-reason-card:hover::before {
    opacity: 1;
}

.nse-reason-card i {
    font-size: 2rem;
    color: #ff9900; /* Arancione per le icone */
    margin-bottom: 1.2rem;
}

.nse-reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.nse-reason-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* --- MEDIA QUERIES WHY-US --- */

/* Tablet: 2 righe da 3 elementi (se sono 6 totali) */
@media (max-width: 1100px) {
    .nse-reason-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* Smartphone: 3 righe da 2 elementi */
@media (max-width: 850px) {
    .nse-reason-card {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

/* Mobile: 1 colonna */
@media (max-width: 500px) {
    .nse-reason-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}



/* Partners */
.nse-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.nse-partner-logo {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nse-partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Portfolio Section */
.nse-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nse-portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.nse-portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.nse-portfolio-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.nse-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nse-portfolio-item:hover .nse-portfolio-image img {
    transform: scale(1.1);
}

.nse-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 168, 89, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nse-portfolio-item:hover .nse-portfolio-overlay {
    opacity: 1;
}

.nse-portfolio-overlay a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nse-portfolio-overlay a:hover {
    background: white;
    color: #00a859;
}

.nse-portfolio-content {
    padding: 1.5rem;
}

.nse-portfolio-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.nse-portfolio-category {
    color: #00a859;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.nse-portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.nse-portfolio-tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Contact Page */
.nse-contact-page {
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

.nse-contact-page .nse-section-title {
    margin-bottom: 1rem;
}

.nse-contact-page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.nse-contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.nse-contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.nse-contact-info-card:hover {
    transform: translateY(-5px);
}

.nse-contact-info-icon {
    font-size: 2.5rem;
    color: #00a859;
    margin-bottom: 1rem;
}

.nse-contact-map {
    height: 400px;
    margin: 4rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nse-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.nse-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.nse-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.nse-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nse-form-group {
    margin-bottom: 1.5rem;
}

.nse-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.nse-form-group input,
.nse-form-group select,
.nse-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.nse-form-group input:focus,
.nse-form-group select:focus,
.nse-form-group textarea:focus {
    outline: none;
    border-color: #00a859;
}

.nse-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.nse-submit-btn {
    background: #00a859;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
}

.nse-submit-btn:hover {
    background: #008f4c;
}

.nse-contact-info {
    padding: 1rem 0;
}

.nse-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nse-contact-icon {
    color: #00a859;
    font-size: 1.5rem;
    min-width: 30px;
}

.nse-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.nse-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00a859;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nse-social-link:hover {
    background: #008f4c;
    transform: translateY(-3px);
}

/* Footer */
.nse-footer {
    background: #333;
    color: white;
    padding: 3rem 0 2rem;
}

.nse-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

/* .nse-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.nse-footer-logo span {
    color: #ff9900;
} */

/* LOGO */

    /* --- Header Brand Identity Stacked --- */

    /* The link container */
        .nse-logo-link {
            text-decoration: none !important;
            display: block; /* Changing to block ensures it respects the flow */
            transition: transform 0.3s ease;
        }

        /* Wrapper to ensure left alignment */
        .nse-brand-wrapper {
            display: flex;
            flex-direction: column; /* Force vertical stacking */
            align-items: flex-start; /* Align both to the left */
        }

        /* NSE Text */
        .logo-text {
            line-height: 1; /* Prevents extra space below letters */
            margin-bottom: 2px; /* Small gap between logo and tagline */
        }

        .nse-logo-link .n-letter {            
            font-size: 2.2rem;
            font-weight: 800;
        }

        .nse-logo-link .se-letters {            
            font-size: 2.2rem;
            font-weight: 800;
        }

        /* Tagline positioned underneath */
        .nse-logo-link .logo-tagline {
            color: #555;
            font-size: 0.85rem;    /* Smaller text for the tagline */
            font-weight: 600;      /* Semi-bold weight to match NSE thickness */
            text-transform: none;  /* Natural casing as requested */
            white-space: nowrap;   /* Prevents it from breaking into two lines */
            display: block;        /* Ensures it takes its own line */
        }

        /* Hover Effect */
        .nse-logo-link:hover {
            transform: translateX(3px);
        }

        /* Responsive Scaling */
        @media (max-width: 768px) {
            .n-letter, .se-letters {
                font-size: 1.8rem;
            }
            .logo-tagline {
                font-size: 0.7rem;
            }
        }


    .nse-footer-logo {
        display: flex;
        flex-direction: column;
        line-height: 1.2; /* Leggermente aumentato per ospitare la terza riga */
    }

    .logo-text {
        font-size: 2.5rem;
        font-weight: 800;
        letter-spacing: -1px;
    }

    /* Colore N (Verde Sostenibile) */
    .n-letter {
        color: #00a859; 
    }

    /* Colore SE (Azzurro Energia) */
    .se-letters {
        color: #ff9900;
    }

    .logo-tagline {
        color: #ccc;
        font-size: 1rem;
        margin-top: 2px;
        font-weight: bold;
    }

    /* Nuova riga descrittiva */
    .logo-description {
        color: #ccc;
        font-size: 0.9rem;
        font-style: italic;
        margin-top: 8px; /* Crea una chiara separazione dal nome aziendale */
        max-width: 300px; /* Evita che il testo diventi troppo lungo su schermi grandi */
    }

/* END LOGO */



.nse-footer-links {
    list-style: none;
    padding: 0;
}

.nse-footer-links li {
    display: flex;         /* Creates the two-column effect */
    align-items: flex-start; /* Aligns icon with the first line of text */
    margin-bottom: 0.75rem;
}

.nse-footer-links li i {
    width: 20px;           /* Fixed width keeps all text perfectly vertical */
    margin-right: 0.75rem;
    margin-top: 4px;       /* Fine-tunes the icon's vertical centering with text */
    text-align: center;
}

.nse-footer-links li span {
    line-height: 1.4;      /* Improves readability for multi-line addresses/IDs */
}

.nse-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nse-footer-links a:hover {
    color: #00a859;
}



.nse-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* 404 Page Styles */
.nse-404-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.nse-404-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.nse-404-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: nse-404-bounce 3s ease-in-out infinite;
}

.nse-404-number {
    font-size: 8rem;
    font-weight: 800;
    color: #00a859;
    text-shadow: 3px 3px 0 rgba(0, 168, 89, 0.2);
}

.nse-404-solar {
    font-size: 6rem;
    color: #ffc107;
    animation: nse-solar-spin 10s linear infinite;
}

@keyframes nse-404-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes nse-solar-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.nse-404-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.nse-404-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.nse-404-services {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nse-404-services h3 {
    color: #00a859;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.nse-404-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.nse-404-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.nse-404-service-card:hover {
    transform: translateY(-5px);
    background: #00a859;
    color: white;
}

.nse-404-service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00a859;
    transition: all 0.3s ease;
}

.nse-404-service-card:hover i {
    color: white;
}

.nse-404-service-card span {
    font-weight: 600;
    text-align: center;
}

.nse-404-search {
    margin: 3rem 0;
}

.nse-404-search h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.nse-search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nse-search-input {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.nse-search-button {
    background: #00a859;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nse-search-button:hover {
    background: #008f4c;
}

.nse-404-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.nse-404-home-button,
.nse-404-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nse-404-home-button {
    background: #00a859;
    color: white;
}

.nse-404-home-button:hover {
    background: #008f4c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.3);
}

.nse-404-contact-button {
    background: white;
    color: #00a859;
    border: 2px solid #00a859;
}

.nse-404-contact-button:hover {
    background: #00a859;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.3);
}

/* Recent Projects Section */
.nse-404-recent {
    padding: 4rem 0;
    background: white;
}

.nse-404-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nse-404-project {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.nse-404-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.nse-404-project-image {
    height: 200px;
    overflow: hidden;
}

.nse-404-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nse-404-project:hover .nse-404-project-image img {
    transform: scale(1.1);
}

.nse-404-project-content {
    padding: 1.5rem;
}

.nse-404-project-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.nse-404-project-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.nse-404-project-link {
    display: inline-block;
    color: #00a859;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nse-404-project-link:hover {
    color: #008f4c;
}

.nse-404-no-projects {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

.nse-404-no-projects p {
    font-size: 1.2rem;
    color: #666;
}

/* Search Page Styles */
.nse-search-page {
    padding: 8rem 0 5rem;
    min-height: 70vh;
}

.nse-search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.nse-search-title {
    color: #00a859;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.nse-search-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.nse-search-result {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.nse-search-result:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.nse-search-result-title {
    margin-bottom: 1rem;
}

.nse-search-result-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nse-search-result-title a:hover {
    color: #00a859;
}

.nse-search-result-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.nse-search-result-meta {
    display: flex;
    gap: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.nse-search-result-meta i {
    margin-right: 0.5rem;
}

.nse-search-pagination {
    margin-top: 3rem;
    text-align: center;
}

.nse-no-results {
    text-align: center;
    padding: 4rem;
    background: #f9f9f9;
    border-radius: 15px;
}

.nse-no-results-icon {
    font-size: 4rem;
    color: #00a859;
    margin-bottom: 1.5rem;
}

/* Active nav link */
.nse-nav-menu a.active {
    color: #00a859;
    font-weight: 600;
    position: relative;
}

.nse-nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00a859;
}

/* Form success message */
.nse-form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

/* Loading spinner */
.fa-spinner {
    margin-right: 0.5rem;
}

/* Animation for service cards */
@keyframes nse-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.nse-service-card:hover {
    animation: nse-float 2s ease-in-out infinite;
    box-shadow: 0 15px 30px rgba(0, 168, 89, 0.2);
}

/* Portfolio Filter */
.nse-portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.nse-filter-btn {
    padding: 0.5rem 1.5rem;
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nse-filter-btn:hover,
.nse-filter-btn.active {
    background: #00a859;
    color: white;
}



/* ============================================
   PAGE TEMPLATES STYLES
   ============================================ */

/* Full Width Page */
.nse-fullwidth-page {
    padding: 8rem 0 5rem;
    min-height: 70vh;
}

.nse-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.nse-page-title {
    color: #00a859;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.nse-page-excerpt {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.nse-page-featured-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.nse-featured-img {
    width: 100%;
    height: auto;
    display: block;
}

.nse-page-text {
    max-width: 800px;
    margin: 0 auto;
}

.nse-page-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.nse-page-text h2,
.nse-page-text h3,
.nse-page-text h4 {
    color: #333;
    margin: 2rem 0 1rem;
}

.nse-page-text h2 {
    font-size: 2rem;
    color: #00a859;
}

.nse-page-text h3 {
    font-size: 1.5rem;
}

.nse-page-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e1e1;
}

.nse-page-comments {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e1e1e1;
}

/* Services Detail Page */
.nse-services-detail-page {
    padding: 8rem 0 5rem;
}

.nse-detailed-services-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.nse-detailed-service-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.nse-detailed-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.nse-detailed-service-icon {
    font-size: 3rem;
    color: #00a859;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nse-detailed-service-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.nse-service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.nse-service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nse-service-features i {
    color: #00a859;
}

.nse-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00a859;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.nse-service-cta:hover {
    gap: 1rem;
}

.nse-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nse-process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nse-process-number {
    width: 50px;
    height: 50px;
    background: #00a859;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Team Page */
.nse-team-page {
    padding: 8rem 0 5rem;
}

.nse-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.nse-team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.nse-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.nse-team-member-image {
    height: 250px;
    overflow: hidden;
}

.nse-team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nse-team-member:hover .nse-team-member-image img {
    transform: scale(1.05);
}

.nse-team-member-info {
    padding: 1.5rem;
}

.nse-team-member-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.nse-team-position {
    color: #00a859;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.nse-team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.nse-team-skill {
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.nse-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nse-value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.nse-value-icon {
    font-size: 2.5rem;
    color: #00a859;
    margin-bottom: 1rem;
}





/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.nse-about-page {
    padding: 8rem 0 5rem;
}

.nse-history-timeline {
    position: relative;
    margin: 3rem 0;
    padding-left: 30px;
}

.nse-history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #00a859;
}

.nse-history-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 20px;
}

.nse-history-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00a859;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #00a859;
}

.nse-history-year {
    font-weight: 700;
    color: #00a859;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.nse-history-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.nse-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.nse-mission-card,
.nse-vision-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.nse-mission-icon,
.nse-vision-icon {
    font-size: 3rem;
    color: #00a859;
    margin-bottom: 1.5rem;
}

.nse-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nse-certification-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.nse-certification-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.nse-certification-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.nse-team-preview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.nse-team-stat {
    text-align: center;
}

.nse-team-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a859;
}

.nse-team-stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */

.nse-testimonials-page {
    padding: 8rem 0 5rem;
}

.nse-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.nse-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.nse-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.nse-testimonial-content {
    padding: 2rem;
}

.nse-testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.nse-testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

.nse-testimonial-author {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e1e1e1;
}

.nse-testimonial-avatar {
    font-size: 2.5rem;
    color: #00a859;
    margin-right: 1rem;
}

.nse-testimonial-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.nse-testimonial-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.nse-testimonial-project {
    display: inline-block;
    background: #00a859;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.nse-success-stories {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.nse-success-story {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nse-success-image {
    height: 250px;
    overflow: hidden;
}

.nse-success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nse-success-content {
    padding: 2rem;
}

.nse-success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.nse-success-stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.nse-success-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00a859;
}

.nse-success-stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.nse-testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nse-testimonial-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nse-testimonial-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a859;
    margin-bottom: 0.5rem;
}

.nse-testimonial-stat-label {
    color: #666;
    font-weight: 600;
}

.nse-add-testimonial {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.nse-faq-page {
    padding: 8rem 0 5rem;
}

.nse-faq-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.nse-faq-search-input {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid #e1e1e1;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.nse-faq-search-input:focus {
    border-color: #00a859;
}

.nse-faq-search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #00a859;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nse-faq-search-button:hover {
    background: #008f4c;
}

.nse-faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.nse-faq-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nse-faq-category-btn:hover,
.nse-faq-category-btn.active {
    background: #00a859;
    color: white;
}

.nse-faq-category-btn i {
    font-size: 1rem;
}

.nse-faq-category-section {
    margin-bottom: 3rem;
}

.nse-faq-category-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00a859;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.nse-faq-category-title i {
    font-size: 1.2rem;
}

.nse-faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
}

.nse-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.nse-faq-question:hover {
    background: #f8f9fa;
}

.nse-faq-question.active {
    background: #f8f9fa;
    color: #00a859;
}

.nse-faq-question i {
    transition: transform 0.3s ease;
}

.nse-faq-question.active i {
    transform: rotate(180deg);
    color: #00a859;
}

.nse-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.nse-faq-answer.active {
    padding: 1.5rem;
    max-height: 1000px;
}

.nse-faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nse-faq-answer ul,
.nse-faq-answer ol {
    margin: 1rem 0 1rem 1.5rem;
}

.nse-faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.nse-faq-contact {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nse-faq-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nse-faq-resource {
    display: block;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nse-faq-resource:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: #00a859;
}

.nse-faq-resource i {
    font-size: 2.5rem;
    color: #00a859;
    margin-bottom: 1rem;
}

.nse-faq-resource span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.nse-faq-resource p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Search Highlight */
.nse-faq-highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
}



/* ============================================
   MOBILE MENU STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.nse-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nse-menu-icon {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.nse-menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #00a859;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nse-menu-bar:nth-child(1) {
    top: 0;
}

.nse-menu-bar:nth-child(2) {
    top: 8px;
}

.nse-menu-bar:nth-child(3) {
    top: 16px;
}

/* Mobile menu */
.nse-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.nse-nav-mobile.active {
    right: 0;
}

.nse-nav-mobile .nse-nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nse-nav-mobile .nse-nav-menu li {
    width: 100%;
}

.nse-nav-mobile .nse-nav-menu a {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nse-nav-mobile .nse-nav-menu a:hover,
.nse-nav-mobile .nse-nav-menu a.active {
    background: #f0f9f0;
    color: #00a859;
}

/* Mobile overlay */
.nse-mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nse-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu open state */
.nse-mobile-menu-toggle.active .nse-menu-bar:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.nse-mobile-menu-toggle.active .nse-menu-bar:nth-child(2) {
    opacity: 0;
}

.nse-mobile-menu-toggle.active .nse-menu-bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 768px) {
    /* Show mobile menu toggle */
    .nse-mobile-menu-toggle {
        display: block;
    }
    
    /* Hide desktop menu on mobile */
    .nse-nav-desktop {
        display: none;
    }
    
    /* Hide header search on mobile */
    .nse-header-search {
        display: none;
    }
    
    /* Adjust header height */
    .nse-header {
        padding: 1rem 0;
    }
    
    /* Show mobile menu when active */
    .nse-nav-mobile {
        display: block;
    }
    .nse-nav-menu {
        display: none;
    }
    
    .nse-header-search {
        display: none;
    }
    
    .nse-hero-slider {
        height: 80vh;
    }
    
    .nse-slide-content {
        left: 20px;
        right: 20px;
        bottom: 50px;
    }
    
    .nse-slide-content h1 {
        font-size: 2rem;
    }
    
    .nse-about-content,
    .nse-contact-container {
        grid-template-columns: 1fr;
    }
    
    .nse-section {
        padding: 3rem 0;
    }
    
    .nse-contact-page {
        padding: 6rem 0 3rem;
    }
    
    .nse-portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .nse-404-number {
        font-size: 5rem;
    }
    
    .nse-404-solar {
        font-size: 4rem;
    }
    
    .nse-404-title {
        font-size: 2rem;
    }
    
    .nse-404-services-grid {
        grid-template-columns: 1fr;
    }
    
    .nse-404-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .nse-404-home-button,
    .nse-404-contact-button {
        width: 100%;
        justify-content: center;
    }
    
    .nse-search-form {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .nse-search-input,
    .nse-search-button {
        border-radius: 0;
        padding: 1rem;
    }
    
    .nse-portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .nse-filter-btn {
        width: 200px;
    }
    
    .nse-fullwidth-page,
    .nse-services-detail-page,
    .nse-team-page {
        padding: 6rem 0 3rem;
    }
    
    .nse-page-title {
        font-size: 2rem;
    }
    
    .nse-detailed-service-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nse-detailed-service-icon {
        justify-content: center;
    }
    
    .nse-process-steps {
        grid-template-columns: 1fr;
    }
    
    .nse-team-grid {
        grid-template-columns: 1fr;
    }
    
    .nse-values-grid {
        grid-template-columns: 1fr;
    }


    .nse-about-page,
    .nse-testimonials-page,
    .nse-faq-page {
        padding: 6rem 0 3rem;
    }
    
    .nse-mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .nse-history-timeline {
        padding-left: 20px;
    }
    
    .nse-history-item::before {
        left: -23px;
    }
    
    .nse-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .nse-success-story {
        grid-template-columns: 1fr;
    }
    
    .nse-success-image {
        height: 200px;
    }
    
    .nse-success-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nse-testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nse-faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .nse-faq-category-btn {
        width: 250px;
        justify-content: center;
    }
    
    .nse-faq-resources {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .nse-success-stats {
        grid-template-columns: 1fr;
    }
    
    .nse-testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .nse-team-preview {
        gap: 2rem;
    }
}