/* About us */

/* =========================================
   GENERAL STYLES & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #1a1a1a;
    line-height: 1.5;
}

/* header */
/* =========================================
   1. ABOUT US HEADER
   ========================================= */
.ab-h1-wrapper {
    width: 100%;
    background: #fff;
    padding: 0 5%;
}

.ab-h1-actions{
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-h1-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #f8f8f8;
}

.ab-h1-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.ab-h1-menu {
    display: flex;
    gap: 30px;
}

.ab-h1-menu a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.ab-h1-menu a:hover { color: #000; }

.ab-h1-btn-black {
    background: #000;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* mobile responsive header */
/* Sidebar Default Styles */
.ab-toggle-btn {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #000;
}

.ab-mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Hidden state */
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 30px;
    transition: 0.4s ease;
    box-shadow: -10px 0 20px rgba(0,0,0,0.05);
}

.ab-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    display: none;
}

/* Sidebar Toggle Logic */
#ab-nav-check:checked ~ .ab-mobile-sidebar {
    right: 0;
}
#ab-nav-check:checked ~ .ab-sidebar-overlay {
    display: block;
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-sidebar {
    font-size: 30px;
    cursor: pointer;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
}

/* Responsive Breakpoint */
@media (max-width: 991px) {
    .ab-h1-menu, .desktop-only {
        display: none;
    }
    .ab-toggle-btn {
        display: block;
    }
    .ab-h1-hero h1 {
        font-size: 34px;
    }
}
@media (max-width: 991px) {
    .ab-h1-actions svg {
        display: none !important;
    }
}
/*  */
/*  */
.ab-h1-hero {
    text-align: center;
    padding: 100px 0 80px 0;
}

