/* Light Theme: NFT Section */
.nft-hero-section {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #1a202c;
    overflow: hidden;
}

.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.badge {
    color: #2563eb; /* Strong Professional Blue */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 20px 0;
    color: #0f172a;
}

h1 span {
    color: #2563eb;
}

p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569; /* Soft Slate Gray for readability */
}

.highlight-box {
    margin-top: 30px;
    padding: 25px;
    border-left: 5px solid #2563eb;
    background: #f8fafc; /* Very light subtle gray */
    border-radius: 0 8px 8px 0;
}

/* Image Visual */
.hero-visual {
    flex: 1;
}

.image-wrapper {
    position: relative;
    padding: 10px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.image-wrapper img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .container-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .highlight-box {
        text-align: left;
        border-radius: 8px;
    }
}
/* what is */
/* Unique Section Spacing - Different from previous sections */
.what-is-nft-section {
    padding: 80px 40px; /* Custom padding for this section */
    background-color: #fefcfd; /* Very soft base */
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.header-box {
    margin-bottom: 60px;
    border-bottom: 2px solid #edafb8;
    padding-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.25rem;
    color: #4a5568;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Distinctive spacing */
    align-items: center;
}

.left-panel ul {
    list-style: none;
    padding: 0;
}

.left-panel li {
    padding: 12px 0;
    border-bottom: 1px dashed #edafb8;
    font-weight: 500;
}

.right-panel .info-card {
    background: linear-gradient(
        135deg,
        #fad2e1,
        #ffffff
    ); /* Using your shades */
    padding: 40px;
    border-radius: 30px;
    box-shadow: 10px 10px 0px #edafb8; /* Custom premium depth */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .what-is-nft-section {
        padding: 60px 20px;
    }
}
/*  solutions section */
.header-wrapper {
    text-align: center;
    margin-bottom: 70px; /* Space between header and grid */
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #64748b;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.5;
}

/* Rest of the CSS remains same as provided previously */
.nft-solutions-section {
    padding: 80px 20px;
    background-color: #a7bbe2;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 400; /* Light weight */
    color: #1e293b;
    margin-bottom: 80px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-bubble {
    width: 65px;
    height: 65px;
    background-color: #3b82f6; /* Premium Blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: -35px;
    z-index: 2;
    border: 4px solid #ffffff;
}

.content-box {
    background: #f8fafc; /* Very light blue-gray */
    padding: 50px 25px 30px 25px;
    border-radius: 12px;
    text-align: center;
    z-index: 1;
    width: 100%;
    border: 1px solid #e2e8f0;
}

.content-box h3 {
    font-size: 1.1rem;
    font-weight: 500; /* Not heavy */
    color: #0f172a;
    margin-bottom: 10px;
}

.content-box p {
    font-size: 0.9rem;
    font-weight: 300; /* Light font */
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/*Features  */
.nft-workflow-section {
    padding: 80px 20px;
    background-color: #f4f4f4; /* Light Blue tint */
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.center-node {
    background: #fa8f46; /* Matching Blue */
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
    width: 250px;
}

.step-card {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e2e8f0;
}

.step-card span {
    background: #e2e8f0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.bottom-note {
    text-align: center;
    color: #64748b;
    font-weight: 300;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }
    .center-node {
        margin: 20px auto;
    }
}

/*  */
.blockchain-networks-section {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.box {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.box:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.circle-image {
    width: 80px;
    height: 80px;
    background: #e2e8f0; /* Placeholder color */
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-image img {
    width: 60%; /* Image ka size adjust karne ke liye */
    height: auto;
}

.box h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 10px;
}
.box p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/*  */
/* =========================================
   SMALL & THIN TIMELINE DESIGN
========================================= */

.nft-flow-wrapper {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 20px 0;
}

/* =========================================
   Center Line
========================================= */

.nft-flow-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);

    width: 4px;
    height: 100%;

    background: linear-gradient(to bottom, #e0aaff, #c77dff, #9d4edd);

    border-radius: 50px;
}

/* =========================================
   Timeline Item
========================================= */

.nft-flow-item {
    position: relative;
    width: 50%;
    margin-bottom: 22px;
}

/* Left */

.nft-flow-left {
    padding-right: 45px;
}

/* Right */

.nft-flow-right {
    margin-left: 50%;
    padding-left: 45px;
}

/* =========================================
   Number Circle
========================================= */

.nft-flow-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #fff;

    border: 3px solid #c77dff;

    color: #7b2cbf;

    font-size: 15px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    box-shadow: 0 8px 18px rgba(157, 78, 221, 0.14);
}

/* Left */

.nft-flow-left .nft-flow-number {
    right: -21px;
}

/* Right */

.nft-flow-right .nft-flow-number {
    left: -21px;
}

/* =========================================
   Small Slim Card
========================================= */

.nft-flow-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 90px;

    background: linear-gradient(145deg, #c77dff, #9d4edd);

    border-radius: 12px;

    overflow: hidden;

    position: relative;

    transition: 0.35s ease;

    box-shadow: 0 10px 22px rgba(157, 78, 221, 0.12);

    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 6% 50%);
}

/* Hover */

.nft-flow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(157, 78, 221, 0.18);
}

