body, html {
    overflow-x: hidden !important;
    font-family: "Roboto", sans-serif;
}


.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #687cfe !important;
    --bs-btn-border-color: #687cfe !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #687cfe !important;
    --bs-btn-hover-border-color: #4857bd !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #687cfe !important;
    --bs-btn-active-border-color: #4454b8 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #687cfe !important;
    --bs-btn-disabled-border-color: #687cfe !important;
}
.nav-link.active-nav {
    color: #3cd188 !important;   /* Green color */
    font-weight: 700;
}

/* ================================
   HERO SECTION
================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    background: #f8faff;
}

.hero-row {
    min-height: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 30px;
    background: #eef3ff;
    color: #315bea;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #315bea;
}

.hero-title {
    font-size: clamp(40px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 700;
    color: #172033;
    margin-bottom: 22px;
}

.hero-title span {
    color: #315bea;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #667085;
    max-width: 590px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-buttons .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ================================
   HERO VISUAL
================================ */

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 680px;
    height: 550px;
    margin-left: auto;
}

.hero-dashboard {
    position: absolute;
    width: 82%;
    height: auto;
    right: 5%;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 16px;
    object-fit: contain;
    animation:floatMain 6s ease-in-out infinite;
}


/* ================================
   FLOATING CARDS
================================ */

.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px 12px 12px;

    min-width: 225px;

    background: rgba(255, 255, 255, 0.97);
    border-radius: 50px;

    box-shadow: 0 15px 40px rgba(31, 45, 61, 0.14);
animation:floatCard 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-card h6 {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 700;
    color: #1d2939;
    white-space: nowrap;
}

.floating-card p {
    margin: 0;
    font-size: 12px;
    color: #667085;
    white-space: nowrap;
}


/* ICON */

.icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
}

.icon-circle.green {
    background: #eafaf0;
    color: #16a34a;
}

.icon-circle.orange {
    background: #fff3e8;
    color: #ff7a00;
}

.icon-circle.blue {
    background: #edf4ff;
    color: #2563eb;
}

.icon-circle .material-icons {
    font-size: 22px;
}


/* ================================
   CARD POSITIONS - DESKTOP
================================ */

.card-desktop-1 {
    top: 20%;
    left: 0;
}

.card-desktop-2 {
    top: 32%;
    right: -2%;
}

.card-desktop-3 {
    bottom: 5%;
    left: 0;
}

.card-desktop-4 {
    bottom: -8%;
    right: 7%;
}


/* ================================
   LARGE TABLET / SMALL LAPTOP
================================ */

