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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- Shared Layout Container --- */
.nx-nav-container, 
.nx-hero-content-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header & Navigation --- */
.nx-main-nav {
    background-color: #2c323a;
    color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nx-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nx-brand-logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-logo-icon {
    background: #fff;
    color: #2c323a;
    padding: 2px 8px;
    border-radius: 4px;
    font-style: italic;
}

/* Hide desktop menu on mobile */
.nx-menu-links {
    display: none; 
    gap: 25px;
}

.nx-nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nx-nav-item:hover {
    opacity: 0.7;
}

.nx-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nx-cart-info {
    font-size: 0.9rem;
    cursor: pointer;
}

/* Contact Chip - Hidden on very small screens */
.nx-contact-chip {
    display: none;
    align-items: center;
    gap: 12px;
}

.nx-phone-icon {
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.nx-phone-details small {
    display: block;
    font-size: 0.65rem;
    color: #a0a0a0;
    text-transform: uppercase;
}

.nx-phone-details span {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
/* Hide mobile header on desktop */
.nx-mobile-header {
    display: none;
}

/* Show desktop header only on large screens */
@media (max-width: 992px) {
    .nx-main-nav {
        display: none;
    }

    .nx-mobile-header {
        display: block;
        background-color: #2c323a;
        color: #fff;
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 12px 20px;
    }

    .nx-mobile-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nx-mobile-logo {
        font-weight: 700;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Hamburger */
    .nx-toggle-checkbox {
        display: none;
    }

    .nx-hamburger-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        cursor: pointer;
    }

    .nx-hamburger-label span {
        display: block;
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
    }

    /* Sidebar */
    .nx-mobile-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #2c323a;
        padding: 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        transition: left 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
    }

    /* Show sidebar when checkbox checked */
    .nx-toggle-checkbox:checked ~ .nx-mobile-sidebar {
        left: 0;
    }

    .nx-mobile-sidebar a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
    }

    .nx-close-btn {
        font-size: 2rem;
        color: #fff;
        align-self: flex-end;
        cursor: pointer;
    }

    .nx-mobile-contact {
        margin-top: auto;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 15px;
        color: #fff;
        font-size: 0.9rem;
    }

    /* Overlay */
    .nx-mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1500;
    }

    .nx-toggle-checkbox:checked ~ .nx-mobile-overlay {
        opacity: 1;
        visibility: visible;
    }
}

/* --- Hero Section --- */
.nx-hero-wrapper {
    padding: 60px 0;
    background-color: #ffffff;
}

.nx-hero-content-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 40px;
    align-items: center;
}

.nx-hero-text-area {
    order: 2; /* Text appears below image on mobile */
    text-align: left;
}

.nx-hero-badge {
    display: inline-block;
    background-color: #4a5d73;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.nx-hero-main-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.nx-hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.nx-hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.nx-btn-primary {
    background-color: #000;
    color: #fff;
    padding: 18px 45px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%; /* Full width on mobile */
    max-width: 250px;
}

.nx-btn-video {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.nx-play-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.nx-hero-visual-area {
    order: 1; /* Image appears first on mobile */
}
.nx-hero-image-frame{
    height: 600px;
}
.nx-hero-image-frame img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    object-position: top;
}

/* --- Media Queries --- */

/* Tablet (Screens > 768px) */
@media (min-width: 768px) {
    .nx-hero-main-title {
        font-size: 3rem;
    }
    
    .nx-hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .nx-contact-chip {
        display: flex;
    }
}

/* Desktop (Screens > 1024px) */
@media (min-width: 1024px) {
    .nx-main-nav {
        padding: 25px 0;
    }

    .nx-menu-links {
        display: flex;
    }

    .nx-hero-wrapper {
        padding: 100px 0;
    }

    .nx-hero-content-grid {
        grid-template-columns: 1.1fr 0.9fr; /* Split screen */
        text-align: left;
        gap: 80px;
    }

    .nx-hero-text-area {
        order: 1;
    }

    .nx-hero-visual-area {
        order: 2;
    }

    .nx-hero-main-title {
        font-size: 4rem;
    }

    .nx-hero-cta-group {
        justify-content: flex-start;
    }

    .nx-btn-primary {
        width: auto;
    }

    .nx-hero-description {
        font-size: 1.15rem;
        max-width: 500px;
    }
}