/* =========================================
   Content
========================================= */

.nft-flow-content {
    padding: 18px 22px;
    flex: 1;
}

.nft-flow-content h4 {
    margin: 5px;

    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;

    color: #fff;
}

/* =========================================
   Icon Area
========================================= */

.nft-flow-icon {
    min-width: 82px;
    width: 82px;
    height: 82px;

    background: rgba(255, 255, 255, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* Glow */

.nft-flow-icon::before {
    content: "";
    position: absolute;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);
}

/* Icon */

.nft-flow-icon i {
    font-size: 26px;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {
    .nft-flow-line {
        left: 20px;
    }

    .nft-flow-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }

    .nft-flow-number {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 767px) {
    .nft-flow-card {
        min-height: auto;
    }

    .nft-flow-content {
        padding: 16px;
    }

    .nft-flow-content h4 {
        font-size: 14px;
    }

    .nft-flow-icon {
        min-width: 68px;
        width: 68px;
        height: 68px;
    }

    .nft-flow-icon i {
        font-size: 22px;
    }
}

/*  */
/* =========================================
   NFT INDUSTRY SECTION
========================================= */

.nft-industry-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(0, 212, 255, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(58, 134, 255, 0.1),
            transparent 30%
        ),
        linear-gradient(135deg, #f7fbff 0%, #eef6ff 45%, #ffffff 100%);

    overflow: hidden;
    position: relative;
}

/* =========================================
   BADGE
========================================= */

.nft-industry-badge {
    padding: 10px 22px;
    border-radius: 50px;

    background: rgba(0, 212, 255, 0.1);

    border: 1px solid rgba(58, 134, 255, 0.16);

    color: #0077b6;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* =========================================
   TITLE
========================================= */

.nft-industry-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 600;

    background: linear-gradient(90deg, #0b132b, #0077b6, #00b4d8, #0b132b);

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: nftindustryTitle 8s linear infinite;
}

@keyframes nftindustryTitle {
    to {
        background-position: 250% center;
    }
}

/* =========================================
   WRAPPER
========================================= */

.nft-industry-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 560px;
    margin: auto;
}

/* =========================================
   CENTER CIRCLE
========================================= */

.nft-industry-center {
    position: absolute;
    top: 25%;
    left: 40%;
    transform: translate(-50%, -50%);

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: linear-gradient(145deg, #00b4d8, #0077b6);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.18);

    z-index: 5;
}

/* INNER */

.nft-industry-center-inner {
    width: 145px;
    height: 145px;

    border-radius: 50%;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* TEXT */

.nft-industry-center-inner span {
    font-size: 10px;
    font-weight: 700;
    color: #0077b6;
}

.nft-industry-center-inner h3 {
    font-size: 48px;
    font-weight: 400;
    margin: 2px 0;
    color: #0077b6;
}

.nft-industry-center-inner p {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    color: #5c677d;
}

/* =========================================
   ITEMS
========================================= */

.nft-industry-item {
    position: absolute;

    width: 250px;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* LEFT */

.nft-item-left {
    justify-content: flex-end;
    text-align: right;
}

/* RIGHT */

.nft-item-right {
    justify-content: flex-start;
    text-align: left;
}

/* =========================================
   POSITIONS
========================================= */

.nft-item-1 {
    top: 20px;
    left: 90px;
}

.nft-item-2 {
    top: 20px;
    right: 90px;
}

.nft-item-3 {
    top: 210px;
    left: 10px;
}

.nft-item-4 {
    top: 210px;
    right: 10px;
}

.nft-item-bottom {
    bottom: 0;
    left: 37%;
    transform: translateX(-50%);
    width: 280px;

    flex-direction: column-reverse;
    text-align: center;
}

/* =========================================
   CONTENT BOX
========================================= */

.nft-industry-content {
    background: #fff;

    padding: 14px 16px;

    border-radius: 16px;

    border: 1px solid rgba(0, 180, 216, 0.1);

    box-shadow: 0 8px 22px rgba(0, 119, 182, 0.08);

    transition: 0.3s ease;
}

/* HOVER */

.nft-industry-content:hover {
    transform: translateY(-4px);

    box-shadow: 0 14px 30px rgba(0, 119, 182, 0.14);
}

/* TITLE */

.nft-industry-content h4 {
    margin-bottom: 6px;

    font-size: 15px;
    line-height: 1.4;

    font-weight: 700;

    color: #0b132b;
}

/* TEXT */

.nft-industry-content p {
    margin: 0;

    font-size: 12px;
    line-height: 1.7;

    color: #5c677d;
}

/* =========================================
   NUMBER
========================================= */

.nft-industry-number {
    width: 36px;
    height: 36px;

    min-width: 36px;

    border-radius: 50%;

    background: linear-gradient(145deg, #00b4d8, #0077b6);

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 16px rgba(0, 119, 182, 0.18);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .nft-industry-wrapper {
        height: auto;

        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nft-industry-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: auto;
    }

    .nft-industry-item {
        position: relative;

        width: 100%;

        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        transform: none !important;

        text-align: left !important;
        justify-content: flex-start !important;

        flex-direction: row !important;
    }

    .nft-industry-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .nft-industry-title {
        font-size: 34px;
    }

    .nft-industry-wrapper {
        gap: 16px;
    }

    .nft-industry-center {
        width: 160px;
        height: 160px;
    }

    .nft-industry-center-inner {
        width: 120px;
        height: 120px;
    }

    .nft-industry-center-inner h3 {
        font-size: 38px;
    }

    .nft-industry-content {
        padding: 14px;
    }

    .nft-industry-content h4 {
        font-size: 14px;
    }

    .nft-industry-content p {
        font-size: 12px;
    }
}

/* Benefits */
.nft-section {
    padding: 60px 0;
    background-color: #ffffff;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nft-page .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.content-side {
    flex: 1;
    min-width: 300px;
}
.list-side {
    flex: 1.5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}
p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-box {
    border-left: 4px solid #4f46e5;
    padding-left: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #1907f4;
    background-color: #f7fafc;
    border-radius: 8px;
    font-weight: 500;
    color: #2d3748;
}

.benefit-item span {
    color: #1907f4;
    margin-right: 10px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .list-side {
        grid-template-columns: 1fr;
    }
}

/*  why choose*/
.why-choose-section {
    padding: 80px 20px;
    /* Premium Gradient Background */
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #ffffff;
    font-family: sans-serif;
}

.why-choose-container {
    max-width: 1000px;
    margin: 0 auto;
}

.header-box {
    text-align: center;
    margin-bottom: 50px;
}
.header-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}
.header-box .subtitle {
    color: #c7d2fe;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #818cf8;
}

.feature-card span {
    margin-right: 15px;
    font-size: 24px;
}

.footer-note {
    margin-top: 50px;
    text-align: center;
    font-size: 1.1em;
    color: #e0e7ff;
    padding: 20px;
    border-top: 1px solid #4338ca;
}

/* Future */
.nft-service-section {
    padding: 80px 5%;
    /* Exact match for the light blue professional gradient */
    background: linear-gradient(135deg, #dcf0fb 0%, #ffffff 100%);
    font-family: "Segoe UI", sans-serif;
    color: #0d47a1;
}

.title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0d47a1;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-list {
    flex: 1;
}
.item {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.item span {
    color: #0d47a1;
    margin-right: 15px;
}

.visual-hub {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* The circular graphic look */
.circle-graphic {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffffff 0%, #b3e5fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.2);
    border: 5px solid rgba(255, 255, 255, 0.5);
}

.circle-graphic h3 {
    font-size: 48px;
    color: #0d47a1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
    }
    .circle-graphic {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }
}

/* CTA */
.cta-section-wrapper {
    width: 100%;
    /* New high-energy gradient */
    background: linear-gradient(270deg, #5a5de0, #949493, #032c3f);
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;

    padding: 80px; /* Increased padding for impact */
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: 40px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.cta-description {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta-premium {
    background: #fff;
    color: #6366f1;
    padding: 20px 45px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
}

.btn-cta-premium:hover {
    background: #4f46e5;
    color: #fff;
    transform: scale(1.05);
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    background: #e9d7fa;
}

.faq-container {
    background: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.faq-header {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: #333;
}

.chevron {
    font-size: 18px;
    transition: transform 0.3s;
    color: #666;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    display: none;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}
