:root {
    --gradient-purple: #FF6600 !important;
    --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-orange: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-pink: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Poppins';
}
/* Header */
.header-link{
    color: #000000 !important;
    font-size: 18px !important;
}
.btn.get-started-free , .btn.get-started-free:hover{
    color: white;
    background-color: #201F23;
    font-size: 18px;
    border-radius: 0.5rem;
    padding: 0.7rem 1.5rem 0.7rem 1.5rem;
}

/* Gallery Profile Dropdown */
@keyframes profileDropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-profile-wrapper {
    position: relative;
}

.gallery-profile-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e53e3e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s ease;
}

.gallery-profile-btn:hover {
    transform: scale(1.08);
}

.gallery-profile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 9999;
    overflow: hidden;
    animation: profileDropIn 0.2s ease;
}

.gallery-profile-info {
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8f9ff, #f0f1ff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gallery-profile-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.gallery-profile-email {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.gallery-profile-actions {
    padding: 8px;
}

.gallery-logout-btn {
    width: 100%;
    border: none;
    background: none;
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
    color: #e53e3e;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s ease;
}

.gallery-logout-btn:hover {
    background: #fff5f5;
}
/* Header */

/* footer */
.footer{
    background-color: #ffff;
}
.footer-section-header{
    color: #161C2D;
    font-size: 18px;
    line-height: 31px;
}
.footer-section > ul.list-unstyled > li > a{
    color: #161C2D !important;
    font-size: 20px;
    line-height: 48px;
    font-weight: 300 !important;
}
.footer-description{
    line-height: 31px;
    color: #161C2D;
    opacity: 70%;
    font-size: 18px;

}
.media-icons:hover{
    color: #FF6602 !important;
}
/* footer */
/* Button Styles */
.btn-primary {
    background: #FF6600;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 32px;
}

.btn-primary:hover {
    background: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    color: #FF6600;
    border: 2px solid #FF6600;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 32px;
}

