﻿:root {
    --default-font: "IBM Plex Sans", sans-serif;
    --heading-font: "Cormorant Garamond", serif;
    --nav-font: "IBM Plex Sans", sans-serif;
}

.hero-section {
    background-color: var(--hero-bg);
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}

p.storetag {
    background: #05263d;
    color: #fff;
    font-size: 12px;
    border-radius: 10px;
    text-align: center;
    display: inline;
    position: relative;
    padding: 2px 5px;
    left: 10px;
    bottom: 30px;
}

.gemartaiblock {
    background: #aabedc;
}

.hero-title {
    font-weight: 800;
    font-family: var(--default-font);
    max-width: 900px;
    margin-bottom: 2rem;
    line-height: 1.1;
    z-index: 2;
    color: #fff;
    font-size: 68px;
}

/* Container for the ring and floating elements */
.ring-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    z-index: 99;
}

.main-ring {
    width: 100%;
    height: auto;
    z-index: 1;
}

/* The small stones preview box */
.stones-preview {
    position: absolute;
    bottom: 40%;
    right: -15%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 12px;
    width: 165px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


@media(max-width:600px) {
    .stones-preview {
        position: relative;
        bottom: 0;
        right: 0;
    }

    .prompt-bubble {
        position: relative;
        margin-top: -20px;
        display: inline-block;
    }
}
/* The prompt bubble */
.prompt-bubble {
    position: absolute;
    bottom: 10%;
    right: -10%;
    background-color: #3a5778;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    font-weight: 300;
}

.hero-footer-text {
    margin-top: 3rem;
    max-width: 700px;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .prompt-bubble {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .stones-preview {
        display: none; /* Hide stones on very small screens for clarity */
    }
}

.steps-wrapper {
    background: linear-gradient(180deg, #aabedc 0%, #6487af 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin: 50px auto;
    max-width: 1200px;
    height: 480px; /* Fixed height to keep layout stable */
}

.step-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    flex: 1; /* Default collapsed width */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Number Icon */
.step-number {
    background: white;
    color: #5b8db8;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

/* Hidden Content */
.step-body {
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: left;
    width: 100%;
}

.step-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    font-family: var(--default-font);
}

.step-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 320px;
}

/* The Illustration/Image */
.step-image {
    position: absolute;
    right: 40px;
    top: 40%;
    transform: translateY(-50%) scale(0.8);
    width: 45%;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

/* HOVER STATE */
.step-card:hover {
    flex: 3; /* The expansion magic */
    background: #cbdceb; /* Lighter color on hover */
}

    .step-card:hover .step-number {
        background: #447199;
        color: white;
        transform: scale(0.9);
    }

    .step-card:hover .step-body {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        transition-delay: 0.2s;
    }

    .step-card:hover .step-image {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        transition-delay: 0.1s;
    }

/* Bottom Button Styling */
.btn-custom {
    background: white;
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

    .btn-custom:hover {
        transform: translateY(-3px);
        color: black;
    }

.step-card:hover p.step-desc {
    width: 46%;
    color: inherit;
}

.step-card.card1 {
    background: #3a5778;
}

.step-card.card2 {
    background: #6487af;
}

.step-card.card3 {
    background: #fff;
    color: #707070;
}

    .step-card.card3 .step-number {
        background: #9fb1c0;
        color: #fff;
    }

    .step-card.card3 h3.step-title {
        color: #9fb1c0;
    }

section h1 {
    color: #fff;
    font-family: var(--default-font);
    font-weight: 900;
}

section.steps-wrapper h3 {
    font-family: var(--default-font);
    color: #fff;
    font-weight: 600;
}
/* Responsive */

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        height: auto;
    }

    .step-card:hover {
        flex: none;
        height: 400px;
    }

    .step-image {
        display: none; /* Hide images on mobile for space */
    }

    h1.hero-title {
        font-size: 30px;
    }

    .step-image {
        display: block;
        position: absolute;
        opacity: 1;
        top: auto;
        left: auto;
        right: 0;
        bottom: 0;
        width: 59%;
        transform: none !important;
        padding: 0px 0;
    }

    img.step-image {
        padding: 20px;
        max-width: 40%;
    }
}

@media (max-width: 600px) {
    .step-image {
        display: block;
        position: relative;
        opacity: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        transform: none !important;
        padding: 30px 0;
    }

    .mobpaddtop {
        margin-top: 20px;
    }

    .faq-13 .faq-container .faq-item {
        height: 85px;
    }

    img.step-image {
        max-width: 60%;
    }

    .analytics-floater {
        position: static;
        width: 70%;
        margin-bottom: 20px;
        margin: 0 auto;
    }

    .action-box {
        position: static;
        margin-top: 20px;
        width: 100%;
    }

    h1.hero-title {
        font-size: 24px;
    }

    a.btn-custom {
        margin-bottom: 5px;
    }
}

.ai-section {
    background: linear-gradient(180deg, #6487af 0%, #3a5578 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.main-ui-container {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    z-index: 1;
}

.main-screenshot {
    width: 70%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Floating Card Styling */
.floater {
    position: absolute;
    background: #779ebd;
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0px 0px 6px #ffffff;
    /* border: 1px solid #fff; */
}

    .floater:hover {
        transform: scale(1.05);
        background: rgb(78 125 166);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.floater-icon {
    background: rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .floater-icon img {
        max-width: 45px;
    }

.floater h5 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--default-font);
    color: #fff;
}

.floater p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Position logic for 5 items (Alternating Sides) */
.f-1 {
    top: 10%;
    left: -10%;
}

.f-2 {
    top: 25%;
    right: -10%;
}

.f-3 {
    top: 45%;
    left: -10%;
}

.f-4 {
    top: 60%;
    right: -10%;
}

.f-5 {
    top: 75%;
    left: -10%;
}

/* Responsive */
@media (max-width: 1200px) {
    .floater {
        width: 280px;
    }

    .f-1, .f-3 {
        left: -5%;
    }

    .f-2, .f-4 {
        right: -5%;
    }
}

@media (max-width: 768px) {
    .floater {
        position: static;
        margin: 15px auto;
        width: 90%;
        transform: none !important;
    }

    .main-ui-container {
        margin: 40px auto;
    }
}

.quotes-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #3a5578 0%, #6487af 100%);
}

.quotes-header {
    max-width: 500px;
    color: white;
    margin-bottom: 50px;
}

    .quotes-header h2 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
    }

/* Dashboard Positioning Area */
.dashboard-canvas {
    position: relative;
    margin-top: 40px;
    min-height: 600px;
}

.pricing-main-card {
    background: white;
    padding: 15px;
    width: 75%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

    .pricing-main-card img {
        border-radius: 10px;
    }
/* Floating Analytics Box */
.analytics-floater {
    position: absolute;
    top: -35%;
    right: 0%;
    width: 35%;
    border-radius: 40px;
    padding: 0;
    z-index: 5;
    box-shadow: 0 20px 40px rgb(255 255 255 / 10%);
}

    .analytics-floater img {
        border-radius: 30px;
        border: 12px solid #6c9bc2;
    }

.action-box {
    position: absolute;
    bottom: 0;
    right: 0%;
    background: #6c9bc2;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.btn-white {
    background: white;
    color: var(--text-dark);
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
}

/* UI Table Elements */
.table-custom {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c445e;
}

/* Responsive Mobile Layout */
@media (max-width: 992px) {
    .analytics-floater {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .pricing-main-card {
        width: 100%;
    }

    .action-box {
        position: static;
        margin-top: 20px;
        width: 100%;
    }
}

.quote-banner {
    min-height: 350px;
    background: radial-gradient( circle at center, #0b5fa5 0%, #073a5c 45%, #041c2e 100% );
    color: #fff;
    padding: 60px 0;
}

.quote-text {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.25;
    max-width: 900px;
    margin: 0 auto;
}

.quote-author {
    position: absolute;
    right: 15px;
    bottom: 10px;
    text-align: right;
    font-size: 15px;
    opacity: 0.9;
}

.author-name {
    font-weight: 500;
}

.author-title {
    font-size: 14px;
    opacity: 0.85;
}

.gemart-plan-section {
    background: #aabedc;
}

.gemart-wrapper {
    border-radius: 32px;
    background: linear-gradient(90deg, #3a5778 40%, #6487af 100%);
}

.plan-desc {
    max-width: 760px;
    font-size: 16px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 28px;
    padding: 28px;
    color: #fff;
}

    .plan-card ul li {
        margin-bottom: 6px;
    }

    .plan-card.bluecard {
        background: linear-gradient(90deg, #6386ae 25%, #aabedc 100%);
    }

    .plan-card:hover {
        box-shadow: 0 0 10px #fff;
    }

.price {
    font-size: 20px;
    color: #fff;
}

    .price strong {
        font-size: 26px;
        font-weight: 600;
    }

    .price del {
        opacity: 0.7;
        margin-right: 6px;
    }

    .price span {
        font-size: 14px;
        opacity: 0.85;
    }

h5.fw-semibold.mb-2 {
    color: #fff;
    font-weight: 500;
    font-family: var(--default-font);
    background: #3a5778;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    padding: 4px;
}

.Gemartscreen {
    background: #c6d0da;
}

.gemart-hero {
    background: #e6eff9;
    padding: 80px 0;
}

.hero-card {
    background: #f5f5f5;
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 48px;
    color: #0d2b3e;
}

    .hero-card h2 {
        font-size: clamp(28px, 3vw, 42px);
    }

    .hero-card p {
        font-size: 16px;
        max-width: 520px;
    }

.hero-image {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Button tweaks */
.btn-primary {
    background-color: #2b6ea6;
    border-color: #2b6ea6;
}

.btn-outline-primary {
    color: #2b6ea6;
    border-color: #2b6ea6;
}

    .btn-outline-primary:hover {
        background-color: #2b6ea6;
        color: #fff;
        border-color: #fff;
    }

.faq-13 .faq-container .faq-item {
    height: 70px;
}

.faq-item.faq-active {
    height: auto !important;
}

.design-explore-section {
    background: #3a5578;
}

.explore-title {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
}

.explore-desc {
    color: #eef4f8;
}

.category-tabs {
    background: rgba(255,255,255,0.25);
    border-radius: 18px;
    padding: 12px;
    gap: 12px;
}

    .category-tabs .nav-link {
        border: 2px solid #fff;
        border-radius: 12px;
        color: #fff;
        padding: 10px 22px;
        font-weight: 500;
    }

        .category-tabs .nav-link.active {
            background: #fff;
            color: #2e5f85;
        }

.gallery-wrapper {
    background: #fff;
    border-radius: 26px;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus {
    background-color: #3a5778;
    border-color: #6487af;
}

    .btn-primary:hover {
        border-color: #fff;
    }

section#faq-13 {
    background: #333333;
}

.faq-13 .container.borderbox {
    background: #fff;
}

@media(max-width:600px) {
    .quote-author {
        position: relative;
        right: 15px;
        bottom: -20px;
    }
}