/* Large Screens (Screens > 1400px) */
@media (min-width: 1400px) {
    .nx-hero-main-title {
        font-size: 4.5rem;
    }
}
/* Infinite Loop Carousel */
.nx-infinite-loop-parent{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.nx-carousel-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

/* --- Badge & Divider Line --- */
.nx-divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.nx-line-left, .nx-line-right {
    flex: 1;
    height: 1px;
    background-color: #333333;
}
.nx-loop-heading-pr{
    border: 2px solid #3F5370;
    position: relative;
}
.nx-loop-heading-pr h4{
    background: #3F5370;
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
    width: fit-content;
    color: white;
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}
@media (max-width: 425px){
    .nx-loop-heading-pr h4{
        width: 100%;
    }
}
.nx-loop-badge {
    background-color: #4a5d73;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    margin: 0; 
    z-index: 5;
}

/* --- The Animation Container --- */
.nx-infinite-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Creates the fade effect on the left and right sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.nx-logo-track-move {
    display: flex;
    align-items: center;
    width: max-content; /* Critical: allows content to define track width */
    gap: 80px; /* Space between each logo/dot */
    animation: nx-scroll-linear 35s linear infinite;
}

/* --- Logo & Separator Styling --- */
.nx-brand-item img {
    width: 120px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.nx-brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.nx-brand-dot {
    width: 15px;
    height: 15px;
    background-color: #d1d1d1;
    border-radius: 50%;
    border: 1px solid black;
    flex-shrink: 0;
}

/* --- Infinite Scroll Logic --- */
@keyframes nx-scroll-linear {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Moves exactly half the width of the duplicated track */
        transform: translateX(-50%);
    }
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .nx-logo-track-move {
        animation-duration: 20s; /* Faster on mobile for better UX */
        gap: 50px;
    }
    
    .nx-brand-item img {
        height: 50px;
        width: 50px;
    }
    
    .nx-loop-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
    }
}

/* Pause animation on hover for accessibility */
.nx-infinite-slider:hover .nx-logo-track-move {
    animation-play-state: paused;
}
/* About Us Section */
/* --- About Us Styling --- */
.nx-about-wrapper {
    padding: 100px 0;
    background: #fff;
}
@media (max-width: 425px){
    .nx-about-wrapper{
        padding: 20px;
    }
}
.nx-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nx-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.nx-about-label {
    background: #4a5d73;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.nx-about-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.nx-about-subtext {
    max-width: 650px;
    margin: 0 auto;
    color: #666;
}

.nx-about-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.nx-about-img-frame img {
    width: 100%;
    border-radius: 12px;
    height: 450px;
    object-fit: cover;
}

.nx-stats-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nx-stat-card {
    background: #4a5d73;
    padding: 40px 30px;
    border-radius: 12px;
    color: #fff;
}

.nx-fa-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.nx-stat-val {
    font-size: 2rem;
    margin-bottom: 8px;
}

.nx-stat-desc {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
}