.btn-outline-primary:hover {
    background: #FF6600;
    border-color: #FF6600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-outline-secondary {
    color: #6b7280;
    border: 2px solid #d1d5db;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #374151;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section,
.property-banner-section {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 0 80px;
}

.badge-custom {
    background: rgb(143 144 147 / 10%);
    color: #FF6600;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
}
.demo-btn{
    background: #d8d8d8 !important;
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background-color: #FF6600; /* purple */
    border-radius: 50%;
    display: inline-block;
    animation: blink 0.4s infinite; /* faster blink */
    margin-right: 8px;
}
.section-text, .{
    color: #FF6600 !important;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    } /* dim at half-way */
    100% {
        opacity: 1;
    }
}

.text-gradient {
    background: linear-gradient(
        to right,
        #FF6600,
        #333333
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}
.btn-bg-gradient {
    background-color: #FF6600 !important;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-bg-gradient:hover {
    transform: translateY(-2px);
    color: white;
    background-color: #e65c00 !important; /* Slightly darker orange on hover */
}
/* More specific selector */
a.btn.btn-attributes,button.btn.btn-attributes {
    font-weight: 400;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.btn-attributes:hover {
    transform: translateY(-2px) !important;
}

.text-color {
    color: gray;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Card hover */
.feature-card:hover {
    border: 1px solid #FF6600;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Icon container */
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden; /* IMPORTANT for zoom */
}

/* Icon image */
.feature-icon > img {
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

/* Title */
.feature-title {
    transition: color 0.3s ease;
}

/* 🔥 Hover effects */
.feature-card:hover .feature-icon {
    transition: 0.6s ease;
    transform: scale(1.1);
}

.feature-card:hover .feature-title {
    color: #2563eb; /* blue */
}

.feature-title {
    line-height: calc(1.75 / 1.25);
    font-size: 1.25rem;
    font-weight: 600;
}
.feature-description {
    color: gray;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: color 0.3s ease;
}

.icon-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}
.icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.icon-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}
.icon-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}
.icon-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}
.icon-cyan {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

/* Step Cards */
.step-card-flow {
    position: relative;
    padding: 2rem 1rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: all 0.35s ease;
    overflow: hidden;
}

.step-card-flow:hover {
    border-color: #e5e7eb;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* transform: translateY(-6px); */
}

/* Large faded number */
.step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 60px;
    font-weight: 800;
    color: #f3f4f6;
    z-index: 0;
}

/* Floating icon */
.step-icon-float {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    border-radius: 10px;
    font-size: 24px;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Content */
.step-title {
    line-height: calc(1.75 / 1.25);
    font-weight: 600;
    margin-top: 5rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.step-text {
    color: gray;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Arrow between cards */
.step-arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    width: 28px;
    height: 28px;
    border-top: 2px solid #e5e7eb;
    border-right: 2px solid #e5e7eb;
    transform: translateY(-50%) rotate(45deg);
    background: #fff;
}

/* Remove arrow on last card */
.step-flow .col-lg-3:last-child .step-arrow {
    display: none;
}



/* Pricing Cards */
.pricing-section {
    background-color: #fbf9fa;
}
.pricing-card {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    background: white;
    position: relative;
    padding: 1.5rem;
}

.pricing-card:hover {
    border-color: #FF6600;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: #FF6600;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.25);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured .btn-select {
    background: var(--gradient-purple);
    color: white;
    border: none;
}

.pricing-card.featured .btn-select:hover {
    background: #FF6600 !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-select {
    font-weight: 700;
    padding: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.popular-badge {
    font-weight: 400;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    background: #FF6600 !important;
    color: white;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.get-started {
    font-weight: 400;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    background: #FF6600 !important;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.package-btns {
    font-weight: 400;
    border: 1px solid;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: gray;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.package-btns:hover {
    color: white;
    background: #FF6600 !important;
}
.checked-icon,
.cross-icon {
    font-size: 1.5rem;
}
.cross-icon-text {
    color: #6a7282 !important;
}

.package-text {
    font-size: 1rem;
    color: rgb(39, 37, 37);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.package-subtitle {
    font-size: 1rem;
    color: gray;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonial Cards */
/* Section */
.testimonial-section {
    background: #eeeeef;
    overflow: hidden;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.testimonial-section-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #171A31;
    margin: 0;
}

/* Slider wrapper */
.testimonial-slider-wrap {
    margin: 0 auto;
    padding: 0 34px;
}

/* Card */
.testimonial-box {
    background: transparent;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: none;
}

.testimonial-box__content {
    background: #f9f9f9;
    min-height: 210px;
    padding: 38px 44px 34px;
    display: flex;
    align-items: flex-start;
}

.testimonial-box__text {
    margin: 0;
    color: #141414;
    font-size: 24px;
    line-height: 1.8;
    font-weight: 300;
}

/* Footer */
.testimonial-box__footer {
    background: linear-gradient(90deg, #1f1d26 0%, #17151c 100%);
    min-height: 112px;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.testimonial-box__author {
    gap: 18px;
}

.testimonial-box__avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border: 2px solid rgba(255,255,255,0.2);
    overflow: hidden;
    background: #fff;
}

.testimonial-box__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-box__meta h5 {
    margin: 2px 0 2px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
}

.testimonial-box__meta span {
    display: block;
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 18px;
    line-height: 1.2;
}

.testimonial-box__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
}

.testimonial-box__stars i {
    color: #ffffff;
    font-size: 12px;
}

.testimonial-box__quote {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1;
    padding-left: 20px;
}

.testimonial-box__quote span {
    display: inline-block;
    font-size: 92px;
    font-weight: 700;
    line-height: 0.7;
    transform: translateY(8px);
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.testimonial-arrow i {
    font-size: 20px;
    color: #ffffff;
    line-height: 1;
}

.testimonial-arrow--prev {
    left: -1.5rem;
    background: #00051A;
}

.testimonial-arrow--next {
    right: -1.5rem;
    background: #00051A;
}
.testimonial-arrow--prev:hover, .testimonial-arrow--next:hover{
    background-color: #FF6602;
}

.testimonial-arrow:hover {
    transform: translateY(-50%) scale(1.06);
}

/* Remove old hover card effect */
.testimonial-card,
.testimonial-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Carousel smoothness */
#testimonialCarousel .carousel-item {
    transition: transform 0.7s ease-in-out;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .testimonial-section-title {
        font-size: 44px;
    }

    .testimonial-slider-wrap {
        padding: 0 26px;
    }
}

@media (max-width: 991.98px) {
    .testimonial-section-title {
        font-size: 38px;
    }

    .testimonial-box__content {
        min-height: auto;
    }

    .testimonial-arrow--prev {
        left: -4px;
    }

    .testimonial-arrow--next {
        right: -4px;
    }
}
@media (max-width: 767.98px) {
    .testimonial-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .testimonial-section-title {
        font-size: 30px;
    }

    /* top arrows ke liye thora space */
    .testimonial-slider-wrap {
        position: relative;
        padding: 30px 12px 0;
    }

    .testimonial-box__content {
        padding: 26px 22px;
    }

    .testimonial-box__text {
        font-size: 16px;
        line-height: 1.7;
    }

    .testimonial-box__footer {
        padding: 18px 20px;
    }

    .testimonial-box__avatar {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .testimonial-box__quote span {
        font-size: 60px;
    }

    /* arrows top-right under title */
    #testimonialCarousel {
        position: relative;
    }

    .testimonial-arrow {
        top: -70px;
        bottom: auto;
        transform: none;
        width: 44px;
        height: 44px;
    }

    .testimonial-arrow:hover {
        transform: scale(1.05);
    }

    .testimonial-arrow--prev {
        left: auto;
        right: 52px;
    }

    .testimonial-arrow--next {
        right: 0;
        left: auto;
    }

    .testimonial-arrow i {
        font-size: 18px;
    }
    .testimonial-box__meta h5, .testimonial-box__meta span{
        font-size: 14px;
    }
}
/* Testimonial Cards */

/* final cta book demo */
.book-demo-section {
    position: relative;
    padding: 70px 0;
    background-image: url('../images/book-demo-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.book-demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 26, 0.45);
}

.book-demo-section .container {
    z-index: 2;
}

/* Left side */
.book-demo-content {
    padding: 20px 0;
}

.book-demo-title {
    font-size: 80px;
    line-height: 0.95;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -1px;
}

.book-demo-text {
    font-size: 24px;
    color: #fff;
    margin: 0 0 34px;
    font-weight: 300;
    text-align: justify;
}

.book-demo-actions {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 270px;
}

.demo-contact-btn {
    height: 46px;
    border-radius: 999px;
    padding: 0 6px 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 270px;
}

.demo-contact-btn__text {
    flex: 1;
    text-align: center;
    font-size: 16px;
}

.demo-contact-btn__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.demo-contact-btn--light {
    background: #fff;
    color: #111;
    padding: 0rem 0.5rem 0rem 2rem;
}

.demo-contact-btn--light .demo-contact-btn__icon {
    background: #ff6b00;
    color: #fff;
}

.demo-contact-btn--orange {
    background: #ff6b00;
    color: #fff;
    font-size: 16px;
    padding: 0rem 0.5rem 0rem 2rem;

}

.demo-contact-btn--orange .demo-contact-btn__icon {
    background: #fff;
    color: #111;
}

.demo-contact-btn:hover {
    transform: translateY(-2px);
}

/* Form card */
.book-demo-form-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px 28px 32px;
    max-width: 500px;
    margin-left: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.book-demo-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #2b2f42;
    margin-bottom: 8px;
}

.book-demo-input {
    height: 36px;
    border: 1px solid #d8dde7;
    border-radius: 7px;
    box-shadow: none !important;
    font-size: 14px;
    color: #1f2430;
    padding: 8px 12px;
}

.book-demo-input::placeholder {
    color: #8b93a7;
}

.book-demo-input:focus {
    border-color: #ff6b00;
}

.book-demo-phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.book-demo-country {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #2b2f42;
    z-index: 2;
    white-space: nowrap;
}

.book-demo-phone-input {
    padding-left: 74px;
}

.book-demo-textarea {
    height: 92px !important;
    resize: none;
    padding-top: 10px;
}

.book-demo-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 2px;
}

.book-demo-check {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-color: #cfd5df;
    box-shadow: none !important;
}

.book-demo-check:checked {
    background-color: #ff6b00;
    border-color: #ff6b00;
}

.book-demo-check-label {
    font-size: 14px;
    color: #6f7688;
    line-height: 1.45;
}

.book-demo-check-label a {
    color: #6f7688;
    text-decoration: underline;
}

.book-demo-submit-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 6px;
    background: #ff6b00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-demo-submit-btn:hover {
    background: #e85f00;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .book-demo-title {
        font-size: 58px;
    }
}

@media (max-width: 991.98px) {
    .book-demo-section {
        padding: 60px 0;
    }

    .book-demo-content {
        max-width: 100%;
    }

    .book-demo-title {
        font-size: 48px;
    }

    .book-demo-text {
        max-width: 100%;
    }

    .book-demo-form-card {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .book-demo-section {
        padding: 45px 0;
    }

    .book-demo-title {
        font-size: 40px;
        line-height: 1;
    }

    .book-demo-text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .book-demo-actions {
        max-width: 100%;
        gap: 16px;
    }

    .demo-contact-btn {
        min-width: 100%;
        width: 100%;
    }

    .book-demo-form-card {
        padding: 22px 18px 24px;
        border-radius: 20px;
    }
}
/* final cta book demo */


/* The future of estate agency technology. */

.estate-tech-section {
    background: #ffffff;
    overflow: hidden;
}

.estate-tech-grid {
    display: grid;
    grid-template-columns: 20% 30% 50%;
    min-height: 760px;
}

/* LEFT IMAGE */
.estate-tech-left,
.estate-tech-right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.estate-tech-left::before {
    content: "";
    inset: 0;
    background: rgba(9, 14, 24, 0.50);
    backdrop-filter: blur(2px);
}

/* CENTER ORANGE SLIDER */
.estate-tech-center {
    background: #ff6800;
    position: relative;
    padding: 56px 56px 110px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.estate-tech-top-circle {
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: block;
    margin: 0 auto 28px;
}

.estate-tech-slider {
    position: relative;
    flex: 1;
    min-height: 470px;
}

.estate-tech-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: all 0.5s ease;
    max-width: 100%;
}

.estate-tech-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.estate-tech-title {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: bold;
    letter-spacing: -0.8px;
    margin: 0 0 24px;
}

.estate-tech-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
    max-width: 470px;
}

.estate-tech-nav {
    position: absolute;
    left: 56px;
    bottom: 95px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.estate-tech-dot {
    width: 50px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.estate-tech-dot.active {
    background: #ffffff;
    width: 54px;
}

.estate-tech-bottom-arc {
    position: absolute;
    right: -95px;
    bottom: -95px;
    width: 310px;
    height: 310px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

/* RIGHT VIDEO */
.estate-tech-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.estate-video-btn{
    width: 190px;
    height: 190px;
    border: 0;
    background: transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.estate-video-disc {
    width: 142px;
    height: 142px;
    border-radius: 50%;
    background: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.estate-video-disc svg {
    width: 58px;
    height: 58px;
    display: block;
    margin-left: 6px;
}

.estate-video-disc.spin-now {
    animation: estateVideoSpin 1s ease-in-out;
}

.estate-video-pulse {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.78);
    opacity: 0;
    z-index: 1;
}

.pulse-one {
    inset: 22px;
    animation: estatePulse 2.2s ease-out infinite;
}

.pulse-two {
    inset: 10px;
    animation: estatePulse 2.2s ease-out 1.1s infinite;
}

@keyframes estatePulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    65% {
        transform: scale(1.18);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

@keyframes estateVideoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* VIDEO MODAL */
.estate-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.estate-video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.estate-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(4px);
}

.estate-video-dialog {
    position: relative;
    width: min(980px, calc(100% - 30px));
    margin: 60px auto;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 65px rgba(0, 0, 0, 0.45);
}

.estate-video-dialog video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.estate-video-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    z-index: 3;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1399.98px) {
    .estate-tech-grid {
        min-height: 680px;
    }

    .estate-tech-center {
        padding: 48px 38px 95px;
    }

    .estate-tech-nav {
        left: 38px;
        bottom: 78px;
    }

    .estate-tech-slider {
        min-height: 430px;
    }
}

@media (max-width: 1199.98px) {
    .estate-video-btn {
        width: 165px;
        height: 165px;
    }

    .estate-video-disc {
        width: 128px;
        height: 128px;
    }

    .estate-video-disc svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 991.98px) {
    .estate-tech-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left center"
            "right right";
        min-height: auto;
    }

    .estate-tech-left {
        grid-area: left;
        min-height: 420px;
    }

    .estate-tech-center {
        grid-area: center;
        min-height: 420px;
        padding: 40px 26px 82px;
    }

    .estate-tech-right {
        grid-area: right;
        min-height: 420px;
    }

    .estate-tech-slider {
        min-height: 360px;
    }

    .estate-tech-nav {
        left: 26px;
        bottom: 52px;
    }

    .estate-tech-bottom-arc {
        width: 220px;
        height: 220px;
        right: -62px;
        bottom: -62px;
    }
}

@media (max-width: 767.98px) {
    .estate-tech-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "center"
            "right";
    }

    .estate-tech-left {
        min-height: 290px;
    }

    .estate-tech-center {
        min-height: auto;
        padding: 34px 18px 78px;
    }

    .estate-tech-top-circle {
        margin-bottom: 18px;
    }

    .estate-tech-slider {
        min-height: 350px;
    }

    .estate-tech-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .estate-tech-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .estate-tech-nav {
        left: 18px;
        bottom: 34px;
    }

    .estate-tech-dot,
    .estate-tech-dot.active {
        width: 34px;
        height: 3px;
    }

    .estate-tech-bottom-arc {
        width: 170px;
        height: 170px;
        right: -46px;
        bottom: -46px;
    }

    .estate-tech-right {
        min-height: 300px;
    }

    .estate-video-btn {
        width: 140px;
        height: 140px;
    }

    .estate-video-disc {
        width: 104px;
        height: 104px;
    }

    .estate-video-disc svg {
        width: 40px;
        height: 40px;
    }

    .pulse-one {
        inset: 18px;
    }

    .pulse-two {
        inset: 8px;
    }

    .estate-video-dialog {
        width: calc(100% - 16px);
        margin: 40px auto;
    }
}
/* The future of estate agency technology. */


/* property manage section */

.property-manage-section {
    padding: 95px 0 105px;
    overflow: hidden;
    background-color: #ffffff;
}

.property-manage-head {
    margin-bottom: 40px;
}

.property-manage-head h2 {
    margin: 0;
    color: #000000;
    font-size: 50px;
    font-weight: 800;
}

.property-manage-tabs {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin: 0 auto -1px;
    position: relative;
    z-index: 3;
}

.pm-tab {
    min-width: 245px;
    height: 78px;
    padding: 0 28px;
    border: 1px solid rgba(255,255,255,0.55);
    background: #000000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.25s ease;
}

.pm-tab:first-child {
    border-top-left-radius: 12px;
}

.pm-tab:last-child {
    border-top-right-radius: 12px;
}

.pm-tab.active {
    background: #ff6a00;
}

.property-manage-board {
    background: linear-gradient(90deg, #FFFFFF 0%, #FFECDF 100%);
    /* border: 1.5px solid #ff7b22; */
    border-radius: 30px;
    padding: 34px 32px 32px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03); */
}

.pm-tab-content {
    position: relative;
}

.pm-pane {
    display: none;
}

.pm-pane.active {
    display: block;
}

.pm-left-content {
    min-height: 530px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px 16px 10px 18px;
}

.pm-left-top {
    max-width: 410px;
}

.pm-left-bottom {
    max-width: 470px;
    padding-top: 86px;
}

.pm-mini-title {
    font-size: 1rem;
    color: #FF6602;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.pm-left-content h3 {
    margin: 0;
    color: #2d2d2d;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
}

.pm-left-content p {
    margin: 0 0 36px;
    color: #454545;
    font-size: 20px;
    line-height: 1.58;
    font-weight: 300;
}

.pm-dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 12px;
    background: #1e1e25;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.pm-dark-btn:hover {
    background: #111111;
    color: #ffffff;
    text-decoration: none;
}

.pm-visual-wrap {
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-visual-image {
    width: 100%;
    max-width: 760px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 1399.98px) {
    .pm-tab {
        min-width: 220px;
    }

    .property-manage-board {
        padding: 32px 26px 28px;
    }

    .pm-left-bottom {
        padding-top: 72px;
    }
}

@media (max-width: 1199.98px) {
    .pm-left-content,
    .pm-visual-wrap {
        min-height: 500px;
    }

    .pm-left-bottom {
        padding-top: 56px;
    }
}

@media (max-width: 991.98px) {
    .property-manage-section {
        padding: 76px 0 84px;
    }

    .property-manage-head {
        margin-bottom: 32px;
    }

    .property-manage-tabs {
        margin-bottom: 0;
    }

    .pm-tab {
        min-width: 170px;
        height: 62px;
        font-size: 17px;
    }

    .property-manage-board {
        padding: 28px 20px 24px;
        border-radius: 24px;
    }

    .pm-left-content,
    .pm-visual-wrap {
        min-height: auto;
    }

    .pm-left-content {
        padding: 14px 8px 0;
    }

    .pm-left-bottom {
        padding-top: 28px;
    }

    .pm-visual-wrap {
        padding-top: 6px;
    }
}

@media (max-width: 767.98px) {
    .property-manage-section {
        padding: 58px 0 64px;
    }

    .property-manage-head h2 {
        font-size: 32px;
        line-height: 1.22;
    }

    .property-manage-tabs {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
    }

    .pm-tab {
        min-width: 115px;
        height: 52px;
        border-radius: 10px;
        font-size: 15px;
        padding: 0 18px;
    }

    .property-manage-board {
        border-radius: 20px;
        padding: 22px 16px 20px;
    }

    .pm-left-content {
        padding: 8px 4px 0;
    }

    .pm-left-content h3 {
        font-size: 32px;
    }

    .pm-left-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .pm-left-bottom {
        padding-top: 22px;
    }

    .pm-dark-btn {
        min-width: 210px;
        height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .property-manage-head h2 {
        font-size: 28px;
    }

    .pm-left-content h3 {
        font-size: 28px;
    }

    .pm-mini-title {
        font-size: 13px;
    }

    .pm-dark-btn {
        width: 100%;
        min-width: 100%;
    }
}

/* property manage section */


/* product feature section */
.product-feature-section {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    overflow: visible;
}

.product-feature-section .container-fluid,
.product-feature-section .row {
    overflow: visible;
}

.product-feature-section .row {
    min-height: 555px;
}

/* =========================
   LEFT SIDE
========================= */
.pfs-left {
    min-height: 555px;
    position: relative;
    z-index: 1;
    background-image: url("../images/pfs-left.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pfs-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.42) 55%,
        rgba(0, 0, 0, 0.28) 100%
    );
}

.pfs-left-inner {
    position: relative;
    z-index: 2;
    padding: 70px 0px 70px 180px;
}

.pfs-title {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 800;
}

/* =========================
   ACCORDION
========================= */
.pfs-accordion {
    max-width: 515px;
}

.pfs-accordion-item {
    margin: 0 0 16px;
    border: 0;
    background: transparent;
}

.pfs-accordion .accordion-collapse {
    border: 0;
}

.pfs-accordion-trigger {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    box-shadow: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    padding: 8px 28px;
    border-radius: 18px 18px 0 0;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.pfs-accordion-trigger:focus,
.pfs-accordion-trigger:focus-visible {
    outline: none;
    box-shadow: none;
}

.pfs-accordion-trigger.collapsed {
    background: transparent;
}

.pfs-accordion-trigger.collapsed .pfs-acc-title {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.pfs-accordion-trigger:not(.collapsed) {
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(10, 13, 34, 0.14);
    padding-top: 24px;
    padding-bottom: 14px;
}

.pfs-accordion-trigger:not(.collapsed) .pfs-acc-title {
    color: #060C3C;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.28;
}

.pfs-accordion-body {
    background: #ffffff;
    padding: 0 28px 24px 84px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 34px rgba(10, 13, 34, 0.14);
    margin-top: -2px;
}

.pfs-accordion-body p {
    margin: 0 0 12px;
    color: #5D6180;
    font-size: 20px;
}

.pfs-accordion-body a {
    color: #FF6602;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================
   ICONS
========================= */
.pfs-acc-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pfs-acc-title {
    display: inline-block;
}

.pfs-acc-icon-box {
    background: #ff7a00;
    color: #ffffff;
    font-size: 20px;
}

.pfs-acc-icon-sync {
    background: #ff7a00;
    color: #ffffff;
    font-size: 18px;
}

.pfs-acc-icon-report {
    background: transparent;
}

.pfs-pie {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
    background: conic-gradient(#ff7a00 0 74%, #ffd24f 74% 100%);
    position: relative;
}

.pfs-pie::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 6px;
    left: 9px;
    background: #15204c;
    border-radius: 50%;
}

/* =========================
   RIGHT SIDE
========================= */
.pfs-right-col {
    position: relative;
    background: #f3f3f5;
    overflow: visible;
    z-index: 2;
}

.pfs-right {
    position: relative;
    min-height: 555px;
    height: 100%;
    background: #f3f3f5;
    overflow: visible;
    padding: 0;
}

.pfs-right-image-wrap {
    position: absolute;
    top: 50%;
    left: -12rem;
    transform: translateY(-50%);
    width: calc(100% + 72px);
    max-width: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    padding: 6rem;
}

.pfs-right-image {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1399px) {
    .pfs-left-inner {
        padding: 54px 28px 42px 60px;
    }

    .pfs-title {
        font-size: 44px;
        max-width: 390px;
    }

    .pfs-right-image-wrap {
        left: -50px;
        width: calc(100% + 50px);
    }

    .pfs-right-image {
        max-width: 680px;
    }
}

@media (max-width: 1199px) {
    .product-feature-section .row,
    .pfs-left,
    .pfs-right {
        min-height: 500px;
    }

    .pfs-left-inner {
        padding: 48px 24px 40px 40px;
    }

    .pfs-title {
        font-size: 38px;
        max-width: 355px;
    }

    .pfs-right-image-wrap {
        left: -35px;
        width: calc(100% + 35px);
    }

    .pfs-right-image {
        max-width: 600px;
    }
}

@media (max-width: 991px) {
    .product-feature-section .row,
    .pfs-left,
    .pfs-right {
        min-height: auto;
    }

    .pfs-left-inner {
        max-width: 100%;
        padding: 42px 24px 36px;
    }

    .pfs-title {
        max-width: 100%;
        font-size: 36px;
    }

    .pfs-right {
        min-height: 420px;
    }

    .pfs-right-image-wrap {
        position: relative;
        top: auto;
        left: 0;
        width: 100%;
        transform: none;
        min-height: 420px;
        justify-content: center;
        padding: 20px;
    }

    .pfs-right-image {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .pfs-left-inner {
        padding: 38px 18px 30px;
    }

    .pfs-title {
        font-size: 30px;
        line-height: 1.14;
        margin-bottom: 22px;
    }

    .pfs-accordion-trigger {
        gap: 14px;
        padding: 7px 18px;
    }

    .pfs-accordion-trigger.collapsed .pfs-acc-title {
        font-size: 16px;
    }

    .pfs-accordion-trigger:not(.collapsed) .pfs-acc-title {
        font-size: 18px;
    }

    .pfs-accordion-body {
        padding: 0 18px 18px 66px;
    }

    .pfs-right {
        min-height: 340px;
    }

    .pfs-right-image-wrap {
        min-height: 340px;
        padding: 15px;
    }
    .pm-visual-wrap>img{
        height: 100%;
        width: 100%;
    }
}
/* product feature section */


/* Features Listing */
.rtxhub-tenant-slider-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 70px 0 130px;
    z-index: 1;
}

.rtxhub-tenant-pattern {
    position: absolute;
    left: -180px;
    bottom: 35px;
    width: 470px;
    height: 470px;
    opacity: 0.30;
    pointer-events: none;
    background: repeating-radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.06) 0 1px,
        transparent 1px 14px
    );
    border-radius: 50%;
}

.rtxhub-tenant-slider-wrap {
    position: relative;
}

.rtxhub-tenant-slider-viewport {
    overflow: hidden;
}

.rtxhub-tenant-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease;
    will-change: transform;
}

.rtxhub-tenant-slide {
    min-width: 100%;
    width: 100%;
}

.rtxhub-tenant-content {
    max-width: 500px;
    padding-top: 25px;
    background-image: url('../images/layers.png');
}

.rtxhub-tenant-content h2 {
    margin: 0 0 3px;
    color: #0b1230;
    font-size: 47px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: -1.8px;
}

.rtxhub-tenant-content h3 {
    margin: 0 0 22px;
    color: #ff6a00;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.4px;
}

.rtxhub-tenant-content > p {
    margin: 0;
    max-width: 450px;
    color: #34384b;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}

.rtxhub-tenant-btns,
.rtxhub-feature-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.rtxhub-btn-dark,
.rtxhub-btn-outline,
.rtxhub-btn-orange,
.rtxhub-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.rtxhub-btn-dark {
    background: #232129;
    color: #ffffff;
    border: 1px solid #232129;
}

.rtxhub-btn-dark:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.rtxhub-btn-outline {
    background: transparent;
    color: #232129;
    border: 1.5px solid #ff8a38;
}

.rtxhub-btn-outline:hover {
    color: #232129;
    transform: translateY(-2px);
}

.rtxhub-play-ring {
    width: 30px;
    height: 30px;
    border: 2px solid #ff8a38;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff8a38;
    flex-shrink: 0;
}

.rtxhub-play-ring svg {
    width: 12px;
    height: 12px;
}

.rtxhub-tenant-note {
    margin-top: 105px;
    max-width: 480px;
}

.rtxhub-tenant-note h4 {
    margin: 0 0 10px;
    color: #182038;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.rtxhub-tenant-note p {
    margin-bottom: 2rem;
    color: #3c4258;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
}

.rtxhub-tenant-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -18px;
    padding-left: 0;
}

.rtxhub-tenant-dots button {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rtxhub-tenant-dots button.active {
    background: #222129;
}

.rtxhub-tenant-dots button.active-next {
    background: #ff6a00;
}

.rtxhub-tenant-dots button.rtxhub-dot-muted {
    pointer-events: none;
}

.rtxhub-tenant-visual {
    text-align: right;
}

.rtxhub-tenant-visual img {
    width: 100%;
    max-width: 820px;
    height: auto;
    display: block;
    margin-left: auto;
}

/* overlap stats */
.rtxhub-stats-overlap-wrap {
    position: relative;
    z-index: 6;
    margin-top: -42px;
    margin-bottom: -46px;
}

.rtxhub-stats-bar {
    background: #ff6a00;
    border-radius: 12px;
    padding: 28px 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.rtxhub-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rtxhub-stat-item h3 {
    margin: 0;
    color: #ffffff;
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -1.8px;
    flex-shrink: 0;
}

.rtxhub-stat-item p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 300;
    max-width: 185px;
}

/* dark feature section */
.rtxhub-feature-section {
    position: relative;
    padding: 150px 0 95px;
    overflow: hidden;
    z-index: 1;
}

.rtxhub-feature-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.rtxhub-feature-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.rtxhub-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 10, 0.95) 0%,
        rgba(5, 5, 6, 0.92) 18%,
        rgba(0, 0, 0, 0.96) 42%,
        rgba(0, 0, 0, 0.985) 72%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 2;
}

.rtxhub-feature-inner {
    position: relative;
    z-index: 3;
}

.rtxhub-feature-left {
    max-width: 500px;
    padding-right: 15px;
}

.rtxhub-feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 5px 14px;
    border: 1px solid #ff7b22;
    border-radius: 999px;
    background: rgba(10, 10, 18, 0.35);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.rtxhub-feature-left h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 60px;
    line-height: 0.96;
    font-weight: bold;
}

.rtxhub-feature-left p {
    margin: 0;
    max-width: 470px;
    color: rgba(255,255,255,0.92);
    font-size: 20px;
    line-height: 1.65;
    font-weight: 300;
}

.rtxhub-btn-orange {
    background: #ff6a00;
    color: #ffffff;
    border: 1px solid #ff6a00;
}

.rtxhub-btn-orange:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.rtxhub-btn-white {
    background: #ffffff;
    color: #222129;
    border: 1px solid #ffffff;
}

.rtxhub-btn-white:hover {
    color: #222129;
    transform: translateY(-2px);
}

.rtxhub-play-ring.orange {
    border-color: #ff6a00;
    color: #ff6a00;
}

.rtxhub-feature-cards-grid {
    display: flex;
    gap: 28px;
    justify-content: flex-end;
    align-items: flex-start;
}

.rtxhub-feature-scroll-column {
    position: relative;
    width: calc(50% - 14px);
    height: 690px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.rtxhub-feature-scroll-column-left {
    margin-top: -18px;
}

.rtxhub-feature-scroll-column-right {
    margin-top: 38px;
}

.rtxhub-feature-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 28px;
    will-change: transform;
}

.rtxhub-feature-scroll-column-left .rtxhub-feature-scroll-track {
    animation: rtxhubFeatureScroll 40s linear infinite;
}

.rtxhub-feature-scroll-column-right .rtxhub-feature-scroll-track {
    animation: rtxhubFeatureScroll 46s linear infinite;
}

.rtxhub-feature-scroll-column:hover .rtxhub-feature-scroll-track {
    animation-play-state: paused;
}
.rtxhub-feature-card {
    position: relative;
    border-radius: 28px;
    padding: 28px 24px 24px;
    min-height: 224px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 18px 42px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.rtxhub-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
}

.rtxhub-feature-card > * {
    position: relative;
    z-index: 1;
}

.rtxhub-feature-card:hover {
    background: #ff6a00;
    box-shadow: 0 22px 44px rgba(255, 106, 0, 0.26);
}

.rtxhub-feature-card-active::before {
    display: none;
}

.rtxhub-feature-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.rtxhub-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #ff6a00;
    color: #ffd38b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
}

.rtxhub-feature-card {
    transition: all 0.3s ease;
}

.rtxhub-feature-card:hover .rtxhub-card-icon {
    background-color: #ffffff !important;
    color: #000000 !important;
    fill: #000000 !important;
    border-color: #000000 !important;
}

.rtxhub-feature-card:hover .rtxhub-card-icon svg {
    color: #000000 !important;
    stroke: #000000 !important;
    fill: none !important;
}

.rtxhub-card-icon svg {
    width: 28px;
    height: 28px;
}

.rtxhub-card-icon-light {
    background: #ffffff;
    color: #111111;
}

.rtxhub-feature-card h4 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 700;
    max-width: 220px;
}

.rtxhub-feature-card p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    line-height: 1.58;
    font-weight: 700;
    max-width: 290px;
}

@keyframes rtxhubFeatureScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 14px));
    }
}