.ab-h1-sub {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.ab-h1-hero h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.ab-h1-hero p {
    font-size: 18px;
    color: #666;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.ab-h1-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    gap: 10px;
    font-weight: 500;
}

/* =========================================
   2. TESTIMONIALS (6 CARDS GRID)
   ========================================= */
.tm-section-main {
    background: #fff;
    padding: 80px 5%;
    width: 100%;
}

.tm-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tm-card-item {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.tm-card-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tm-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tm-user-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tm-user-flex img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.tm-user-flex strong { font-size: 15px; }
.tm-user-flex span { color: #888; font-size: 13px; }

.tm-x-svg { width: 18px; height: 18px; fill: #000; }

.tm-btn-center {
    display: block;
    margin: 0 auto;
    background: #000;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

/* =========================================
   3. FAQ SECTION
   ========================================= */
.faq-v4-wrapper {
    padding: 80px 5%;
    background: #fff;
}

.faq-v4-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
}

.faq-v4-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-v4-tab {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #999;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.faq-v4-tab.active { color: #000; }

.faq-v4-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

/* =========================================
   4. RESOURCES SECTION
   ========================================= */
.res-v5-wrapper {
    padding: 80px 5%;
    background: #fff;
}

.res-v5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.res-v5-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.res-v5-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.res-v5-card:hover img { transform: scale(1.05); }

.res-v5-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================
   5. NEWSLETTER & DASHBOARD
   ========================================= */
.cta-v6-wrapper {
    background: #3f2a8d;
    padding: 100px 5% 0 5%;
    color: #fff;
    text-align: center;
}

.cta-v6-form {
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    max-width: 500px;
    margin: 40px auto 80px auto;
}

.cta-v6-form input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    outline: none;
    font-size: 15px;
}

.cta-v6-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.cta-v6-preview {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.3);
}

.cta-v6-preview img {
    width: 100%;
    display: block;
}

/* =========================================
   6. FOOTER SECTION
   ========================================= */
.ft-v7-wrapper {
    padding: 80px 5% 30px 5%;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.ft-v7-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.ft-v7-brand { flex: 1.2; min-width: 250px; }

.ft-v7-socials {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.ft-v7-socials a {
    color: #000;
    font-size: 20px;
    transition: 0.3s;
}

.ft-v7-socials a:hover {
    transform: translateY(-3px);
    color: #3f2a8d;
}

.ft-v7-links-group {
    display: flex;
    gap: 60px;
    flex: 2;
    justify-content: flex-end;
}

.ft-v7-col h4 { margin-bottom: 25px; font-size: 16px; font-weight: 700; }
.ft-v7-col ul { list-style: none; }
.ft-v7-col ul li { margin-bottom: 12px; }
.ft-v7-col ul li a { text-decoration: none; color: #666; font-size: 14px; transition: 0.3s; }
.ft-v7-col ul li a:hover { color: #000; }

.ft-v7-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-v7-bottom-links { display: flex; gap: 20px; }
.ft-v7-bottom-links a, .ft-v7-copy { font-size: 13px; color: #888; text-decoration: none; }

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================= */
@media (max-width: 1024px) {
    .ab-h1-hero h1 { font-size: 50px; }
    .tm-grid-layout, .res-v5-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-v4-layout { grid-template-columns: 1fr; gap: 40px; }
    .ft-v7-links-group { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .tm-grid-layout, .res-v5-grid { grid-template-columns: 1fr; }
    .ft-v7-container, .ft-v7-bottom { flex-direction: column; gap: 30px; }
    .ft-v7-links-group { flex-wrap: wrap; }
    .cta-v6-form { flex-direction: column; background: transparent; padding: 0; }
    .cta-v6-form input, .cta-v6-form button { width: 100%; border-radius: 8px; margin-bottom: 10px; }
}


/* team member */
.nx-bento-section {
    width: 100%;
    /* padding: 80px 0; */
    background-color: #ffffff;
}

.nx-wide-container {
    max-width: 1350px; /* Aapki required width */
    margin: 0 auto;
    padding: 0 40px; /* Standard side spacing */
    display: flex;
    gap: 20px;
    height: 650px; /* Container height to allow floating */
    align-items: stretch;
}

.nx-bento-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Alignment Helpers */
.nx-flex-start { justify-content: flex-end; } /* Images ko top par rakhega */
.nx-flex-end { justify-content: flex-end; }     /* Images ko bottom par push karega */

.nx-img-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.nx-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Precise Heights from Image Layout */
.tall { height: 460px; }
.medium { height: 350px; }
.extra-tall { height: 520px; }

/* Stat Box in Column 3 */
.nx-stat-box {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 40px 10px;
    text-align: center;
}

.nx-stat-box h3 {
    font-size: 38px;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.nx-stat-box p {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nx-wide-container { height: auto; flex-wrap: wrap; }
    .nx-bento-col { flex: 1 1 calc(33% - 20px); }
}

@media (max-width: 600px) {
    .nx-bento-col { flex: 1 1 100%; }
    .tall, .medium, .extra-tall { height: 300px; }
}


/* meet the team behind */
/* Section Wrapper */
.nx-work-info-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

/* Container matching your 1350px requirement */
.nx-custom-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px; /* Header jaisi left-right spacing */
}

/* Text Alignment & Styling */
.nx-work-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto; /* Bottom margin for space before image */
}

.nx-upper-title {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.nx-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.nx-sub-paragraph {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Image Wrapper with Rounded Corners */
.nx-feature-img-wrapper {
    width: 100%;
    border-radius: 24px; /* Image ke corners rounded hain */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nx-full-width-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Tablet & Mobile */
@media (max-width: 768px) {
    .nx-main-heading {
        font-size: 32px;
    }
    
    .nx-custom-container {
        padding: 0 20px;
    }

    .nx-feature-img-wrapper {
        border-radius: 12px;
    }
}
/*  */


/* Grid section */
.nx-benefits-new {
    width: 100%;
    /* padding: 60px 0; */
    background-color: #fff;
    display: flex;
    justify-content: center; /* Poora section center karne ke liye */
}

.nx-custom-wrapper {
    max-width: 1350px; /* Aapki fixed width */
    width: 100%;
    margin: 0 auto;
    padding: 0 40px; /* Header jaisa padding */
    box-sizing: border-box;
}

.nx-benefits-flex {
    display: flex;
    flex-wrap: wrap; /* Takay responsive rahay */
    gap: 20px;
    justify-content: center; /* Cards ko horizontal center karne ke liye */
}

.nx-card-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 Cards per row */
    max-width: calc(33.333% - 20px);
    background-color: #f8f9fb;
    border-radius: 16px;
    padding: 30px; /* Spacing kam kar di taake bottom khali na lagay */
    box-sizing: border-box;
    min-height: 140px; /* Sirf itni height jitni zaroorat hai */
}

.nx-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.nx-card-top h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.nx-card-top img {
    width: 35px; /* Real icon size */
    height: 35px;
    object-fit: contain;
}

.nx-card-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    max-width: 85%; /* Text ko icon se door rakhne ke liye */
}

/* Responsive fixes */
@media (max-width: 1024px) {
    .nx-card-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nx-card-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .nx-custom-wrapper {
        padding: 0 20px;
    }
}
/*  */


/* Location */
/* Section Background and Padding */
.nx-jobs-section {
    background-color: #f4f7f9;
    padding: 100px 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
    margin-top: 50px;
    margin-bottom: 50px;
}

.nx-custom-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Header Text Styling */
.nx-jobs-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.nx-jobs-main-title {
    font-size: 44px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nx-jobs-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Job Cards Container */
.nx-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Job Card */
.nx-job-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nx-job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nx-job-info {
    flex: 1;
}

.nx-job-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.nx-job-meta {
    display: flex;
    gap: 60px;
}

.nx-meta-item span {
    display: block;
    font-size: 12px;
    color: #a0a0a0;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.nx-meta-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Black Button Style */
.nx-btn-details {
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.nx-btn-details:hover {
    background-color: #333;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nx-job-meta { gap: 30px; }
    .nx-jobs-main-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .nx-job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 30px;
    }
    .nx-job-meta {
        flex-wrap: wrap;
        gap: 20px;
    }
    .nx-btn-details {
        width: 100%;
        text-align: center;
    }
}
/*  */


/* audience section */
.nx-team-section {
    /* padding: 100px 0; */
    background-color: #ffffff; /* Clean white background */
}

.nx-team-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.nx-team-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.nx-team-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Grid Layout */
.nx-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns as per image */
    gap: 30px;
}

.nx-team-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.nx-team-img {
    position: relative;
    aspect-ratio: 4/5; /* Card ki shape image jaisi rakhi hai */
}

.nx-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Info Box over Image */
.nx-member-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nx-info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.nx-info-content span {
    font-size: 13px;
    color: #888;
}

.nx-social-icons {
    display: flex;
    gap: 12px;
    color: #999;
    font-size: 14px;
}

.nx-social-icons i {
    cursor: pointer;
    transition: 0.3s;
}

.nx-social-icons i:hover {
    color: #000;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nx-team-grid { grid-template-columns: repeat(2, 1fr); }
    .nx-team-main-title { font-size: 34px; }
}

@media (max-width: 768px) {
    .nx-team-grid { grid-template-columns: 1fr; }
    .nx-member-info { padding: 15px; bottom: 15px; left: 15px; right: 15px; }
}
/*  */

/* cta section */
/* CTA Section Styling */
.nx-cta-section {
    background-color: #4a3aff; /* Purple Background jaisa image mein hai */
    padding: 100px 0 0 0; /* Niche padding 0 rakhi hai image overlap ke liye */
    text-align: center;
    overflow: hidden;
    position: relative;
}

.nx-cta-content {
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: #ffffff;
}

.nx-cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.nx-cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Form Styling */
.nx-cta-form {
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    max-width: 550px;
    margin: 0 auto;
}

.nx-cta-form input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
}

.nx-cta-form button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.nx-cta-form button:hover {
    background-color: #333;
}

/* Overlapping Dashboard Image */
.nx-cta-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: -150px; /* Isse image niche se overlap hogi */
}

.nx-cta-dashboard img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .nx-cta-title { font-size: 36px; }
    .nx-cta-section { padding-top: 70px; }
    .nx-cta-dashboard { margin-bottom: -100px; padding: 0 20px; }
}

@media (max-width: 600px) {
    .nx-cta-form {
        flex-direction: column;
        background: transparent;
        gap: 15px;
    }
    .nx-cta-form input {
        border-radius: 10px;
    }
    .nx-cta-form button {
        width: 100%;
        padding: 15px;
    }
    .nx-cta-title { font-size: 28px; }
}
/*  */

/* cta section */
.nx-cta-outer-box {
    /* background-color: #f8fafc; */
    padding: 80px 0;
    width: 100%;
}

.nx-cta-purple-card {
    background-color: #4a3aff;
    max-width: 1350px;
    margin: 0 auto;
    width: 92%; /* Equal gap on left and right */
    border-radius: 10px;
    padding-top: 70px;
    text-align: center;
    position: relative;
    display: flex; /* Added for vertical centering of content */
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.nx-cta-content {
    max-width: 650px;
    color: #ffffff;
    padding: 0 20px;
    margin-bottom: 50px;
}

.nx-cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Image Container Jo Width ko Center Rakhega */
.nx-cta-img-container {
    width: 90%; /* Image box ki width yahan se control karein */
    max-width: 1100px;
    margin: 0 auto -60px auto; /* Margin auto center rakhta hai aur -60px overlap deta hai */
    display: flex;
    justify-content: center;
}

.nx-cta-img-container img {
    width: 110%; /* Image apne container ke mutabiq 100% hogi */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    display: block;
    object-fit: cover;
    
}

/* Responsive Fix */
@media (max-width: 991px) {
    .nx-cta-purple-card { width: 95%; padding-top: 50px; }
    .nx-cta-img-container { width: 95%; margin-bottom: -40px; }
    .nx-cta-title { font-size: 32px; }
}

@media (max-width: 600px) {
    .nx-cta-form { flex-direction: column; background: transparent; gap: 10px; }
    .nx-cta-form input { border-radius: 10px; background: white; }
    .nx-cta-title { font-size: 26px; }
}

/*  */

/* footer */

/* Footer Wrapper - Full Width */
.ft-v7-wrapper {
    /* background-color: #ffffff; */
    padding: 80px 5% 30px 5%;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #f0f0f0;
}

.ft-v7-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    margin-bottom: 60px;
}

/* Brand Column */
.ft-v7-brand {
    flex: 1.2;
    min-width: 250px;
}

.ft-v7-logo {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ft-v7-brand p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Social Icons - Expanded */
.ft-v7-socials {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.ft-v7-socials a {
    color: #000;
    font-size: 20px; /* Slightly larger */
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.ft-v7-socials a:hover {
    transform: translateY(-3px);
    color: #3f2a8d; /* Purple hover to match theme */
}

/* Links Columns */
.ft-v7-links-group {
    display: flex;
    gap: 60px;
    flex: 2;
    justify-content: flex-end;
}

.ft-v7-col {
    min-width: 150px;
}

.ft-v7-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-transform: capitalize;
}

.ft-v7-col ul {
    list-style: none;
    padding: 0;
}

.ft-v7-col ul li {
    margin-bottom: 15px;
}

.ft-v7-col ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: 0.3s;
}

.ft-v7-col ul li a:hover { color: #000; }

/* Bottom Bar */
.ft-v7-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-v7-bottom-links {
    display: flex;
    gap: 20px;
}

.ft-v7-bottom-links a, .ft-v7-copy {
    font-size: 13px;
    color: #888;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .ft-v7-links-group { justify-content: flex-start; gap: 40px; }
}

@media (max-width: 768px) {
    .ft-v7-container { flex-direction: column; }
    .ft-v7-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
/*  */

/*  */

/* Signup page */
/* Main Section Background */
.nx-su-section {
    background-color: #ffffff; /* Page background white */
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* The Sign Up Card */
.nx-su-card {
    background-color: #f4f7f9; /* Light gray card background as per image */
    max-width: 650px; /* Centered card width */
    margin: 0 auto;
    padding: 60px 80px;
    border-radius: 12px;
    text-align: center;
}

.nx-su-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.nx-su-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* Form Styles */
.nx-su-form {
    text-align: left;
}

.nx-su-input-group {
    margin-bottom: 25px;
}

.nx-su-input-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.nx-su-input-group input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    background-color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

/* .nx-su-input-group input:focus {
    border-color: #4a3aff;
} */

/* Checkbox Styles */
.nx-su-checkbox-group {
    margin-bottom: 30px;
}

.nx-su-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.nx-su-check-item input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.nx-su-check-item label {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.nx-su-check-item label strong {
    color: #000;
    /* text-decoration: underline; */
    cursor: pointer;
}

/* Submit Button */
.nx-su-submit-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 25px;
}

.nx-su-submit-btn:hover {
    background-color: #333;
}

/* Card Footer */
.nx-su-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}

.nx-su-footer span {
    color: #000;
}

.nx-su-footer a {
    color: #000;
    text-decoration: none;
    /* border-bottom: 1px solid #000; */
}

/* Responsive Logic */
@media (max-width: 768px) {
    .nx-su-card {
        padding: 40px 30px;
        width: 90%;
    }
    .nx-su-header h1 {
        font-size: 36px;
    }
}

/*  */
/*  */

/* login page */

/* login form */
/* Section Background */
.nx-lg-section {
    background-color: #ffffff;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    justify-content: center; /* Horizontally center card */
    align-items: center;     /* Vertically center card */
    width: 100%;
}

/* 1. Card Layout: Super Wide like About Us sections */
.nx-lg-card {
    background-color: #f4f7f9;
    width: 40%; 
    max-width: 1350px; /* About Us page ka standard size */
    margin: 0 auto;    /* Absolute centering */
    padding: 80px 40px;
    border-radius: 24px;
    box-sizing: border-box;
}

/* 2. Header: Size adjusted for better balance */
.nx-lg-header {
    text-align: center;
    margin-bottom: 50px;
}

.nx-lg-header h1 {
    font-size: 56px; /* 72px se thora kam kiya taake elegant lage */
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.nx-lg-header p {
    font-size: 16px;
    color: #666;
}

/* 3. Form Centering: Card wide rahega magar form chota aur center mein */
.nx-lg-form-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nx-lg-form {
    width: 100%;
    max-width: 420px; /* Inputs ka size elegant aur chota kar diya */
    text-align: left;
}

/* 4. Inputs & Groups */
.nx-lg-input-group {
    margin-bottom: 25px;
}

.nx-lg-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.nx-lg-input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

/* 5. Submit Button */
.nx-lg-submit-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 25px;
}

/* 6. Card Footer */
.nx-lg-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
}

.nx-lg-footer a {
    color: #000;
    text-decoration: none;
    /* border-bottom: 2px solid #000; */
}

/* Responsive Fix */
@media (max-width: 768px) {
    .nx-lg-card {
        padding: 50px 20px;
        width: 95%;
    }
    .nx-lg-header h1 {
        font-size: 42px;
    }
}
/*  */

/*  */

/* pricing plan */
/* Unique wrapper to isolate pricing styles */
.pricing-section-container {
    /* background-color: #f2f3f6; */
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.ps-header span {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ps-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin: 15px 0;
    letter-spacing: -1.5px;
}

.ps-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Toggle Switch */
.ps-toggle {
    display: inline-flex;
    background: #e9ecef;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 50px;
}

.ps-toggle button {
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.ps-toggle .active { background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.ps-toggle .inactive { background: transparent; color: #666; }

/* Pricing Grid */
.ps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ps-card {
    background: #f3f5f7;
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: 0.3s;
}

/* Highlighted Business Plan */
.ps-card.featured {
    border-color: #7c4dff; /* Purple border from image */
    position: relative;
    transform: scale(1.02);
}

.ps-card .plan-label { font-size: 14px; color: #666; margin-bottom: 10px; display: block; }
.ps-card .popular-tag { font-size: 10px; font-weight: 800; color: #888; text-transform: uppercase; margin-bottom: 5px; display: block; }
.ps-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 25px; color: #666; }
.ps-card .price { font-size: 36px; font-weight: 800; margin-bottom: 10px;  color: #666;}
.ps-card .price span { font-size: 16px; font-weight: 600; color: #666; }

.ps-card .plan-desc { font-size: 14px; color: #777; margin-bottom: 25px; line-height: 1.5; }

/* Features List */
.ps-features { list-style: none; margin-bottom: 35px; flex-grow: 1; }
.ps-features li { 
    font-size: 14px; 
    color: #1a1a1a; 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.ps-features li::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    color: #1a1a1a;
}

.ps-btn {
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.ps-btn:hover { background: #333; }

/* Responsive */
@media (max-width: 768px) {
    .ps-header h1 { font-size: 32px; }
    .ps-card.featured { transform: scale(1); }
}
/*  */


/* logo slider */

        .integrations-section {
            background-color: white;
            padding: 80px 0;
            text-align: center;
            color: #111;
        }

        .trusted-text {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 40px;
        }

        .logo-slider {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            margin-bottom: 60px;
        }

        .logo-track {
            display: flex;
            width: calc(250px * 14);
            animation: scroll 30s linear infinite;
        }

        .logo-item {
            width: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-item img {
            height: 30px;
            filter: grayscale(100%);
            opacity: 0.6;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-250px * 7));
            }
        }

        .integration-content {
            max-width: 800px;
            margin: 0 auto 60px auto;
            padding: 0 20px;
        }

        .small-badge {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-gray);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .integration-content h2 {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .integration-content p {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Unified Grid inside White Section */
        .features-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 25px;
            padding: 0 20px;
            text-align: left;
        }

        .feature-card {
            background: #f3f5f7;
            border-radius: 24px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        .visual-box {
            position: relative;
            height: 260px;
            margin-bottom: 30px;
        }

        .main-ui-card {
            background: white;
            padding: 20px;
            border-radius: 16px;
            width: 85%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .rec-tag {
            background: #e6fcf5;
            color: #20c997;
            font-size: 10px;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 700;
            float: right;
        }

        .floating-stat {
            position: absolute;
            bottom: 10px;
            right: 0;
            background: white;
            padding: 15px;
            border-radius: 16px;
            width: 180px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transform: rotate(-3deg);
        }

        .circle-visual {
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .orbit {
            position: relative;
            width: 150px;
            height: 150px;
            border: 1px dashed #ccc;
            border-radius: 50%;
        }

        .center-node {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ffeb3b;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
        }

        .dot {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #cbd5e0;
            border-radius: 50%;
        }

        .card-text h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #111;
        }

        .card-text p {
            font-size: 14px;
            color: #555;
            margin-bottom: 20px;
        }

        .link-text {
            font-size: 12px;
            font-weight: 800;
            color: #888;
            text-decoration: none;
            border-bottom: 1px solid #ddd;
            padding-bottom: 4px;
        }
/*  */

/* table section */
.nx-pc-section {
    padding: 100px 0;
    background-color: #f8fafc;
    width: 100%;
}

.nx-pc-header {
    text-align: center;
    margin-bottom: 60px;
}

.nx-pc-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.nx-pc-header p {
    color: #64748b;
    line-height: 1.6;
}

/* Table Container Styling */
.nx-pc-table-wrapper {
    background: #ffffff;
    border-radius: 20px;
    /* padding: 20px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto; /* Mobile par scroll ke liye */
}

.nx-pc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Table layout fix rakhne ke liye */
}

/* Header Styles */
.nx-pc-table thead th {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #e2e8f0;
}

.nx-pc-feature-head {
    text-align: left !important;
    width: 30%;
}

.nx-pc-sub-head td {
    padding: 15px;
    text-align: center;
    color: #64748b;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

/* Category Row */
.nx-pc-category-row td {
    background-color: #e2e8f0;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
    text-align: left;
}

/* Body Rows */
.nx-pc-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    font-size: 15px;
    color: #475569;
}

.nx-pc-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1e293b;
}

/* Checkmark Style */
.nx-pc-check {
    color: #22c55e; /* Green color */
    font-weight: bold;
    font-size: 18px;
}

/* Alternate Row Background */
.nx-pc-table tbody tr:nth-child(even):not(.nx-pc-category-row) {
    background-color: #fcfcfc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nx-pc-header h2 { font-size: 32px; }
    .nx-pc-table-wrapper { width: 95%; padding: 10px; }
}
/*  */

/* faq's section */
/* Isolated FAQ Section */
.faq-v4-wrapper {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.faq-v4-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-v4-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.faq-v4-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.6;
    text-align: left;
}

/* Layout: Sidebar + Questions */
.faq-v4-layout {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar width fixed */
    gap: 60px;
}

/* Sidebar Styling */
.faq-v4-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-v4-tab {
    font-size: 15px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    background: none;
    border: none;
    padding: 5px 0;
}

.faq-v4-tab.active {
    color: #1a1a1a;
}

/* Questions List */
.faq-v4-list {
    display: flex;
    flex-direction: column;
}

.faq-v4-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-v4-item:first-child { padding-top: 0; }

.faq-v4-question {
    font-size: 18px;
    font-weight: 500;
    color: #444;
}

/* Responsive Fix */
@media (max-width: 850px) {
    .faq-v4-layout {
        grid-template-columns: 1fr; /* Stacks on mobile */
        gap: 40px;
    }
    
    .faq-v4-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .faq-v4-tab {
        white-space: nowrap;
        padding: 5px 15px;
    }
}
/*  */

/* pricing detail page */
/* Section & Container */
.nx-pd-section {
    padding: 100px 0;
    background-color: #ffffff;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.nx-pd-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ENTERPRISE CARD (No Shadow) */
.nx-pd-enterprise-card {
    background-color: #f4f7f9;
    padding: 60px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
}

.nx-pd-left-col { flex: 2; }
.nx-pd-right-col { flex: 1; max-width: 400px; width: 100%; }

.nx-pd-left-col h2 { font-size: 40px; font-weight: 600; margin-bottom: 20px; }
.nx-pd-left-col p { color: #666; line-height: 1.6; margin-bottom: 30px; }

.nx-pd-feature-list { list-style: none; padding: 0; }
.nx-pd-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}
.nx-check-icon { color: #000; font-weight: bold; }

/* Pricing & Button */
.nx-pd-price { font-size: 48px; font-weight: 600; margin-bottom: 30px; }
.nx-pd-quantity label { display: block; font-weight: 600; margin-bottom: 10px; }
.nx-pd-quantity input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    margin-bottom: 20px;
}
.nx-pd-btn {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

/* --- POPUP LOGIC (Checkbox Hack) --- */
.nx-cart-checkbox { display: none; }

.nx-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.46);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.nx-cart-checkbox:checked ~ .nx-cart-overlay { display: flex; }

.nx-cart-popup {
    background: #fff;
    width: 95%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
}

.nx-cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.nx-cart-close { font-size: 28px; cursor: pointer; }

.nx-cart-item { background: #f8fafc; border-radius: 15px; padding: 20px; margin-bottom: 20px; }
.nx-item-title { display: block; font-weight: 700; font-size: 18px; }
.nx-item-sub { display: block; color: #666; font-size: 14px; margin: 5px 0; }
.nx-item-price-row { display: flex; justify-content: space-between; align-items: flex-end; }
.nx-item-price { font-size: 20px; font-weight: 700; }
.nx-remove-link { color: #999; text-decoration: underline; font-size: 13px; }

.nx-cart-footer { border-top: 1px solid #eee; padding-top: 20px; }
.nx-subtotal-row { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 18px; }
.nx-checkout-btn { width: 100%; background: #000; color: #fff; padding: 16px; border-radius: 12px; border: none; font-weight: 600; cursor: pointer; }

/* BASIC PLAN DETAILS */
.nx-pd-basic-details .nx-pd-group { margin-bottom: 40px; }
.nx-pd-basic-details h3 { font-size: 36px; font-weight: 600; margin-bottom: 20px; }
.nx-pd-basic-details p { line-height: 1.8; color: #333; }
.nx-pd-ordered-list { padding-left: 20px; }
.nx-pd-ordered-list li { margin-bottom: 12px; }
.nx-pd-benefit-list { list-style: none; padding: 0; }
.nx-pd-benefit-list li::before { content: "• "; font-weight: bold; }

/* Responsive */
@media (max-width: 992px) {
    .nx-pd-enterprise-card { flex-direction: column; padding: 40px; }
    .nx-pd-right-col { max-width: 100%; }
}
/*  */

/*  */

/* chekout page */


/* checkout form */
.nx-ck-section {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
}

.nx-ck-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT SIDE: Form Styling */
.nx-ck-form-wrapper {
    flex: 1.5;
}

.nx-ck-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.nx-ck-field-group {
    margin-bottom: 25px;
}

.nx-ck-field-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.nx-ck-field-group input, 
.nx-ck-field-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    box-sizing: border-box;
}

.nx-ck-row {
    display: flex;
    gap: 20px;
}

.nx-ck-row .nx-ck-field-group {
    flex: 1;
}

.nx-ck-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

.nx-ck-checkbox-row input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* RIGHT SIDE: Sticky Cart Summary */
.nx-ck-summary-wrapper {
    flex: 1;
    position: sticky;
    top: 40px;
}

.nx-ck-summary-card {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    background: #fff;
}

.nx-ck-summary-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.nx-ck-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nx-ck-item-info span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.nx-ck-item-price {
    font-weight: 700;
    font-size: 18px;
}

.nx-ck-remove {
    font-size: 12px;
    color: #999;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

.nx-ck-totals {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.nx-ck-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.nx-ck-final {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .nx-ck-container {
        flex-direction: column;
    }
    .nx-ck-summary-wrapper {
        width: 100%;
        position: static;
        order: -1; /* Mobile par cart pehle dikhayen ya baad mein, marzi aapki */
    }
}
/*  */


/* payment section */
/* Payment Section Styling */
.nx-ck-payment-section {
    /* border-top: 1px solid #e2e8f0; */
    padding: 50px;
}

.nx-ck-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Card Box Container */
.nx-ck-payment-box {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* Card Header with Logos */
.nx-ck-card-header {
    background-color: #f4f7f9;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
}

.nx-ck-card-icons {
    display: flex;
    gap: 10px;
}

.nx-ck-card-icons img {
    height: 20px;
    filter: grayscale(0.2);
}

/* Card Body Inputs */
.nx-ck-card-body {
    padding: 25px;
}

.nx-ck-input-wrapper {
    position: relative;
}

.nx-ck-lock-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
}

/* Complete Order Button */
.nx-ck-complete-btn {
    margin-top: 30px;
    background-color: #000;
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nx-ck-complete-btn:hover {
    background-color: #333;
}

/* Responsive Handling */
@media (max-width: 600px) {
    .nx-ck-row {
        flex-direction: column;
        gap: 0;
    }
    .nx-ck-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/*  */
/*  */

/* thankyou page */
/* order detail */
.nx-ty-section {
    padding: 100px 0;
    background-color: #ffffff;
    width: 100%;
}

.nx-ty-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side Styling */
.nx-ty-details-wrapper { flex: 1.5; }

.nx-ty-main-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.nx-ty-status {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
}

.nx-ty-info-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.nx-ty-info-item h4, 
.nx-ty-address-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.nx-ty-info-item p, 
.nx-ty-address-section address {
    font-style: normal;
    color: #666;
    line-height: 1.8;
}

.nx-ty-home-btn {
    display: inline-block;
    margin-top: 50px;
    background: #000;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Right Side Summary Card */
.nx-ty-summary-wrapper { flex: 1; }

.nx-ty-summary-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
}

.nx-ty-summary-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.nx-ty-cart-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.nx-ty-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.nx-ty-remove {
    font-size: 11px;
    color: #999;
    cursor: pointer;
}

.nx-ty-meta {
    font-size: 13px;
    color: #777;
    margin: 2px 0;
}

.nx-ty-item-price {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.nx-ty-totals {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.nx-ty-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.nx-ty-final {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nx-ty-container { flex-direction: column; }
    .nx-ty-summary-wrapper { width: 100%; order: -1; margin-bottom: 40px; }
    .nx-ty-info-grid { flex-direction: column; gap: 25px; }
}
/*  */


/* contact page */
/* contact form */
.nx-ct-section {
    padding: 100px 0;
    background-color: #ffffff; /* Page background white */
    width: 100%;
}

.nx-ct-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px;
    background-color: #fbfcfd; /* Container background as requested */
    border-radius: 24px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side Info */
.nx-ct-info-side { flex: 1; }

.nx-ct-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 50px;
}

.nx-ct-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Icon Styling (Real Icons) */
.nx-ct-icon i {
    font-size: 24px;
    color: #000;
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Very light shadow for depth */
}

.nx-ct-text h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
}

.nx-ct-text span {
    font-size: 14px;
    color: #888;
}

/* Right Side Form */
.nx-ct-form-side { flex: 1.5; }

.nx-ct-input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.nx-ct-field { flex: 1; margin-bottom: 20px; }

.nx-ct-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.nx-ct-field input, 
.nx-ct-field textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.nx-ct-field input:focus, 
.nx-ct-field textarea:focus {
    border-color: #000;
    outline: none;
}

.nx-ct-field textarea { height: 160px; resize: none; }

.nx-ct-submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .nx-ct-container {
        flex-direction: column;
        padding: 40px 30px;
        margin: 0 20px;
    }
}

@media (max-width: 600px) {
    .nx-ct-input-row { flex-direction: column; gap: 0; }
}
/*  */
/*  */