@media (max-width: 1199px) {

    .hero-section {
        padding: 70px 0;
    }

    .hero-row {
        min-height: 500px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-visual {
        height: 480px;
    }

    .hero-dashboard {
        width: 88%;
        right: 2%;
    }

    .floating-card {
        min-width: 195px;
        padding: 9px 14px 9px 9px;
        gap: 9px;
    }

    .floating-card h6 {
        font-size: 12px;
    }

    .floating-card p {
        font-size: 11px;
    }

    .icon-circle {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .icon-circle .material-icons {
        font-size: 19px;
    }

    .card-1 {
        left: -5px;
    }

    .card-2 {
        right: -5px;
    }

    .card-3 {
        left: -5px;
    }

    .card-4 {
        right: 0;
    }
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-section .col-lg-5 {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 460px;
        margin: 40px auto 0;
        max-width: 650px;
    }

    .hero-dashboard {
        width: 78%;
        right: 11%;
    }

    .card-1 {
        top: 4%;
        left: 0;
    }

    .card-2 {
        top: 20%;
        right: 0;
    }

    .card-3 {
        bottom: 20%;
        left: 0;
    }

    .card-4 {
        bottom: 4%;
        right: 3%;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .hero-section {
        padding: 80px 0 35px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.12;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Visual becomes shorter */
    .hero-visual {
        height: 360px;
        width: 100%;
        margin-top: 35px;
    }

    .hero-dashboard {
        width: 82%;
        right: 9%;
        top: 50%;
    }

    /* Smaller cards */
    .floating-card {
        min-width: auto;
        width: auto;
        padding: 7px 11px 7px 7px;
        gap: 7px;
        border-radius: 40px;
    }

    .floating-card h6 {
        font-size: 10px;
    }

    .floating-card p {
        font-size: 9px;
    }

    .icon-circle {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .icon-circle .material-icons {
        font-size: 16px;
    }

    /* Reposition cards */
    .card-1 {
        top: 3%;
        left: 0;
    }

    .card-2 {
        top: 18%;
        right: 0;
    }

    .card-3 {
        bottom: 19%;
        left: 0;
    }

    .card-4 {
        bottom: 2%;
        right: 0;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .hero-section {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 31px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 7px 12px;
    }

    .hero-visual {
        height: 300px;
        margin-top: 25px;
    }

    .hero-dashboard {
        width: 86%;
        right: 7%;
    }

    .floating-card {
        padding: 6px 9px 6px 6px;
    }

    .floating-card h6 {
        font-size: 9px;
    }

    .floating-card p {
        font-size: 8px;
    }

    .icon-circle {
        width: 27px;
        height: 27px;
        min-width: 27px;
    }

    .icon-circle .material-icons {
        font-size: 14px;
    }

    .card-1 {
        top: 0;
        left: -5px;
    }

    .card-2 {
        top: 17%;
        right: -5px;
    }

    .card-3 {
        bottom: 18%;
        left: -5px;
    }

    .card-4 {
        bottom: 0;
        right: -5px;
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@keyframes floatMain{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

@media(max-width:991px){

    .hero-title{
        font-size:42px;
    }

    .hero-visual{
        margin-top:50px;
        padding:10px;
    }

    .floating-card{
        transform:scale(.85);
    }

    .hero-stats{
        justify-content:space-between;
        gap:20px;
    }
}
.material-icons {
    font-size: 34px !important;
}
.flip-card {
    perspective: 1000px;
    height: 230px;          /* FIXED HEIGHT */
    position: relative;      /* Prevent layout shift */
}

.flip-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;      /* Stays on same layer */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;           /* EXACT same height */
    border-radius: 18px;
    backface-visibility: hidden;
    overflow: hidden;       /* Prevents stretching */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* FRONT */
.flip-front {
    background-size: cover;
    background-position: center;
    position: relative;
}

.flip-front h4 {
    z-index: 2;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
}

.overlay {
    position: absolute;
    inset: 0;
    /* border-radius: 18px; */
    background: rgba(0, 0, 0, 0.4);
}

/* BACK */
.flip-back {
    transform: rotateY(180deg);
    background: #687cfe;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.card-W{
    height: 275px;
    border: 1px solid #cccccc;
    border-radius: 8px;
}
.w-center {
    
    width: 80%;
    margin: auto;
    
}
.icon-lg {
    font-size: 42px;
    margin-bottom: 10px;
}
.material-icons-outlined {
    font-size: 34px !important;
}

.demo-section-full {
    position: relative;
    width: 100%;
    height: 300px;               /* FIXED HEIGHT */
    background-image: url('./images/demo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;                  /* Remove extra padding */
    margin: 0;
}

/* Center content vertically */
.demo-section-full .content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

/* Dark overlay */
.demo-section-full .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* White border premium button */
.btn-outline-light {
    padding: 12px 30px;
    font-size: 18px;
    border-width: 2px;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
}
.modules-section {
    background: #f5f5f5;   /* Light grey */
    width: 100%;
    padding: 60px 0;
}

/* ===================== CONTACT BANNER ===================== */
.contact-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url('./images/contact.jpg');
    background-size: cover;
    background-position: center;
}

.contact-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.contact-banner .banner-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

/* ===================== FULL WIDTH 3 COLUMN ===================== */
.contact-fullwidth {
    width: 100%;
    padding: 0;
    margin-top: 0 !important; /* Attach directly to banner */
}

/* ===================== ICONS ===================== */


/* ===================== FORM BACKGROUND ===================== */
.form-bg {
    background: #f1f1f1;
}

/* Form inputs */
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}
iframe, img {
    max-width: 100% !important;
    display: block;
}

/* =========================================================
   YATRANEST — GUEST MODULE SHOWCASE
========================================================= */

.guest-showcase {
    max-width: 1250px;
    margin: 0 auto;
    padding: 50px 25px 80px;
}



/* ================= INTRO ================= */

.guest-showcase-intro {
    max-width: 850px;
    margin: 0 auto 90px;
}

.showcase-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #687cfe;
    margin-bottom: 15px;
}

.guest-showcase-intro h2 {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.guest-showcase-intro h2 span {
    color: #687cfe;
}

.guest-showcase-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #687080;
    max-width: 750px;
    margin: auto;
}


/* ================= MODULE ================= */

.showcase-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;

    margin-bottom: 150px;

    position: relative;
}


/* Reverse */

.showcase-module-reverse {
    direction: rtl;
}

.showcase-module-reverse > * {
    direction: ltr;
}


/* ================= IMAGE ================= */

.showcase-image-wrapper {
    position: relative;
    padding: 20px;
}

.showcase-image-card {
    position: relative;
    border-radius: 22px;

    background: #ffffff;

    padding: 12px;

    box-shadow:
        0 25px 70px rgba(35, 44, 80, 0.14);

    overflow: hidden;

    transform: translateY(0);

    animation: showcaseFloat 5s ease-in-out infinite;
}

.showcase-image {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 15px;

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.showcase-image-card:hover .showcase-image {
    transform: scale(1.035);
}


/* Glow */

.showcase-image-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(104, 124, 254, 0.18);

    filter: blur(60px);

    border-radius: 50%;

    top: -80px;
    right: -70px;

    pointer-events: none;
}


/* Floating animation */

@keyframes showcaseFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* ================= MODULE NUMBER ================= */

.showcase-module-number {
    position: absolute;

    left: -10px;
    top: -10px;

    width: 62px;
    height: 62px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #687cfe;

    color: white;

    font-size: 16px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(104, 124, 254, 0.35);

    z-index: 5;
}


/* ================= CONTENT ================= */

.showcase-content {
    padding: 15px 0;
}

.showcase-label {
    display: inline-block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: #687cfe;

    margin-bottom: 15px;
}

.showcase-content h3 {
    font-size: 38px;

    line-height: 1.15;

    font-weight: 800;

    color: #1d2433;

    margin-bottom: 22px;
}

.showcase-content h3 span {
    color: #687cfe;
}

.showcase-description {
    font-size: 16px;

    line-height: 1.8;

    color: #687080;

    margin-bottom: 30px;

    max-width: 570px;
}


/* ================= POINTS ================= */

.showcase-points {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.showcase-point {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.showcase-point > .material-icons-outlined {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(104, 124, 254, 0.10);

    color: #687cfe;

    font-size: 22px;
}

.showcase-point strong {
    display: block;

    color: #252b3a;

    font-size: 15px;

    margin-bottom: 4px;
}

.showcase-point p {
    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #788090;
}


/* ================= FINAL CTA ================= */

.showcase-final-cta {
    text-align: center;

    max-width: 900px;

    margin: 40px auto 0;

    padding: 70px 40px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(104, 124, 254, 0.08),
            rgba(60, 209, 136, 0.06)
        );
}

.showcase-final-cta h3 {
    font-size: 36px;

    font-weight: 800;

    margin-bottom: 18px;
}

.showcase-final-cta h3 span {
    color: #687cfe;
}

.showcase-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #687080;

    line-height: 1.8;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.showcase-module {
    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.showcase-module.showcase-visible {
    opacity: 1;

    transform: translateY(0);
}


/* Image animation */

.showcase-module .showcase-image-wrapper {
    transform: translateX(-50px);

    opacity: 0;

    transition:
        transform 1s ease,
        opacity 1s ease;
}

.showcase-module.showcase-visible .showcase-image-wrapper {
    transform: translateX(0);

    opacity: 1;
}


/* Text animation */

.showcase-module .showcase-content {
    transform: translateX(50px);

    opacity: 0;

    transition:
        transform 1s ease 0.15s,
        opacity 1s ease 0.15s;
}

.showcase-module.showcase-visible .showcase-content {
    transform: translateX(0);

    opacity: 1;
}


/* Reverse animation */

.showcase-module-reverse .showcase-image-wrapper {
    transform: translateX(50px);
}

.showcase-module-reverse.showcase-visible .showcase-image-wrapper {
    transform: translateX(0);
}

.showcase-module-reverse .showcase-content {
    transform: translateX(-50px);
}

.showcase-module-reverse.showcase-visible .showcase-content {
    transform: translateX(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .guest-showcase {
        padding: 40px 20px 60px;
    }

    .guest-showcase-intro {
        margin-bottom: 70px;
    }

    .guest-showcase-intro h2 {
        font-size: 34px;
    }

    .showcase-module {
        grid-template-columns: 1fr;

        gap: 45px;

        margin-bottom: 100px;
    }

    .showcase-module-reverse {
        direction: ltr;
    }

    .showcase-content h3 {
        font-size: 32px;
    }

    .showcase-module .showcase-image-wrapper,
    .showcase-module-reverse .showcase-image-wrapper,
    .showcase-module .showcase-content,
    .showcase-module-reverse .showcase-content {
        transform: translateY(30px);
    }

    .showcase-module.showcase-visible .showcase-image-wrapper,
    .showcase-module.showcase-visible .showcase-content {
        transform: translateY(0);
    }

}


@media (max-width: 576px) {

    .guest-showcase {
        padding-left: 12px;
        padding-right: 12px;
    }

    .guest-showcase-intro h2 {
        font-size: 29px;
    }

    .guest-showcase-intro p {
        font-size: 15px;
    }

    .showcase-content h3 {
        font-size: 28px;
    }

    .showcase-description {
        font-size: 15px;
    }

    .showcase-image-wrapper {
        padding: 12px;
    }

    .showcase-module-number {
        width: 50px;
        height: 50px;

        font-size: 14px;
    }

    .showcase-final-cta {
        padding: 45px 20px;
    }

    .showcase-final-cta h3 {
        font-size: 28px;
    }

}

.why-section{
    background:#fff;
    overflow:hidden;
}

.why-badge{
    background:rgba(104,124,254,.1);
    color:#687cfe;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

.feature-slider{
    overflow:hidden;
    position:relative;
}

.feature-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:scrollLeft 30s linear infinite;
}

.feature-slider:hover .feature-track{
    animation-play-state:paused;
}

.feature-card{
    width:280px;
    height:260px;
    background:#fff;
    border-radius:24px;
    padding:30px;
    position:relative;
    overflow:hidden;
    border:1px solid #eef2f7;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(104,124,254,.12);
    border-color:#687cfe;
}


.module-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(104,124,254,.08);
    color:#687cfe;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.modules-section h2{
    font-size:clamp(2.5rem,5vw,4.5rem);
    line-height:1.1;
    color:#111827;
}

.module-subtitle{
    max-width:850px;
    font-size:1.15rem;
    line-height:1.8;
    color:#6b7280;
}

.feature-card lord-icon{
    width:90px;
    height:90px;
}

.feature-card h5{
    margin-top:15px;
    font-weight:700;
}

.hover-content{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        #687cfe,
        #3cd188
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:25px;
    opacity:0;
    transform:translateY(100%);
    transition:.4s ease;
    font-size:15px;
    line-height:1.6;
}

.feature-card:hover .hover-content{
    opacity:1;
    transform:translateY(0);
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* =====================================================
   PREMIUM DEMO SECTION
===================================================== */

.premium-demo-section {
    position: relative;
    padding: 90px 0;
    background: #f8faff;
    overflow: hidden;
}


/* =====================================================
   MAIN CARD
===================================================== */

.premium-demo-card {
    position: relative;
    overflow: hidden;

    padding: 65px 70px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(49, 91, 234, 0.08),
            transparent 35%
        ),
        #ffffff;

    border: 1px solid rgba(49, 91, 234, 0.08);

    box-shadow:
        0 25px 70px rgba(31, 45, 61, 0.10);
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.premium-pill {
    display: inline-flex;
    align-items: center;

    padding: 8px 15px;

    border-radius: 30px;

    background: #eef3ff;
    color: #315bea;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;

    margin-bottom: 20px;
}

.premium-title {
    max-width: 560px;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.12;

    font-weight: 700;

    color: #172033;

    margin-bottom: 22px;
}

.premium-title span {
    display: block;
    color: #315bea;
}

.premium-text {
    max-width: 540px;

    font-size: 16px;
    line-height: 1.7;

    color: #667085;

    margin-bottom: 25px;
}


/* =====================================================
   BENEFITS
===================================================== */

.demo-benefits {
    list-style: none;

    padding: 0;
    margin: 0 0 30px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 13px 25px;
}

.demo-benefits li {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 14px;
    font-weight: 500;

    color: #344054;
}

.demo-benefits li span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #eaf7ef;
    color: #16a34a;

    font-size: 12px;
    font-weight: 700;
}

.demo-cta {
    min-height: 52px;

    border-radius: 12px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(49, 91, 234, 0.18);
}


/* =====================================================
   RIGHT PREVIEW
===================================================== */

.demo-preview {
    position: relative;

    width: 100%;
    max-width: 600px;

    height: 470px;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   DASHBOARD
===================================================== */

.dashboard-frame {
    position: relative;

    width: 82%;

    z-index: 2;

    border-radius: 18px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 25px 55px rgba(31, 45, 61, 0.18);

    transform: perspective(1200px) rotateY(-3deg);
}

.demo-dashboard {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.demo-preview .floating-card {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    border-radius: 40px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 14px 35px rgba(31, 45, 61, 0.14);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 600;

    color: #344054;

    white-space: nowrap;
}

.demo-preview .floating-card span {
    font-size: 17px;
    line-height: 1;
}


/* =====================================================
   CARD POSITIONS
===================================================== */

.demo-preview .card-1 {
    top: 7%;
    left: 0;
}

.demo-preview .card-2 {
    top: 22%;
    right: 0;
}

.demo-preview .card-3 {
    bottom: 20%;
    left: 0;
}

.demo-preview .card-4 {
    bottom: 6%;
    right: 2%;
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199px) {

    .premium-demo-card {
        padding: 55px 45px;
    }

    .premium-title {
        font-size: 43px;
    }

    .demo-preview {
        height: 420px;
    }

    .dashboard-frame {
        width: 84%;
    }

    .demo-preview .floating-card {
        padding: 9px 14px;
        font-size: 11px;
    }

    .demo-preview .floating-card span {
        font-size: 15px;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .premium-demo-section {
        padding: 70px 0;
    }

    .premium-demo-card {
        padding: 50px 40px;
    }

    .premium-title {
        font-size: 40px;
    }

    .premium-text {
        max-width: 100%;
    }

    .demo-preview {
        max-width: 650px;
        height: 440px;

        margin: 25px auto 0;
    }

    .dashboard-frame {
        width: 78%;
    }

    .demo-preview .card-1 {
        left: 2%;
    }

    .demo-preview .card-2 {
        right: 2%;
    }

    .demo-preview .card-3 {
        left: 2%;
    }

    .demo-preview .card-4 {
        right: 4%;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .premium-demo-section {
        padding: 50px 0;
    }

    .premium-demo-card {
        padding: 38px 22px 30px;

        border-radius: 24px;
    }

    .premium-pill {
        font-size: 10px;
        padding: 7px 12px;
        margin-bottom: 16px;
    }

    .premium-title {
        font-size: 32px;
        line-height: 1.15;

        margin-bottom: 18px;
    }

    .premium-text {
        font-size: 14px;
        line-height: 1.65;

        margin-bottom: 22px;
    }


    /* Benefits become one column */

    .demo-benefits {
        grid-template-columns: 1fr;

        gap: 11px;

        margin-bottom: 25px;
    }

    .demo-benefits li {
        font-size: 13px;
    }


    /* Full width CTA */

    .demo-cta {
        width: 100%;
    }


    /* Preview */

    .demo-preview {
        height: 330px;

        margin-top: 25px;
    }

    .dashboard-frame {
        width: 82%;

        border-radius: 13px;

        transform: none;
    }


    /* Smaller floating cards */

    .demo-preview .floating-card {
        padding: 7px 10px;

        gap: 5px;

        font-size: 9px;

        border-radius: 30px;
    }

    .demo-preview .floating-card span {
        font-size: 13px;
    }


    /* Positions */

    .demo-preview .card-1 {
        top: 3%;
        left: 0;
    }

    .demo-preview .card-2 {
        top: 18%;
        right: 0;
    }

    .demo-preview .card-3 {
        bottom: 18%;
        left: 0;
    }

    .demo-preview .card-4 {
        bottom: 3%;
        right: 0;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .premium-demo-card {
        padding: 30px 17px 25px;
    }

    .premium-title {
        font-size: 28px;
    }

    .premium-text {
        font-size: 13px;
    }

    .demo-preview {
        height: 280px;
    }

    .dashboard-frame {
        width: 86%;
    }

    .demo-preview .floating-card {
        padding: 6px 8px;

        font-size: 8px;
    }

    .demo-preview .floating-card span {
        font-size: 11px;
    }

    .demo-preview .card-1 {
        left: -2px;
    }

    .demo-preview .card-2 {
        right: -2px;
    }

    .demo-preview .card-3 {
        left: -2px;
    }

    .demo-preview .card-4 {
        right: -2px;
    }
}

.card-1{
    top:-20px;
    left:-20px;
}

.card-2{
    top:60px;
    right:-20px;
}

.card-3{
    bottom:80px;
    left:-20px;
}

.card-4{
    bottom:-20px;
    right:20px;
}

/* =====================================================
   PROPERTY TYPES SECTION
===================================================== */

.property-types-section {
    width: 100%;
    padding: 90px 20px;
    background: #fff;
    overflow: hidden;
}


/* =====================================================
   SECTION HEADER
===================================================== */

.property-types-section > .text-center {
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 55px;
}

.property-types-section .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 15px;

    border-radius: 30px;

    background: #eef3ff;
    color: #315bea;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.property-types-section .display-4 {
    color: #172033;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.12;

    margin-top: 18px !important;
    margin-bottom: 15px;
}

.property-types-section .section-subtitle {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    font-size: 16px;
    line-height: 1.7;

    color: #667085;
}


/* =====================================================
   PROPERTY LIST
===================================================== */

.property-list {
    width: 100%;
    max-width: 1150px;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* =====================================================
   PROPERTY ROW
===================================================== */

.property-row {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns: 70px minmax(0, 1fr) 70px;

    align-items: center;

    gap: 25px;

    min-height: 150px;

    padding: 30px 35px;

    border-radius: 22px;

    background: #f8faff;

    border: 1px solid #edf1f7;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


/* =====================================================
   HOVER EFFECT — KEEPING YOUR EFFECT
===================================================== */

.property-row:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: rgba(49, 91, 234, 0.10);

    box-shadow:
        0 18px 45px rgba(31, 45, 61, 0.10);
}


/* =====================================================
   NUMBER
===================================================== */

.property-number {
    font-size: 15px;

    font-weight: 700;

    color: #315bea;

    opacity: 0.8;
}


/* =====================================================
   CONTENT
===================================================== */

.property-content {
    min-width: 0;
}

.property-content h3 {
    margin: 0 0 8px;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 700;

    color: #172033;
}

.property-content p {
    max-width: 650px;

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #667085;
}


/* =====================================================
   ICON
===================================================== */

.property-icon.material-icons-outlined {
    width: 58px;
    height: 58px;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 18px;

    background: #eef3ff;

    color: #315bea;

    font-size: 27px !important;

    line-height: 1 !important;

    text-align: center;

    justify-self: end;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


/* Icon movement on hover */

.property-row:hover .property-icon {
    transform: scale(1.08);

    background: #e4ebff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .property-types-section {
        padding: 75px 25px;
    }

    .property-list {
        max-width: 100%;
    }

    .property-row {
        grid-template-columns: 55px minmax(0, 1fr) 60px;

        gap: 20px;

        padding: 28px 30px;
    }

    .property-content h3 {
        font-size: 23px;
    }

    .property-content p {
        font-size: 13px;
    }

    .property-icon.material-icons-outlined {
        width: 52px;
        height: 52px;

        font-size: 25px !important;

        border-radius: 16px;
    }
}


/* =====================================================
   MOBILE / TABLET
===================================================== */

@media (max-width: 767px) {

    .property-types-section {
        /*
         * IMPORTANT:
         * This creates the left/right breathing room
         * on mobile.
         */
        padding: 60px 18px;
    }


    /* Header */

    .property-types-section > .text-center {
        margin-bottom: 35px;

        padding-left: 2px;
        padding-right: 2px;
    }

    .property-types-section .section-badge {
        font-size: 10px;

        padding: 7px 13px;
    }

    .property-types-section .display-4 {
        font-size: 34px;

        line-height: 1.15;

        margin-top: 15px !important;
    }

    .property-types-section .section-subtitle {
        font-size: 14px;

        line-height: 1.65;
    }


    /* Property list */

    .property-list {
        width: 100%;

        gap: 12px;
    }


    /* Property cards */

    .property-row {
        width: 100%;

        grid-template-columns:
            42px
            minmax(0, 1fr)
            48px;

        align-items: center;

        gap: 12px;

        min-height: auto;

        padding: 22px 17px;

        border-radius: 18px;
    }


    /* Number */

    .property-number {
        font-size: 12px;
    }


    /* Text */

    .property-content h3 {
        font-size: 19px;

        margin-bottom: 5px;
    }

    .property-content p {
        font-size: 12px;

        line-height: 1.55;
    }


    /* Icon */

    .property-icon.material-icons-outlined {
        width: 43px;
        height: 43px;

        border-radius: 13px;

        font-size: 21px !important;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .property-types-section {
        /*
         * DEFINITIVE MOBILE GUTTER
         */
        padding-left: 16px;
        padding-right: 16px;
    }


    .property-types-section > .text-center {
        padding-left: 3px;
        padding-right: 3px;
    }


    .property-types-section .display-4 {
        font-size: 28px;
    }


    .property-types-section .section-subtitle {
        font-size: 13px;
    }


    .property-list {
        width: 100%;

        gap: 11px;
    }


    .property-row {
        /*
         * minmax(0, 1fr) is important.
         * It prevents long text from forcing
         * horizontal overflow.
         */
        grid-template-columns:
            32px
            minmax(0, 1fr)
            42px;

        gap: 9px;

        padding: 18px 13px;

        border-radius: 16px;
    }


    .property-number {
        font-size: 11px;
    }


    .property-content {
        min-width: 0;
    }


    .property-content h3 {
        font-size: 17px;

        line-height: 1.2;

        margin-bottom: 5px;
    }


    .property-content p {
        font-size: 11px;

        line-height: 1.5;

        overflow-wrap: break-word;
        word-break: normal;
    }


    .property-icon.material-icons-outlined {
        width: 38px;
        height: 38px;

        border-radius: 11px;

        font-size: 19px !important;
    }
}



.contact-hero{
    padding:120px 0 70px;
}

.contact-hero-card{

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f8faff
    );

    border-radius:32px;

    padding:10px;

    text-align:center;

    border:1px solid #edf2f7;

    box-shadow:
    0 25px 80px rgba(0,0,0,.06);
}

.contact-pill{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#eef2ff;

    color:#687cfe;

    font-weight:700;
}

.contact-hero-card h2{
    font-size:clamp(3rem,5vw,4.5rem);
    font-weight:800;
    margin:25px 0;
}

.contact-hero-card h2 span{
    color:#687cfe;
}

.contact-hero-card p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.contact-actions{
    margin-top:35px;
    display:flex;
    gap:15px;
    justify-content:center;
}

.contact-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    text-align:center;

    border:1px solid #edf2f7;

    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.contact-card span{
    font-size:42px !important;
    color:#687cfe;
    margin-bottom:15px;
}