/* responsive */
@media (max-width: 1399px) {
    .rtxhub-tenant-content h2 {
        font-size: 42px;
    }

    .rtxhub-tenant-content h3 {
        font-size: 30px;
    }

    .rtxhub-feature-left h2 {
        font-size: 62px;
    }

    .rtxhub-stat-item h3 {
        font-size: 52px;
    }
}

@media (max-width: 1199px) {
    .rtxhub-tenant-slider-section {
        padding: 60px 0 115px;
    }

    .rtxhub-tenant-content > p {
        font-size: 18px;
    }

    .rtxhub-tenant-note {
        margin-top: 70px;
    }

    .rtxhub-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rtxhub-feature-left h2 {
        font-size: 54px;
    }

    .rtxhub-feature-left p {
        font-size: 18px;
    }

    .rtxhub-feature-card h4 {
        font-size: 24px;
    }

    .rtxhub-feature-card {
        min-height: 205px;
    }
}

@media (max-width: 991px) {
    .rtxhub-tenant-slider-section {
        padding: 55px 0 100px;
    }

    .rtxhub-tenant-content {
        max-width: 100%;
        padding-top: 0;
        margin-bottom: 40px;
    }

    .rtxhub-tenant-content h2 {
        font-size: 38px;
    }

    .rtxhub-tenant-content h3 {
        font-size: 28px;
    }

    .rtxhub-tenant-content > p {
        max-width: 100%;
        font-size: 17px;
    }

    .rtxhub-tenant-note {
        margin-top: 48px;
        max-width: 100%;
    }

    .rtxhub-tenant-visual {
        text-align: center;
    }

    .rtxhub-tenant-visual img {
        margin: 0 auto;
    }

    .rtxhub-tenant-dots {
        margin-top: 16px;
    }

    .rtxhub-stats-overlap-wrap {
        margin-top: -32px;
        margin-bottom: -34px;
    }

    .rtxhub-stats-bar {
        padding: 22px 22px;
    }

    .rtxhub-stat-item h3 {
        font-size: 42px;
    }

    .rtxhub-stat-item p {
        font-size: 15px;
    }

    .rtxhub-feature-section {
        padding: 128px 0 72px;
    }

    .rtxhub-feature-left {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .rtxhub-feature-left h2 {
        font-size: 46px;
    }

    .rtxhub-feature-left p {
        max-width: 100%;
        font-size: 17px;
    }

    .rtxhub-feature-cards-grid {
        gap: 18px;
    }

    .rtxhub-feature-scroll-column {
        width: calc(50% - 9px);
        height: 560px;
    }

    .rtxhub-feature-card {
        padding: 22px 18px;
        border-radius: 22px;
        min-height: 185px;
    }

    .rtxhub-feature-card h4 {
        font-size: 22px;
    }

    .rtxhub-feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .rtxhub-tenant-slider-section {
        padding: 48px 0 86px;
    }

    .rtxhub-tenant-content h2 {
        font-size: 26px;
        line-height: 1.05;
    }

    .rtxhub-tenant-content h3 {
        font-size: 24px;
    }

    .rtxhub-tenant-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .rtxhub-tenant-btns,
    .rtxhub-feature-btns {
        flex-direction: column;
        gap: 12px;
    }

    .rtxhub-btn-dark,
    .rtxhub-btn-outline,
    .rtxhub-btn-orange,
    .rtxhub-btn-white {
        width: 100%;
        min-height: 56px;
        font-size: 16px;
    }

    .rtxhub-tenant-note {
        margin-top: 36px;
    }

    .rtxhub-tenant-note h4 {
        font-size: 22px;
    }

    .rtxhub-tenant-note p {
        font-size: 15px;
    }

    .rtxhub-tenant-dots {
        margin-top: 14px;
        gap: 8px;
    }

    .rtxhub-tenant-dots button {
        width: 12px;
        height: 12px;
    }

    .rtxhub-stats-overlap-wrap {
        margin-top: -24px;
        margin-bottom: -26px;
    }

    .rtxhub-stats-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 18px;
    }

    .rtxhub-stat-item h3 {
        font-size: 34px;
    }

    .rtxhub-stat-item p {
        font-size: 14px;
        max-width: 100%;
    }

    .rtxhub-feature-section {
        padding: 108px 0 60px;
    }

    .rtxhub-feature-left h2 {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .rtxhub-feature-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .rtxhub-feature-cards-grid {
        flex-direction: column;
        gap: 18px;
    }

    .rtxhub-feature-scroll-column,
    .rtxhub-feature-scroll-column-left,
    .rtxhub-feature-scroll-column-right {
        width: 100%;
        height: 400px;
        margin-top: 0;
    }

    .rtxhub-feature-card {
        min-height: auto;
    }

    .rtxhub-feature-card h4 {
        font-size: 20px;
    }

    .rtxhub-feature-card p {
        max-width: 100%;
    }
}
/* Features Listing */

/* banner */
/* =========================
   PROPERTY MANAGEMENT HERO
========================= */

.pms-hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #371802;
}