.nx-about-action-row {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.nx-btn-dark {
    background: #000;
    color: #fff;
    padding: 18px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.nx-direct-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nx-icon-circle {
    width: 50px;
    height: 50px;
    background: #4a5d73;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nx-contact-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.nx-contact-number {
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- Responsive Media Queries --- */
@media (min-width: 1024px) {
    .nx-about-main-grid {
        grid-template-columns: 1fr 1.1fr;
    }
}

@media (max-width: 768px) {
    .nx-about-headline { font-size: 1.8rem; }
    .nx-stats-box-grid { grid-template-columns: 1fr; }
    .nx-about-img-frame img { height: 300px; }
}
/* --- Services Section Styles --- */
.nx-services-wrapper {
    background-color: #232730; /* Dark background from screenshot */
    color: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.nx-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nx-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.nx-services-badge {
    background-color: #4a5d73;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
}

.nx-services-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.nx-services-lead {
    max-width: 600px;
    margin: 0 auto;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Services List Items */
.nx-services-list {
    display: flex;
    flex-direction: column;
}

.nx-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nx-service-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nx-service-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.nx-service-number {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 5px;
}

.nx-service-name {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.nx-service-description {
    color: #a0a0a0;
    max-width: 500px;
    line-height: 1.6;
}

/* Arrow Button Styling */
.nx-service-link {
    width: 60px;
    height: 60px;
    background-color: #4a5d73;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nx-service-item:hover .nx-service-link {
    background-color: #ffffff;
    color: #232730;
    transform: rotate(-45deg); /* Subtle animation on hover */
}

/* --- Responsive Breakpoints --- */

@media (max-width: 992px) {
    .nx-services-main-title {
        font-size: 2.2rem;
    }
    
    .nx-service-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nx-service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nx-service-link {
        align-self: flex-end; /* Keeps arrow visible on the right on mobile */
    }

    .nx-service-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .nx-services-main-title {
        font-size: 1.8rem;
    }

    .nx-service-name {
        font-size: 1.5rem;
    }
}
/* --- Feedback Section Styles --- */
.nx-feedback-wrapper {
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.nx-feedback-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.nx-feedback-header {
    text-align: center;
    margin-bottom: 60px;
}

.nx-feedback-badge {
    background-color: #4a5d73;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.nx-dot-icon {
    font-size: 0.5rem;
}

.nx-feedback-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    color: #1a1a1a;
}

/* --- Grid Layout --- */
.nx-feedback-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 20px;
}

.nx-feedback-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Card Styling --- */
.nx-testimonial-card {
    background-color: #4a5d73; /* Muted Navy from screenshot */
    border-radius: 15px;
    color: #ffffff;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.nx-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.nx-avatar-circle {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #4a5d73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.nx-user-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.nx-user-role {
    font-size: 0.85rem;
    opacity: 0.8;
}

.nx-testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}
.nx-testimonial-card.small-card{
    height: 50%;
}

/* --- Featured Card Specifics --- */
.nx-testimonial-card.featured-card {
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nx-ceo-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    color: #333;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.nx-featured-img-frame {
    width: 100%;
    height: 350px;
}

.nx-featured-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.nx-testimonial-text.featured-text {
    padding: 30px 30px 10px 30px;
    text-align: center;
    font-size: 1.1rem;
}

.nx-featured-stats {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nx-f-stat {
    display: flex;
    flex-direction: column;
}

.nx-stat-big {
    font-size: 2.2rem;
    font-weight: 700;
}

.nx-stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --- Responsive Breakpoints --- */

@media (min-width: 1024px) {
    .nx-feedback-grid {
        grid-template-columns: 1fr 1.2fr 1fr; /* Triple column desktop */
        align-items: stretch;
    }
    
    .nx-featured-img-frame {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nx-feedback-main-title {
        font-size: 2rem;
    }
    
    .nx-stat-big {
        font-size: 1.8rem;
    }
}
/* --- Pricing Section Styles --- */
.nx-pricing-section {
    background-color: #232730; /* Dark background to match image */
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.nx-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nx-pricing-header {
    margin-bottom: 50px;
}

.nx-pricing-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.nx-price-badge {
    background: rgba(74, 93, 115, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-dot-small { font-size: 0.5rem; color: #fff; }

.nx-price-intro-text {
    max-width: 400px;
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.5;
}

.nx-price-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    max-width: 600px;
    line-height: 1.2;
}

/* --- Billing Toggle --- */
.nx-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    font-weight: 500;
}

.nx-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.nx-switch input { opacity: 0; width: 0; height: 0; }

.nx-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #4a5d73;
    transition: .4s;
    border-radius: 34px;
}

.nx-slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .nx-slider { background-color: #fff; }
input:checked + .nx-slider:before { transform: translateX(24px); background-color: #4a5d73; }

/* --- Pricing Grid & Cards --- */
.nx-price-grid {
    background: rgba(74, 93, 115, 0.2);
    padding: 40px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0; /* Cards touch as per design */
    align-items: stretch;
}

.nx-price-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nx-price-card:last-child { border-right: none; }

.nx-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.nx-plan-icon { font-size: 1.8rem; }

.nx-popular-tag {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.nx-plan-name { font-size: 1.6rem; margin-bottom: 15px; }

.nx-plan-desc { color: #a0a0a0; font-size: 0.9rem; margin-bottom: 30px; line-height: 1.5; }

.nx-plan-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nx-currency { font-size: 2.5rem; font-weight: 700; }
.nx-period { font-size: 1rem; color: #a0a0a0; }

.nx-features-list { flex-grow: 1; margin-bottom: 40px; }
.nx-feat-title { font-weight: 600; margin-bottom: 20px; font-size: 0.9rem; }

.nx-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #d1d1d1;
}

.nx-feat-item i { color: #fff; font-size: 1rem; }

/* Buttons */
.nx-btn-outline, .nx-btn-filled {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.nx-btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.nx-btn-outline:hover { background: #fff; color: #232730; }

/* Featured Plan (White Card) */
.featured-plan {
    background-color: #ffffff;
    color: #232730;
    border-radius: 15px;
    transform: scale(1.05);
    z-index: 10;
    border: none;
}

.featured-plan .nx-plan-desc, .featured-plan .nx-period { color: #555; }
.featured-plan .nx-plan-price { border-color: rgba(0,0,0,0.1); }
.featured-plan .nx-feat-item { color: #333; }
.featured-plan .nx-feat-item i { color: #232730; }
.featured-plan .nx-popular-tag { border-color: #232730; }

.nx-btn-filled {
    background-color: #232730;
    color: #fff;
    border: 1px solid #232730;
}

/* --- Responsive Tweak --- */
@media (max-width: 1024px) {
    .nx-price-grid { gap: 30px; background: transparent; padding: 0; }
    .nx-price-card { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 15px; }
    .featured-plan { transform: scale(1); }
}

@media (max-width: 768px) {
    .nx-price-main-title { font-size: 2rem; }
    .nx-pricing-top-row { flex-direction: column; }
}
/* Inquiry Section */
/* --- Inquiry Section Styling --- */
.nx-inquiry-wrapper {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-inquiry-container {
    max-width: 900px; /* Narrower container for better readability */
    margin: 0 auto;
    padding: 0 20px;
}

.nx-inquiry-header {
    text-align: center;
    margin-bottom: 60px;
}

.nx-inquiry-badge {
    background-color: #4a5d73;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.nx-inquiry-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Inquiry Cards */
.nx-inquiry-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nx-inquiry-card {
    background-color: #4a5d73; /* The signature slate-blue */
    border-radius: 12px;
    padding: 35px 40px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.nx-inquiry-card:hover {
    transform: translateY(-3px);
}

.nx-inquiry-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.nx-inquiry-question {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 20px;
}

/* Icon Toggle Circle */
.nx-inquiry-icon {
    width: 34px;
    height: 34px;
    background-color: #ffffff;
    color: #4a5d73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.nx-inquiry-answer {
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.nx-inquiry-answer p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .nx-inquiry-title {
        font-size: 2.2rem;
    }

    .nx-inquiry-card {
        padding: 25px;
    }

    .nx-inquiry-question {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nx-inquiry-title {
        font-size: 1.8rem;
    }
    
    .nx-inquiry-icon {
        width: 28px;
        height: 28px;
    }
}
/* --- Hide the actual checkbox --- */
.nx-faq-check {
    display: none;
}

/* --- Base Item Styling --- */
.nx-inquiry-item {
    background-color: #4a5d73; /* Signature Slate Blue */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.nx-inquiry-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    cursor: pointer;
    user-select: none;
}

.nx-inquiry-question {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0;
}

/* --- Icon Rotation Logic --- */
.nx-inquiry-icon {
    width: 34px;
    height: 34px;
    background: #fff;
    color: #4a5d73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.nx-inquiry-icon i {
    transition: transform 0.4s ease;
}

/* --- Content Animation Logic --- */
.nx-inquiry-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 40px;
}

.nx-inquiry-answer {
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.nx-inquiry-answer p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* --- THE TOGGLE MAGIC --- */

/* When checked: Expand the content */
.nx-faq-check:checked ~ .nx-inquiry-content {
    max-height: 500px; /* Large enough value to fit text */
}

/* When checked: Rotate the icon or change symbol */
.nx-faq-check:checked ~ .nx-inquiry-top .nx-inquiry-icon {
    transform: rotate(45deg); /* Turns Plus into an 'X' or just indicates open */
    background-color: #232730;
    color: #fff;
}

/* Optional: change the plus to a minus visually if using specific FontAwesome icons */
.nx-faq-check:checked ~ .nx-inquiry-top .nx-inquiry-icon i::before {
    content: "\f068"; /* FontAwesome Unicode for 'minus' */
}
/* --- Insights Section Styling --- */
.nx-insights-wrapper {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Logic */
.nx-insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.nx-insights-badge {
    background-color: #4a5d73;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
}

.nx-insights-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 450px;
    margin: 0;
}

.nx-insights-lead {
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 300px;
}

.nx-btn-black {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.nx-btn-black:hover {
    transform: translateY(-3px);
}

/* Blog Grid & Cards */
.nx-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.nx-blog-card {
    background-color: #4a5d73; /* The signature blue from screenshot */
    border-radius: 15px;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.nx-blog-card:hover {
    transform: translateY(-10px);
}

.nx-blog-img-box {
    position: relative;
    height: 250px;
    padding: 15px;
}

.nx-blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.nx-category-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nx-blog-content {
    padding: 0 30px 30px 30px;
}

.nx-publish-date {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.nx-blog-headline {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.nx-read-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.nx-read-more i {
    transition: transform 0.3s ease;
}

.nx-blog-card:hover .nx-read-more i {
    transform: translateX(5px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nx-insights-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .nx-insights-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nx-blog-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Final CTA Styling --- */
.nx-cta-section {
    background-color: #000000;
    padding: 120px 20px;
    text-align: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-cta-badge {
    border: 1px solid #ffffff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 30px;
}

.nx-cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
}

.nx-cta-text {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.nx-btn-white {
    background-color: #ffffff;
    color: #000000;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.nx-btn-white:hover {
    transform: scale(1.05);
}

/* --- Footer Styling --- */
.nx-main-footer {
    background-color: #232730; /* Dark Charcoal */
    color: #ffffff;
    padding: 100px 0 0 0;
    font-family: 'Inter', sans-serif;
}

.nx-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.nx-footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.nx-footer-about {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.nx-footer-heading {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.nx-footer-links li {
    margin-bottom: 15px;
}

.nx-footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
}

.nx-footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Newsletter Form */
.nx-footer-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.nx-footer-form input {
    background: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    flex-grow: 1;
}

.nx-footer-form button {
    background: #7d7d7d;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

/* Bottom Bar */
.nx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
}

.nx-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #666;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nx-footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .nx-cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .nx-footer-container {
        grid-template-columns: 1fr;
    }
    .nx-footer-form {
        flex-direction: column;
    }
    .nx-cta-title {
        font-size: 1.8rem;
    }
}
/* --- About Us Hero Styling --- */
.nx-about-hero {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.nx-about-hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.nx-about-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.nx-about-mission {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.nx-about-hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.nx-btn-black {
    background: #000;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.nx-btn-outline-dark {
    background: transparent;
    color: #000;
    border: 1px solid #ddd;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Featured Image */
.nx-about-hero-img {
    width: 100%;
    margin-bottom: 60px;
}

.nx-about-hero-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Metric Grid */
.nx-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.nx-metric-card {
    background-color: #4a5d73; /* Signature Brand Blue */
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.nx-metric-card:hover {
    transform: translateY(-10px);
}

.nx-metric-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.nx-metric-val {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.nx-metric-label {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.85;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 768px) {
    .nx-about-main-title { font-size: 2.5rem; }
    .nx-about-hero-img img { height: 300px; }
    .nx-about-hero-btns { flex-direction: column; align-items: stretch; }
}
/* --- Success Section Styles --- */
.nx-success-wrapper {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Column */
.nx-success-image {
    flex: 1;
}

.nx-success-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Content Column */
.nx-success-content {
    flex: 1.2;
}

.nx-success-badge {
    background-color: #4a5d73; /* Brand Slate Blue */
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
}

.nx-success-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.nx-success-lead {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Grid Logic */
.nx-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.nx-value-item {
    padding-top: 20px;
    border-top: 1px solid #eee; /* Thin horizontal line from screenshot */
}

.nx-value-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.nx-value-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.nx-btn-black {
    background: #000;
    color: #fff;
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.nx-btn-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .nx-success-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .nx-success-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .nx-values-grid {
        grid-template-columns: 1fr;
    }
}
/* Team Slider */
.nx-team-wrapper {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nx-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.nx-team-badge {
    background-color: #4a5d73;
    color: #fff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.nx-team-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Slider Mechanism */
.nx-slider-view {
    position: relative;
    overflow: hidden;
}

.nx-team-track {
    display: flex;
    width: 200%; /* Holds 2 sets of 3 */
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.nx-team-card {
    flex: 0 0 16.6666%; /* 1/6th of total track = 3 items per view */
    padding: 0 15px;
    box-sizing: border-box;
}

/* Radio Control Logic */
input[name="nx-team-ctrl"] { display: none; }
#nx-p1:checked ~ .nx-team-track { transform: translateX(0%); }
#nx-p2:checked ~ .nx-p1 { transform: translateX(0%); } /* Safety */
#nx-p2:checked ~ .nx-team-track { transform: translateX(-50%); }

/* Member Styling */
.nx-member-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 20px;
    background-color: #f4f4f4;
}

.nx-member-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Social Hover Logic --- */
.nx-social-overlay {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

/* Show icons when the image box is hovered */
.nx-member-img-box:hover .nx-social-overlay {
    top: 50%;
    opacity: 1;
}

.nx-social-overlay a {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.nx-social-overlay a:hover {
    background: #fff;
    color: #000;
}

.nx-member-info h3 { font-size: 1.5rem; margin-bottom: 5px; }
.nx-member-info p { color: #666; font-size: 0.95rem; }

/* Dots */
.nx-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.nx-slider-dots label {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

#nx-p1:checked ~ .nx-slider-dots label[for="nx-p1"],
#nx-p2:checked ~ .nx-slider-dots label[for="nx-p2"] {
    background: #1a1a1a;
    width: 30px;
    border-radius: 10px;
}

/* Mobile: Show 1 at a time */
@media (max-width: 991px) {
    .nx-team-track { width: 600%; }
    .nx-team-card { flex: 0 0 100%; }
}
/* --- Awards Section Styling --- */
.nx-awards-section {
    background-color: #232730; /* Dark Charcoal from your theme */
    color: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.nx-awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nx-awards-header {
    text-align: center;
    margin-bottom: 70px;
}

.nx-awards-badge {
    background-color: #4a5d73; /* Brand Slate Blue */
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.nx-awards-title {
    font-size: 3rem;
    font-weight: 700;
}

/* Layout Grid */
.nx-awards-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.nx-awards-media{
    height: 100%;
}
.nx-awards-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Awards List Styling */
.nx-awards-list {
    display: flex;
    flex-direction: column;
}

.nx-award-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    transition: 0.3s;
}

.nx-award-item:last-child {
    border-bottom: none;
}

.nx-award-item:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.nx-award-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.nx-award-date {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.nx-award-org {
    font-size: 0.9rem;
    color: #7d7d7d;
    font-weight: 500;
}

.nx-award-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nx-awards-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nx-awards-title {
        font-size: 2.2rem;
    }
}
/* --- CTA Section Styling --- */
.nx-cta-section-sr {
    padding: 80px 0;
    background-color: #ffffff; /* Page background */
    font-family: 'Inter', sans-serif;
}

.nx-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nx-cta-box {
    background-color: #4a5d73; /* Signature Slate Blue */
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(74, 93, 115, 0.2);
}

.nx-cta-subtext {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.nx-cta-title {
    font-size: 4.5rem; /* Large impact heading */
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

/* Button Styling */
.nx-cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nx-cta-btn:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-5px);
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .nx-cta-title {
        font-size: 2.8rem;
    }
    
    .nx-cta-box {
        padding: 50px 20px;
    }
    
    .nx-cta-subtext {
        font-size: 1rem;
    }
}
/* --- Services Hero Styling --- */
.nx-services-hero {
    padding: 100px 0 60px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Content Area */
.nx-services-text-box {
    text-align: left;
    margin-bottom: 60px;
}

.nx-services-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.nx-services-subtext {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Buttons */
.nx-services-hero-btns {
    display: flex;
    gap: 15px;
}

.nx-service-btn-black {
    background: #000;
    color: #fff;
    padding: 16px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.nx-service-btn-black:hover {
    background: #333;
    transform: translateY(-2px);
}

.nx-service-btn-outline {
    background: #fff;
    color: #000;
    padding: 16px 35px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.nx-service-btn-outline:hover {
    background: #f9f9f9;
    border-color: #bbb;
}

/* Hero Image Styling */
.nx-services-hero-img {
    width: 100%;
}

.nx-services-hero-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nx-services-main-title { font-size: 2.8rem; }
    .nx-services-hero-img img { height: 400px; }
}

@media (max-width: 768px) {
    .nx-services-hero { padding: 60px 0; }
    .nx-services-main-title { font-size: 2.2rem; }
    .nx-services-hero-btns { flex-direction: column; }
    .nx-service-btn-black, .nx-service-btn-outline { width: 100%; text-align: center; }
}
/* --- Technology Section Styling --- */
.nx-tech-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.nx-tech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.nx-tech-badge {
    background-color: #4a5d73; /* Brand Slate Blue */
    color: #fff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
}

.nx-tech-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.nx-tech-lead {
    color: #666;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* Tech Grid Logic */
.nx-tech-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.nx-tech-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Tech Circles */
.nx-tech-card {
    width: 200px;
    height: 200px;
    background-color: #f7f8fa; /* Very light gray circle */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
}

.nx-tech-card:hover {
    transform: translateY(-10px);
    background-color: #edf0f5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.nx-tech-icon {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.nx-tech-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

/* Font Awesome adjustment (if using text/logo instead) */
.nx-tech-name:last-child {
    font-family: 'Inter', sans-serif;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nx-tech-title { font-size: 2.5rem; }
    .nx-tech-card { width: 160px; height: 160px; }
}

@media (max-width: 600px) {
    .nx-tech-row { gap: 15px; }
    .nx-tech-card { width: 140px; height: 140px; }
    .nx-tech-name { font-size: 0.9rem; }
}
/* --- Benefit Section Styling --- */
.nx-benefit-section {
    background-color: #1a1d23; /* Dark Charcoal background */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.nx-benefit-container {
    display: flex;
    min-height: 600px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

/* Left Image Side */
.nx-benefit-media {
    flex: 1;
    height: 100%;
}

.nx-benefit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Content Side */
.nx-benefit-content {
    flex: 1;
    padding: 80px;
    max-width: 600px;
}

.nx-benefit-badge {
    background-color: #d1d5db; /* Light gray badge from screenshot */
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.nx-benefit-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nx-benefit-lead {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* List Styling */
.nx-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.nx-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.nx-benefit-icon {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 3px;
}

.nx-benefit-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.nx-benefit-info p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nx-benefit-container {
        flex-direction: column;
    }
    
    .nx-benefit-media {
        width: 100%;
        height: 400px;
    }
    
    .nx-benefit-content {
        padding: 60px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .nx-benefit-title {
        font-size: 2.2rem;
    }
}
/* FAQs */
.nx-faq-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.nx-faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.nx-faq-badge {
    background-color: #4a5d73;
    color: #fff;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.nx-faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.nx-faq-intro { color: #666; line-height: 1.6; }

/* Grid Layout */
.nx-faq-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

/* Left CTA Box */
.nx-faq-cta-box {
    background-color: #445369; /* Dark Slate from your brand */
    padding: 50px 40px;
    border-radius: 15px;
    color: #fff;
    height: fit-content;
}

.nx-faq-cta-title { font-size: 1.8rem; margin-bottom: 20px; }
.nx-faq-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.2); margin-bottom: 30px; }
.nx-faq-cta-text { margin-bottom: 40px; opacity: 0.9; line-height: 1.6; }

.nx-faq-connect-btn {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* --- Accordion Logic --- */
.nx-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nx-faq-input { display: none; } /* Hide checkboxes */

.nx-faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4a5d73; /* Muted Blue */
    color: #fff;
    padding: 22px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.nx-faq-label:hover { background-color: #3e4e61; }

/* The + and - Icon */
.nx-faq-icon::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

/* Expand Content when checkbox is checked */
.nx-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
    margin-top: -5px; /* Blend with label */
}

.nx-faq-answer p {
    padding: 25px 30px;
    color: #444;
    line-height: 1.7;
}

/* Functional Toggles */
.nx-faq-input:checked ~ .nx-faq-answer {
    max-height: 300px; /* Large enough to fit text */
}

.nx-faq-input:checked ~ .nx-faq-label .nx-faq-icon::before {
    content: '−'; /* Change + to - */
}

.nx-faq-input:checked ~ .nx-faq-label {
    border-radius: 10px 10px 0 0;
}

/* Responsive */
@media (max-width: 992px) {
    .nx-faq-content-grid { grid-template-columns: 1fr; }
    .nx-faq-title { font-size: 2.2rem; }
}
/* Testimonial */
/* --- Testimonial Section Styling --- */
.nx-testimonial-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.nx-testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.nx-testimonial-badge {
    background-color: #4a5d73; /* Brand Slate Blue */
    color: #fff;
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
}

.nx-testimonial-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.nx-testimonial-intro {
    color: #555;
    line-height: 1.6;
}

/* Grid Layout */
.nx-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.nx-testimonial-card-sr {
    background-color: #f8f9fa; 
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nx-star-rating {
    color: #ffc107; /* Gold stars */
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.nx-testimonial-text-sr {
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Author Section */
.nx-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nx-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nx-author-info strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.nx-author-info span {
    font-size: 0.85rem;
    color: #777;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nx-testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nx-testimonial-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nx-testimonial-grid {
        grid-template-columns: 1fr;
    }
}
.nx-testimonial-view {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.nx-testimonial-track-auto {
    display: flex;
    gap: 20px;
    width: 133.33%; /* 4 cards total, 3 visible = 4/3 * 100% */
    animation: slideAuto 12s infinite ease-in-out; /* Adjust timing here */
}

.nx-testimonial-card-sr {
    flex: 0 0 25%; 
    padding: 20px;
    box-sizing: border-box;
}

/* Keyframes for the 3-item view transition */
@keyframes slideAuto {
    0%, 20% { transform: translateX(0); } /* Show first 3 */
    25%, 45% { transform: translateX(-8.33%); } /* Slight nudge */
    50%, 70% { transform: translateX(-16.66%); } /* Next set */
    75%, 95% { transform: translateX(-25%); } /* End */
    100% { transform: translateX(0); } /* Loop back */
}

/* Pause on hover so users can read the feedback */
.nx-testimonial-track-auto:hover {
    animation-play-state: paused;
}

/* Standard Card Styles from previous design */
.nx-testimonial-card-sr {
    background-color: #f8f9fa;
    border-radius: 20px;
}
/* --- Hero Styling --- */
.nx-project-hero {
    padding: 100px 0 60px;
    font-family: 'Inter', sans-serif;
}

.nx-hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nx-hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; }
.nx-hero-desc { font-size: 1.1rem; color: #555; max-width: 600px; line-height: 1.6; margin-bottom: 40px; }

.nx-hero-btns { display: flex; gap: 15px; }
.nx-btn-dark { background: #000; color: #fff; padding: 16px 35px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; }
.nx-btn-white { background: #fff; color: #000; padding: 16px 35px; border-radius: 8px; border: 1px solid #ddd; font-weight: 600; cursor: pointer; }

/* --- Portfolio Carousel --- */
.nx-portfolio-section { padding: 80px 0; background: #fff; }
.nx-portfolio-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.nx-portfolio-badge {
    background-color: #4a5d73;
    color: #fff;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.nx-flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.nx-portfolio-main-title { font-size: 3rem; font-weight: 700; }

/* Navigation Buttons */
.nx-carousel-nav {
    display: flex;
    background: #232730;
    border-radius: 50px;
    padding: 10px 20px;
    gap: 20px;
}

.nx-nav-btn {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.nx-nav-btn:hover { color: #4a5d73; }

/* Carousel Viewport */
.nx-carousel-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for clean look */
}

.nx-carousel-viewport::-webkit-scrollbar { display: none; }

.nx-carousel-track {
    display: flex;
    gap: 30px;
}

/* Pause on hover */
.nx-carousel-track:hover { animation-play-state: paused; }

.nx-project-card {
    flex: 0 0 calc(50% - 15px); /* Show 2 slides at a time */
    scroll-snap-align: start;
    font-family: 'Inter', sans-serif;
}

.nx-project-img {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.nx-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.nx-project-card:hover img { transform: scale(1.05); }

.nx-img-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 5px;
}

.nx-project-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.nx-project-card p { color: #666; font-size: 0.95rem; }


/* Responsive */
@media (max-width: 768px) {
    .nx-project-card { flex: 0 0 100%; }
    .nx-hero-title { font-size: 2.5rem; }
}
/* --- Hero Styling --- */
.nx-contact-hero {
    padding: 80px 0 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
}

.nx-contact-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; }
.nx-contact-desc { font-size: 1.1rem; color: #444; max-width: 800px; line-height: 1.6; }

/* --- Form Section Styling --- */
.nx-form-section {
    background-color: #445369; /* Exact Slate Blue from screenshot */
    padding: 100px 0;
    color: white;
    font-family: 'Inter', sans-serif;
}

.nx-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

/* Image Column */
.nx-form-image { flex: 1; }
.nx-form-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

/* Form Column */
.nx-form-content { flex: 1.2; }

.nx-form-badge {
    background: white;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.nx-form-main-title { font-size: 3rem; margin-bottom: 40px; font-weight: 600; }

/* Input Styling */
.nx-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.nx-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.nx-input-group label { font-size: 0.9rem; opacity: 0.9; }

.nx-input-group input, 
.nx-input-group textarea {
    background: #f8f9fa; /* Light off-white inputs */
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    outline: none;
}

.nx-input-group textarea {
    height: 150px;
    resize: none;
}

/* Button */
.nx-submit-btn {
    background: #000;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.nx-submit-btn:hover { background: #222; transform: translateY(-2px); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .nx-form-container { flex-direction: column; }
    .nx-form-image img { height: 400px; }
    .nx-form-row { flex-direction: column; }
}
/* --- Contact Info Styling --- */
.nx-info-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.nx-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.nx-info-card {
    background-color: #445369; /* Exact Slate Blue */
    padding: 40px;
    border-radius: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.nx-info-card:hover {
    transform: translateY(-10px);
}

/* White Icon Box */
.nx-info-icon {
    background-color: #ffffff;
    color: #1a1a1a;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.nx-info-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.nx-info-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.nx-info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .nx-info-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nx-info-container {
        grid-template-columns: 1fr;
    }
    .nx-info-card {
        padding: 30px;
    }
}