.pms-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 78px;
    background: url('../images/banner-bg.png') center center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

.pms-hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 78px;
    background:
        linear-gradient(90deg,
            rgba(255, 102, 0, 0.92) 0%,
            rgba(255, 102, 0, 0.92) 18%,
            rgba(255, 120, 18, 0.78) 34%,
            rgba(255, 145, 55, 0.52) 48%,
            rgba(255, 175, 105, 0.24) 64%,
            rgba(255, 190, 130, 0.10) 100%
        ),
        linear-gradient(180deg,
            rgba(255, 102, 0, 0.92) 0%,
            rgba(255, 102, 0, 0.92) 24%,
            rgba(255, 170, 95, 0.08) 48%,
            rgba(255, 190, 130, 0.00) 72%
        ),
        linear-gradient(0deg,
            rgba(255, 190, 130, 0.24) 0%,
            rgba(255, 190, 130, 0.10) 18%,
            rgba(255, 190, 130, 0.00) 42%
        );
    z-index: 1;
    pointer-events: none;
}
.pms-hero-visual-col {
    position: relative;
    overflow: hidden;
}

/* disable old overlay if present in html */
.pms-hero-overlay {
    display: none;
}

.pms-hero-container,
.pms-bottom-bar-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.pms-hero-container {
    padding-left: 0;
    padding-right: 0;
}

.pms-bottom-bar-inner {
    padding-left: 52px;
    padding-right: 52px;
}

.pms-hero-container > .row {
    position: relative;
    min-height: 756px;
    margin: 0;
}

.pms-hero-container > .row > [class*="col-"] {
    position: static;
    padding-left: 0;
    padding-right: 0;
}

/* ========= LEFT CONTENT ========= */

.pms-hero-content-wrap {
    min-height: 756px;
    display: flex;
    align-items: center;
    padding: 34px 0 34px clamp(24px, 9vw, 180px);
    position: relative;
    z-index: 4;
}

.pms-hero-content {
    max-width: 530px;
}

.pms-hero-title {
    margin: 0;
    color: #ffffff;
    font-size: 68px;
    line-height: 0.97;
    font-weight: bold;
    letter-spacing: -2.5px;
}

.pms-hero-text {
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.97);
    font-size: 20px;
    line-height: 1.33;
    font-weight: 300;
}

.pms-hero-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.pms-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pms-hero-feature-icon {
    position: relative;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 12px;
    background: #ffffff;
    color: #1d1f27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}
.pms-hero-feature-icon>img{
    width: 30px;
    height: auto;
}

.pms-hero-feature-badge {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.pms-hero-feature-label {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
}

.pms-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 62px;
    flex-wrap: wrap;
}

.pms-btn {
    min-height: 74px;
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: 0.25s ease;
}

.pms-btn-dark {
    background: #1d1e27;
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(15, 16, 22, 0.18);
}

.pms-btn-dark:hover {
    background: #15161d;
    color: #ffffff;
}

.pms-btn-light {
    background: #ffffff;
    color: #1d1e27;
    box-shadow: 0 12px 24px rgba(24, 14, 0, 0.08);
}

.pms-btn-light:hover {
    color: #1d1e27;
}

.pms-play-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    border: 2px solid #ff6a00;
    color: #ff6a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* ========= RIGHT DASHBOARD ========= */

.pms-dashboard-wrap {
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    max-width: 920px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
}

.pms-dashboard-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    overflow: hidden;
}

#bannerPreview,
.pms-dashboard-card img {
    display: block;
    width: 100%;
    height: auto;
    border-top-left-radius: 1.5rem;
}

.pms-dashboard-image {
    display: block;
    width: 100%;
    height: auto;
}

/* ========= BOTTOM BAR ========= */

.pms-bottom-bar {
    position: relative;
    z-index: 5;
    min-height: 78px;
    background: #1d1e27;
    display: flex;
    align-items: center;
}

.pms-trusted-wrap,
.pms-video-note {
    display: flex;
    align-items: center;
}



.pms-bottom-bar .row {
    justify-content: center;
}

.pms-bottom-bar .col-lg-6 {
    display: flex;
    justify-content: center;
}

.pms-trusted-wrap,
.pms-video-note {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pms-video-note {
    gap: 12px;
}

.pms-trusted-text,
.pms-video-note span {
    text-align: center;
}

.pms-trusted-wrap {
    gap: 16px;
}

.pms-avatar-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pms-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.pms-avatar:first-child {
    margin-left: 0;
}

.pms-avatar-one {
    background: linear-gradient(135deg, #46392d 0%, #16181f 100%);
}

.pms-avatar-two {
    background: linear-gradient(135deg, #834227 0%, #2f1611 100%);
}

.pms-avatar-three {
    background: linear-gradient(135deg, #a42340 0%, #2b0c14 100%);
}

.pms-avatar-four {
    background: linear-gradient(135deg, #2d7ab2 0%, #0f2740 100%);
}

.pms-avatar-five {
    width: 42px;
    background: #4eaeea;
    font-size: 10px;
}

.pms-trusted-text,
.pms-video-note {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.2;
}

.pms-trusted-text strong {
    color: #ff8a1f;
    font-weight: 700;
}

.pms-video-note {
    justify-content: flex-end;
    gap: 12px;
}

.pms-video-note a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #ff8a1f;
    text-underline-offset: 4px;
}

.pms-video-note a:hover {
    color: #ffffff;
}

.pms-video-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    border: 1.5px solid #ff8a1f;
    color: #ff8a1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ========= RESPONSIVE ========= */

@media (max-width: 1599.98px) {
    .pms-hero-content-wrap {
        padding-left: 78px;
    }

    .pms-hero-title {
        font-size: 68px;
    }
}

@media (max-width: 1399.98px) {
    .pms-hero-content-wrap {
        padding-left: 110px;
    }

    .pms-hero-title {
        font-size: 52px;
        letter-spacing: -2px;
    }
    .pms-dashboard-card{
        max-width: 780px;
    }

    .pms-hero-feature-label {
        font-size: 20px;
    }
}

@media (max-width: 1199.98px) {
    .pms-hero-section::before,
    .pms-hero-section::after {
        inset: 0 0 78px 0;
    }

    .pms-hero-section::before {
        background-position: center center;
        opacity: 0.9;
    }

    .pms-hero-section::after {
        background:
            linear-gradient(180deg,
                rgba(10,10,10,0.52) 0%,
                rgba(10,10,10,0.18) 38%,
                rgba(10,10,10,0.02) 72%
            );
    }

    .pms-hero-container > .row,
    .pms-hero-content-wrap {
        min-height: auto;
    }

    .pms-hero-content-wrap {
        padding: 70px 40px 30px;
    }

    .pms-dashboard-wrap {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        padding: 20px 18px 48px;
    }

}

@media (max-width: 991.98px) {
    .pms-bottom-bar-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pms-hero-content-wrap {
        padding: 58px 18px 24px;
    }

    .pms-hero-title {
        font-size: 58px;
        letter-spacing: -1.5px;
    }

    .pms-hero-text {
        font-size: 16px;
        max-width: 100%;
    }

    .pms-hero-feature-label {
        font-size: 19px;
    }

    .pms-hero-actions {
        margin-top: 42px;
    }

    .pms-btn {
        min-height: 64px;
        padding: 16px 22px;
        font-size: 17px;
    }

    .pms-bottom-bar {
        padding: 18px 0;
    }

    .pms-trusted-wrap,
    .pms-video-note {
        justify-content: center;
        text-align: center;
    }

    .pms-video-note {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .pms-hero-title {
        font-size: 44px;
        line-height: 1.02;
    }

    .pms-hero-feature-item {
        align-items: flex-start;
    }

    .pms-hero-feature-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 23px;
    }

    .pms-hero-feature-label {
        font-size: 17px;
        padding-top: 8px;
    }

    .pms-btn {
        width: 100%;
    }

    .pms-trusted-wrap {
        flex-direction: column;
        gap: 12px;
    }

    .pms-trusted-text,
    .pms-video-note {
        font-size: 15px;
    }
}
/* banner */



/* how make it happen */
.how-we-make-section {
    background: #FFFFFF;
    padding: 90px 0 80px;
    overflow: hidden;
}

.how-we-make-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 55px;
}

.how-we-make-head h2 {
    margin: 0 0 22px;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 800;
    color: #000000;
    letter-spacing: -1.5px;
}

.how-we-make-head p {
    margin: 0 auto;
    max-width: 900px;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 300;
    color: #1e1e1e;
}

.how-we-make-image-wrap {
    text-align: center;
}

.how-we-make-image {
    width: 100%;
    max-width: 1420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Large screens */
@media (max-width: 1399px) {
    .how-we-make-head h2 {
        font-size: 62px;
    }

    .how-we-make-head p {
        font-size: 18px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .how-we-make-section {
        padding: 70px 0 70px;
    }

    .how-we-make-head {
        margin-bottom: 40px;
    }

    .how-we-make-head h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .how-we-make-head p {
        font-size: 17px;
        line-height: 1.7;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .how-we-make-section {
        padding: 55px 0 55px;
    }

    .how-we-make-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .how-we-make-head {
        margin-bottom: 30px;
    }

    .how-we-make-head h2 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: 0;
    }

    .how-we-make-head p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* how make it happen */

/* contact cta wrap */
/* =========================
   PLANPOINT CTA SECTION
========================= */
.planpoint-cta-section {
    padding: 50px 0;
    background: #ffffff;
}

.planpoint-cta-section .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

/* =========================
   TOP PROMO CARDS
========================= */
.promo-card {
    border-radius: 30px;
    min-height: 450px;
    padding: 65px 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.promo-card-dark {
    background: #00051A;
}

.promo-card-orange {
    background: #FF6602;
}

.promo-card-title {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 70px;
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.promo-card-text {
    margin: 0 0 32px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
}

.promo-btn {
    min-width: 270px;
    max-width: 100%;
    height: 56px;
    border-radius: 999px;
    background: #e8e8e8;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 6px 0 24px;
    text-decoration: none;
    color: #232323;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.promo-btn:hover {
    color: #232323;
    text-decoration: none;
    transform: translateY(-2px);
}

.promo-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dcdcdc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #111111;
    flex-shrink: 0;
}

/* =========================
   BOTTOM CONTACT CTA
========================= */
.contact-cta-wrap {
    padding: 40px 0;
}

.contact-cta-box {
    background: #F0F2F4;
    border-radius: 28px;
    padding: 70px 30px 80px;
    text-align: center;
}

.contact-cta-title {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 80px);
    line-height: 1.05;
    font-weight: 700;
    color: #00051A;
    letter-spacing: -1.5px;
}

.contact-cta-subtitle {
    margin: 0 0 34px;
    font-size: clamp(22px, 2.6vw, 38px);
    line-height: 1.25;
    font-weight: 700;
    color: #00051A;
}

.contact-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-pill {
    min-width: 300px;
    max-width: 100%;
    height: 56px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 6px 0 24px;
    transition: all 0.25s ease;
}

.contact-pill:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.contact-pill-dark {
    background: #18181d;
}

.contact-pill-orange {
    background: #ff6b00;
}

.contact-pill-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    overflow-wrap: anywhere;
}

.contact-pill-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
}

/* =========================
   XL DEVICES
========================= */
@media (max-width: 1199.98px) {
    .promo-card {
        min-height: 400px;
        padding: 55px 32px 42px;
    }

    .contact-cta-box {
        padding: 60px 26px 65px;
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 991.98px) {
    .planpoint-cta-section {
        padding: 40px 0;
    }

    .promo-card {
        min-height: 360px;
        padding: 50px 28px 40px;
        border-radius: 26px;
    }

    .promo-card-title {
        max-width: 430px;
        margin-bottom: 20px;
    }

    .promo-card-text {
        max-width: 390px;
        margin-bottom: 26px;
    }

    .contact-cta-box {
        border-radius: 24px;
        padding: 55px 24px 58px;
    }

    .contact-cta-subtitle {
        margin-bottom: 28px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767.98px) {
    .planpoint-cta-section {
        padding: 32px 0;
    }

    .planpoint-cta-section .row {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 18px;
    }

    .promo-card {
        min-height: auto;
        padding: 38px 20px 34px;
        border-radius: 22px;
    }

    .promo-card-title {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 0.95;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .promo-card-text {
        font-size: clamp(18px, 4.8vw, 24px);
        line-height: 1.25;
        margin-bottom: 24px;
    }

    .promo-btn {
        width: 100%;
        min-width: unset;
        max-width: 320px;
        height: 54px;
        padding-left: 20px;
        font-size: 15px;
    }

    .promo-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-cta-wrap {
        padding: 30px 0;
    }

    .contact-cta-box {
        padding: 42px 18px 46px;
        border-radius: 22px;
    }

    .contact-cta-title {
        font-size: clamp(32px, 10vw, 48px);
        line-height: 1.05;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }

    .contact-cta-subtitle {
        font-size: clamp(18px, 5vw, 24px);
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .contact-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .contact-pill {
        width: 100%;
        min-width: unset;
        max-width: 340px;
        height: 54px;
        padding-left: 20px;
    }

    .contact-pill-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-pill-text {
        font-size: 15px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 575.98px) {
    .promo-card {
        padding: 32px 16px 28px;
    }

    .promo-card-title {
        font-size: 32px;
    }

    .promo-card-text {
        font-size: 17px;
    }

    .promo-btn {
        max-width: 100%;
        min-width: 100%;
        height: 52px;
        font-size: 14px;
        padding-left: 16px;
    }

    .promo-btn-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .contact-cta-box {
        padding: 34px 16px 38px;
    }

    .contact-cta-title {
        font-size: 30px;
    }

    .contact-cta-subtitle {
        font-size: 17px;
    }

    .contact-pill {
        min-width: 100%;
        max-width: 100%;
        height: 52px;
        padding-left: 16px;
    }

    .contact-pill-text {
        font-size: 14px;
    }

    .contact-pill-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
/* contact cta wrap */


/* Stats Section */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333333;
    line-height: 1;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    margin-top: 8px;
}

/* FAQ Section */
.faq-question{
    color: #161C2D;
    font-size: 24px;
    max-width: 22rem;
    font-weight: 400;
}
.faq-section-subtitle {
    font-size: 1.25rem;
    color: #51564E;
    max-width: 50rem;
    line-height: 1.7;
    font-weight: 300;
}
.faq-answer{
    font-size: 1.25rem;
    color: #51564E;
    font-weight: 300;
    color: #51564E;
}
/* FAQ Section */

/* CTA Sections */

.email-input-group .form-control {
    border: none;
    padding: 16px 24px;
    font-size: 1.05rem;
}

.email-input-group .btn {
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Section Titles */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.2;
}
.banner-title-text{
    color: #333333;
}
.heading-color{
    color: #333333;
}
.pagination .page-link{
    border-radius: .75rem;
    border: 1px solid rgba(0,0,0,.08);
    padding: .5rem .75rem;
    margin: 0 .2rem;
    font-weight: 600;
    transition: all .2s ease;
  }
  .pagination .page-link:hover{
    transform: translateY(-1px);
  }
  .pagination .page-item.active .page-link{
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(13,110,253,.25);
  }
  .pagination .page-item.disabled .page-link{
    opacity: .55;
  }


.section-subtitle {
    font-size: 1.25rem;
    color: gray;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}
.section-subheading {
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Utility Classes */
.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-hover:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.blur-purple,
.blur-blue {
    width: 280px;
    height: 280px;
    filter: blur(80px);
    opacity: 0.35;
}
/* HERO */
/* HERO */
    .blog-hero{
        background: linear-gradient(135deg, #0F2A4C, #123A5F);
        overflow: hidden;
    }
    .blog-hero-img{
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:cover;
        transform: scale(1.02);
        filter: saturate(1.05);
    }
    .blog-hero-overlay{
        position:absolute;
        inset:0;
        background: linear-gradient(90deg, rgba(8,16,29,.88) 0%, rgba(8,16,29,.50) 55%, rgba(8,16,29,.20) 100%);
    }
    .blog-hero-title{
        letter-spacing: -0.02em;
    }
    .dot-sep{ opacity:.6; }

    /* Content styling */
    .blog-content{
        line-height: 1.85;
        font-size: 1.04rem;
    }
    .blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4{
        margin-top: 1.4rem;
        margin-bottom: .8rem;
        font-weight: 700;
        line-height: 1.25;
    }
    .blog-content p{ margin-bottom: 1rem; }
    .blog-content img{
        max-width: 100%;
        height: auto;
        border-radius: 14px;
        margin: 10px 0 18px;
    }
    .blog-content a{
        text-decoration: underline;
    }
    .blog-content blockquote{
        border-left: 4px solid #0F2A4C;
        padding: 12px 16px;
        background: #f8f9fb;
        border-radius: 12px;
        color: #333;
    }
    .blog-content table{
        width: 100%;
        border-collapse: collapse;
        margin: 14px 0;
        overflow: hidden;
        border-radius: 12px;
    }
    .blog-content table td, .blog-content table th{
        border: 1px solid #e7e7ea;
        padding: 10px 12px;
        vertical-align: top;
    }
    .blog-content table th{
        background: #f6f7f9;
        font-weight: 700;
    }

    /* 3 lines + ... */
    .clamp-3{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .clamp-1{
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


    /* Related card hover animation */
    .blog-card{
        transition: transform .25s ease, box-shadow .25s ease;
        will-change: transform;
    }
    .blog-card:hover{
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 18px 45px rgba(0,0,0,.12) !important;
    }
    .blog-card-img{
        transition: transform .35s ease;
        will-change: transform;
    }
    .blog-card:hover .blog-card-img{
        transform: scale(1.06);
    }

    @media (prefers-reduced-motion: reduce){
        .blog-card, .blog-card-img{
            transition: none !important;
        }
        .blog-card:hover{
            transform: none !important;
        }
        .blog-card:hover .blog-card-img{
            transform: none !important;
        }
    }

    /* blogs table of content */

     /* Ensure headings scroll to correct position (header offset) */
    .blog-content h1,
    .blog-content h2,
    .blog-content h3,
    .blog-content h4,
    .blog-content h5,
    .blog-content h6{
        scroll-margin-top: 110px; /* adjust if you have fixed header */
    }

    /* TOC box fixed height and scroll */
    .toc-list{
        max-height: 320px;
        overflow-y: auto;
        padding-right: 6px;
        margin-top: 10px;
    }

    .toc-list::-webkit-scrollbar{
        width: 6px;
    }
    .toc-list::-webkit-scrollbar-thumb{
        background: rgba(0,0,0,.18);
        border-radius: 10px;
    }

    .toc-item{
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .toc-link{
        display: block;
        font-size: 0.92rem;
        color: #4a4a4a;
        text-decoration: none;
        border-left: 2px solid transparent;
        padding: 4px 6px 4px 10px;
        border-radius: 8px;
        transition: all .2s ease;
    }

    .toc-link:hover{
        background: rgba(0,0,0,.04);
        color: #111;
        border-left-color: rgba(15,42,76,.45);
        transform: translateX(2px);
    }

    .toc-link.active{
        background: rgba(15,42,76,.08);
        color: #0F2A4C;
        border-left-color: #0F2A4C;
        font-weight: 600;
    }

    /* Indentation by heading level */
    .toc-level-1 .toc-link{ padding-left: 10px; }
    .toc-level-2 .toc-link{ padding-left: 18px; }
    .toc-level-3 .toc-link{ padding-left: 28px; }
    .toc-level-4 .toc-link{ padding-left: 38px; }
    .toc-level-5 .toc-link{ padding-left: 48px; }
    .toc-level-6 .toc-link{ padding-left: 58px; }


    /* Gallery Template Card */
    /* =============================
        HERO BANNER
    ============================= */
    .gallery-hero {
        position: relative;
        min-height: 420px;
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding: 80px 20px 100px;
    }

    /* Animated blurred blobs */
    .hero-bg-shapes .shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.35;
        animation: floatShape 8s ease-in-out infinite alternate;
    }
    .shape-1 {
        width: 400px; height: 400px;
        background: #6c63ff;
        top: -100px; left: -80px;
        animation-duration: 9s;
    }
    .shape-2 {
        width: 300px; height: 300px;
        background: #f64f59;
        top: -50px; right: -60px;
        animation-duration: 11s;
        animation-delay: -3s;
    }
    .shape-3 {
        width: 250px; height: 250px;
        background: #43e97b;
        bottom: -80px; left: 30%;
        animation-duration: 13s;
        animation-delay: -5s;
    }
    .shape-4 {
        width: 200px; height: 200px;
        background: #f7971e;
        bottom: 0; right: 10%;
        animation-duration: 10s;
        animation-delay: -2s;
    }
    @keyframes floatShape {
        0%   { transform: translate(0, 0) scale(1); }
        100% { transform: translate(30px, 40px) scale(1.15); }
    }

    /* Hero Content */
    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #e0d7ff;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        padding: 6px 18px;
        border-radius: 50px;
        margin-bottom: 20px;
        backdrop-filter: blur(8px);
        text-transform: uppercase;
        animation: fadeSlideDown 0.8s ease both;
    }

    .hero-title {
        font-size: clamp(2.4rem, 5vw, 3.8rem);
        font-weight: 800;
        color: #ffffff;
        line-height: 1.15;
        margin-bottom: 18px;
        animation: fadeSlideDown 0.9s ease 0.1s both;
    }

    .hero-title-gradient {
        background: linear-gradient(90deg, #a78bfa, #60a5fa, #34d399);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 16px;
        color: rgba(255,255,255,0.65);
        line-height: 1.7;
        max-width: 540px;
        margin: 0 auto 36px;
        animation: fadeSlideDown 1s ease 0.2s both;
    }

    /* Stats Row */
    .hero-stats {
        display: inline-flex;
        align-items: center;
        gap: 24px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(12px);
        padding: 16px 36px;
        border-radius: 60px;
        animation: fadeSlideDown 1.1s ease 0.3s both;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .stat-number {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
    }

    .stat-label {
        font-size: 11px;
        color: rgba(255,255,255,0.5);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .stat-divider {
        width: 1px;
        height: 36px;
        background: rgba(255,255,255,0.15);
    }

    @keyframes fadeSlideDown {
        from { opacity: 0; transform: translateY(-18px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* =============================
        GALLERY CARDS
    ============================= */
    .gallery-card {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        box-shadow: 0 6px 30px rgba(0,0,0,0.15);
        cursor: pointer;
        background: #000;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease, filter 0.5s ease;
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .btn-live-preview {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 32px;
        background: #fff;
        color: #111;
        font-weight: 700;
        font-size: 15px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        transform: translateY(20px) scale(0.9);
        opacity: 0;
        transition:
            transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
            opacity 0.4s ease,
            background 0.2s ease,
            color 0.2s ease;
    }

    .preview-icon {
        font-size: 11px;
        background: #111;
        color: #fff;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease, transform 0.4s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.04);
        filter: brightness(0.72);
    }

    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-card:hover .btn-live-preview {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .btn-live-preview:hover {
        background: #FF6600;
        color: #fff;
    }

    .btn-live-preview:hover .preview-icon {
        background: #fff;
        color: #FF6600;
        transform: rotate(360deg);
    }

    .gallery-title {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 18px;
        background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        transition: opacity 0.4s ease;
    }

    .gallery-card:hover .gallery-title {
        opacity: 0;
    }

    /* Responsive */
    @media (max-width: 576px) {
        .hero-stats {
            gap: 16px;
            padding: 14px 20px;
        }
        .stat-number { font-size: 18px; }
    }
    /* Gallery Template Card */

    /* Back to Top */
.back-to-top{
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #0F2A4C;
    color: #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 9999;
    cursor: pointer;
}

.back-to-top:hover{
    transform: translateY(0) scale(1.05);
    background: #123A5F;
}

.back-to-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.blur-purple {
    background: #c084fc;
}

.blur-blue {
    background: #60a5fa;
}
.section-name {
    font-size: 1rem;
    color: #FF6602;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-gradient,
.cta-section,
.property-management-banner {
    background: linear-gradient(
        135deg,
        #eff6ff 0%,
        /* soft blue */ #ffffff 50%,
        /* white center */ #faf5ff 100% /* soft purple */
    );
}

.final-cta-section {

    background: #FF6600 !important;
    padding: 4rem 1rem;
}

.final-cta-heading {
    max-width: 48rem;
    font-size: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800 !important;
}

.final-cta-subheading {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

.final-cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.final-cta-features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* CTA Buttons */
.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.demo-modal-content{
    padding: 1rem;
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.btn-close {
    box-shadow: none;
}
.demo-modal-close-btn{
    transform: translateY(-2rem);
}

/* Progress Bar */
.progress-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.progress-bar-custom {
    flex: 1;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.progress-bar-custom.active {
    background: #FF6600 !important;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #FF6600;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Info Box */
.info-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.info-box-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0369a1;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-box ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #075985;
}

.info-box li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Terms */
.terms-text {
    font-size: 0.85rem;
    color: #6b7280;
}

.terms-text a {
    color: #FF6600;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-back {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}
.icon-color{
    background: #FF6600 !important;
}
.btn-continue {
    flex: 2;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background-color:#FF6600;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Step Visibility */
.step {
    display: none;
}

.step.active {
    display: block;
}

/* Already have account */
.account-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.account-link a {
    color: #FF6600;
    text-decoration: none;
    font-weight: 500;
}

.account-link a:hover {
    text-decoration: underline;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    padding: 2rem 0;
}

.mega-menu-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF6600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mega-menu-item {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-menu-item:hover {
    transform: translateX(5px);
}

.mega-menu-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.mega-menu-item:hover .mega-menu-item-title {
    color: #FF6600;
}

.mega-menu-item-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.support-expert-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 40px 0;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual boxes */
.support-box,
.expert-box {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-radius: 12px;
    gap: 16px;
}

/* Support box - Red background */
.support-box {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border: none;
}

.support-box .title,
.support-box .subtitle {
    color: white;
}

/* Expert box - Purple gradient */
.expert-box {
    background: linear-gradient(
        to right,
         #FF6600,
        #333333
    );
    border: none;
}

.expert-box .title,
.expert-box .subtitle {
    color: white;
}

/* Text content */
.title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

/* Buttons */
.btn-outline,
.btn-primary {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid white;
}

/* Support box button - White outline */
.support-box .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.support-box .btn-outline:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-2px);
}

/* Expert box button - White solid */
.expert-box .btn-primary {
    background: white;
    color: #FF6600;
    border: 2px solid white;
}

.expert-box .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}
.support-text > span,
.support-text > p,
.expert-text > span,
.expert-text > p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
    text-align: end;
}

.platform-badge {
    color: #FF6600;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-badge::before {
    content: "◉";
    font-size: 16px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card,
.feature-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.solution-card:hover,
.feature-card:hover,
.maintenance-card:hover {
    border: 1px solid #FF6600;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.solution-card h3,
.feature-card h3,
.maintenance-card h3,
.benefit-text h4 {
    line-height: calc(1.75 / 1.25);
    font-size: 1.25rem;
    font-weight: 600;
}

.solution-card p,
.feature-card p,
.maintenance-card p,
.benefit-text p {
    color: gray;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.expert-card {
    background: linear-gradient(135deg, #fce7f3 0%, #fce7f3 50%, #fce7f3 100%);
    border-radius: 16px;
    padding: 1rem;
    color: white;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.expert-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.expert-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.expert-subtitle {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 32px;
    line-height: 1.5;
}

.support-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.support-button {
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    gap: 8px;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.support-text {
    color: #6b7280;
    font-size: 14px;
}

.trusted-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.trusted-text {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.agency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
}

.agency-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Feature Cards Grid */

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-purple {
    background: #f3f0ff;
    color: #7c3aed;
}

.icon-green {
    background: #d1fae5;
    color: #059669;
}

.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-orange {
    background: #fed7aa;
    color: #ea580c;
}

.feature-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-blue {
    background: #dbeafe;
    color: #1e40af;
}

.tag-purple {
    background: #f3f0ff;
    color: #6d28d9;
}

/* Maintenance Card with Alerts */
.maintenance-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.maintenance-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.maintenance-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

.alerts-panel {
    background: #fafafa;
    border-radius: 8px;
    padding: 16px;
}

.alert-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-orange {
    background: #f59e0b;
}

.alert-text {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.alert-time {
    font-size: 12px;
    color: #9ca3af;
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-item {
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.video-container {
    background: linear-gradient(135deg, #3730a3 0%, #1e1b4b 100%);
    border-radius: 16px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.play-button::after {
    content: "▶";
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.video-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toast-success {
    background-color: #28a745 !important;
}
.toast-error {
    background-color: #dc3545 !important;
}


/* Responsive */
@media (max-width: 991px) {
    .step-arrow {
        display: none;
    }
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 1rem 0;
        display: none;
    }

    .nav-item.dropdown.show .mega-menu {
        display: block;
    }

    .mega-menu-column {
        padding: 1rem 0;
        border-top: 1px solid #e5e7eb;
    }

    .mega-menu-column:first-child {
        border-top: none;
    }

    .mega-menu-item {
        padding: 0.5rem 0;
    }

    .mega-menu-item:hover {
        transform: none;
    }
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .final-cta-heading {
        font-size: 1.75rem;
    }

    .final-cta-subheading {
        font-size: 1rem;
    }

    .final-cta-features div {
        font-size: 0.9rem;
    }

    .final-cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 0.75rem;
    }

    .final-cta-buttons .btn {
        width: 100%; /* Full width on mobile */
        max-width: 300px;
    }

    .final-cta-section {
        padding: 3rem 1rem;
    }

    .cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%; /* Full width on mobile */
    }

    .section-title {
        font-size: 1.75rem;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .support-expert-wrapper {
        flex-direction: column;
    }

    .support-box,
    .expert-box {
        width: 100%;
        min-width: auto;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Tablet */
@media (max-width: 992px) and (min-width: 769px) {
    .support-box,
    .expert-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .expert-card {
        position: relative;
    }

    .agencies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-card {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
    }

    .agencies-grid {
        grid-template-columns: 1fr;
    }
}
