:root {
    --primary-blue: #007bff;
    --gradient-blue: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    --light-bg: #f8f9fa;
}

p {
    color: #111111;
}




body {
  font-family: "Ledger", serif;

    /* background-color: var(--light-bg); */
    color: #333;
}
h2{
    font-size: 2.125rem !important; 
        font-weight: 500 !important;
}

p{
            font-size: .938rem !important;
}
h4, h5 {
    font-size: 1.125rem !important;
    font-weight: 500 !important;

}

/* start a fix button */

.fixed-side-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.4s ease;
}

/* Icon Size */
.icon-btn i {
    font-size: 24px;
    line-height: 1;
    /* margin-left: 125px; */
}

/* Tooltip */
.btn-text {
    position: absolute;
    left: 75px;
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px !important;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.icon-btn:hover .btn-text {
    opacity: 1;
    visibility: visible;
    left: 15px;

}

/* Expert Button */
.expert-btn {
    background: #fff;
    border: 2px solid #111;
    color: #111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.expert-btn:hover {
    background: #111;
    color: #fff;
    transform: scale(1.08);
}

/* Trial Button */
.trial-btn {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.35);
}

.trial-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

/* Mobile */
@media(max-width:768px) {

    .fixed-side-buttons {
        left: 10px;
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
    }

    .btn-text {
        display: none;
    }

    .icon-btn {
        width: 52px;
        height: 52px;
    }
}

/* end a fix button */
/* Top Bar */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-top: 0px;
    padding-bottom: 4px;
}

.btn-login-pro1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #0d6efd;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

/* Icon style */
.btn-icon1 {
    width: 20px;
    height: 20px;
    background: #ffffff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Hover Effects */
.btn-login-pro1:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Icon animation */
.btn-login-pro1:hover .btn-icon {
    transform: translateX(6px);
}

/* Text slight move */
.btn-login-pro1:hover .btn-text {
    transform: translateX(2px);
}

/* Navbar */
.navbar {
    background: #1a1a1a !important;
}

.nav-link {
    letter-spacing: 0.5px;
    transition: 0.3s;
    font-weight: normal;
    color: white;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.badge {
    font-size: 8px;
    padding: 4px 6px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url(../img/hero.png);
    background-size: cover;
    background-position: center;
}

#type-text::after {
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.085);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.25) !important;
    transition: all 0.4s ease;
    position: relative;
    border-left: 5px solid #27b28f;
    /* text-align: center; */
}

/* .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
} */

/* .feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 5px;
    background-color: #;
    border-radius: 2px;
} */
.icon-wrap {
    font-size: 2rem;
    color: var(--primary-blue);
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-blue);
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Dashboard Image & Floating Cloud */
.dashboard-img {
    position: relative;
    z-index: 2;
    border: 8px solid white;
}

.floating-cloud {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 100px;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .display-5 {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
    }

    .feature-card {
        text-align: left;
    }

    .d-flex {
        justify-content: center;
    }
}

.display-5 {
    font-size: 30px !important;
}

.btn-demo {
    border: 2px solid #111;
    background: rgba(255, 255, 255, 0.7);
    color: #111;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.btn-demo:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-live {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-live::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -120px;
    width: 40px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    transition: 0.7s;
}

.btn-live:hover::before {
    left: 120%;
}

.btn-live:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 123, 255, 0.45);
    color: #fff;
}

@media(max-width:576px) {

    .btn-demo,
    .btn-live {
        width: 100%;
        margin-bottom: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* start Property Management */


/* end Property Management */




/* start ALL SERVICES AT A GLANCE */


:root {
    --primary: #0d6efd;
    --bg-black: #000000;
    --card-gray: #111111;
}



.split-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d6efd05 0%, transparent 100%);
}

/* Sticky Left Content */
.sticky-info {
    position: sticky;
    top: 50px;
}

.service-badge {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(13, 110, 253, 0.2);
    display: inline-block;
    margin-bottom: 20px;
}

.main-heading {
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

/* Neo-Border Cards */
.service-card {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 15px 15px 0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    background: #1a1a1a;
    transform: scale(1.03);
    box-shadow: 10px 0 30px rgba(13, 110, 253, 0.15);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #007bff;
}

.service-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}

.card-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    right: 15px;
    bottom: 5px;
    pointer-events: none;
}

@media (max-width: 991px) {
    .sticky-info {
        position: static;
        margin-bottom: 50px;
        text-align: center;
    }

    .main-heading {
        font-size: 2.5rem;
    }
}



/* end ALL SERVICES AT A GLANCE */



/* start Website with Booking Engine */





.section-header {
    margin-bottom: 70px;
}

.display-title {
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

/* Unique Floating Card */
.paper-card {
    background: #ffffff;
    border: none;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Blue Accent Bar - unique design element */
.paper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-blue);
    transition: height 0.4s ease;
}

.paper-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
}

.paper-card:hover::before {
    height: 100%;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.paper-card:hover .icon-box {
    background: var(--primary-blue);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Abstract Background Element */
.bg-shape {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
}


/* End Website with Booking Engine */


:root {
    --primary: #0d6efd;
    --soft-blue: #eef4ff;
    --text-main: #2d3436;
}

/* body {
            background-color: #ffffff;
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            padding: 100px 0;
        } */

.step-container {
    position: relative;
    padding-left: 50px;
}

/* The Vertical Path */
.step-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--soft-blue));
    opacity: 0.3;
}

.step-item {
    position: relative;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
    transform: translateX(10px);
}

/* The Animated Node */
.step-node {
    position: absolute;
    left: -42px;
    top: 30px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    transition: 0.3s;
}

.step-item:hover .step-node {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--soft-blue);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-desc {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Side Illustration Placeholder */
.marketing-hero {
    position: sticky;
    top: 100px;
    background: var(--soft-blue);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}



/* start cloud managment  */
.hotel-system-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    color: #0d1b3d;
    line-height: 1.2;
    margin-bottom: 60px;
}

/* LEFT FEATURES */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 45px;
    transition: 0.4s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    /* width:75px;
      height:75px; */
    /* min-width:75px; */
    /* border-radius:20px; */
    /* background:rgba(13,110,253,0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 34px;
    /* border:2px solid rgba(13,110,253,0.15); */
    transition: 0.4s;
}

.feature-box:hover .feature-icon {
    /* background:#0d6efd; */
    color: #0d6efd;
    transform: rotate(-5deg);
}

.feature-content h4 {
    font-size: 20px;
    /* font-weight:700; */
    margin-bottom: 10px;
    color: #111111;
}

.feature-content p {
    color: #111111;
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 0;
    text-align: justify;
}

/* RIGHT SIDE */
.right-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100%;
    margin-right: -120px;
    /* screen edge touch */
}

/* TOP SHAPE */
.shape-top {
    position: absolute;
    top: -120px;
    right: -180px;
    width: 340px;
    height: 340px;
    background: #0d6efd;
    transform: rotate(45deg);
    border-radius: 30px;
    /* opacity: 0.08; */
}

/* BOTTOM SHAPE */
.shape-bottom {
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 360px;
    height: 260px;
    background: #0d6efd;
    transform: rotate(45deg);
    border-radius: 30px;
    /* opacity: 0.1; */
}

/* LAPTOP */
.laptop-frame {
    position: relative;
    /* background: #fff; */
    border-radius: 30px 0 0 30px;
    /* padding: 18px; */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    z-index: 2;
    width: 100%;
    max-width: 420px;
}


/* IMAGE */
.screen-image {
    width: 100%;
    /* height: 520px; */
    /* object-fit: cover;
  border-radius: 18px 0 0 18px;
  display: block; */
}

.floating-card {
    position: absolute;
    left: -40px;
    bottom: 0px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.floating-card span {
    color: #0d6efd;
    font-weight: 600;
    font-size: 14px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.custom-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    margin-top: 10px;
}

.custom-btn:hover {
    background: #084db3;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:991px) {

    .section-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .right-wrapper {
        margin-right: 0;
        justify-content: center;
        margin-top: 60px;
    }

    .laptop-frame {
        border-radius: 25px;
    }

    .screen-image {
        height: auto;
        border-radius: 18px;
    }

    .floating-card {
        left: 10px;
        bottom: -20px;
    }

    .feature-content h4 {
        font-size: 22px;
    }
}

@media(max-width:767px) {

    .hotel-system-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
        text-align: center;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: auto;
    }

    .feature-content h4 {
        font-size: 21px;
    }

    .feature-content p {
        font-size: 15px;
    }

    .floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

/* start Problems Hotels Face Daily */

.hotel-problem-ui {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, #dbeafe 0%, transparent 30%),
        radial-gradient(circle at bottom right, #bfdbfe 0%, transparent 25%),
        linear-gradient(135deg, #f8fbff, #eef5ff);
}

/* ====================================================== */
/* animated background */
/* ====================================================== */

.hotel-problem-ui::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: #0d6efd10;
    border-radius: 50%;
    top: -220px;
    left: -180px;
}

.hotel-problem-ui::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #0d6efd0b;
    border-radius: 50%;
    bottom: -180px;
    right: -150px;
}

/* ====================================================== */
/* main box */
/* ====================================================== */

.main-box {
    width: 100%;

    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 40px;
    padding: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(13, 110, 253, .08);
}

/* ====================================================== */
/* heading */
/* ====================================================== */

.heading-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #fff;
    border-radius: 50px;
    color: #0d6efd;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    margin-bottom: 20px;
}

.main-title {
    font-size: 32px !important;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
    margin-bottom: 18px;
}

.main-title span {
    color: #0d6efd;
}

.main-subtitle {
    color: #111111;
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
    margin: auto;
}

/* ====================================================== */
/* cards */
/* ====================================================== */

.problem-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 15px 28px;
    overflow: hidden;
    transition: .5s;
    border: 1px solid #edf3ff;
    box-shadow: 0 15px 35px rgba(13, 110, 253, .05);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(13, 110, 253, .14);
}

/* glow */

.problem-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #0d6efd10;
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

/* number */

.problem-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 55px;
    font-weight: 800;
    color: #0d6efd08;
}

/* ====================================================== */
/* icon */
/* ====================================================== */

.problem-icon {
    width: 85px;
    height: 85px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    box-shadow: 0 18px 35px rgba(13, 110, 253, .2);
}

.red {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
}

.yellow {
    background: linear-gradient(135deg, #ffb703, #ffd166);
}

.orange {
    background: linear-gradient(135deg, #fb8500, #ff9f1c);
}

.blue {
    background: linear-gradient(135deg, #0d6efd, #4dabff);
}

/* ====================================================== */
/* content */
/* ====================================================== */

.problem-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.problem-card p {
    color: #111111;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

/* ====================================================== */
/* bottom icon */
/* ====================================================== */

.arrow-btn {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #f1f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    margin-top: 25px;
    font-size: 22px;
    transition: .4s;
}

.problem-card:hover .arrow-btn {
    background: #0d6efd;
    color: #fff;
    transform: rotate(45deg);
}

/* ====================================================== */
/* responsive */
/* ====================================================== */

@media(max-width:1199px) {

    .main-title {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    body {
        overflow: auto;
    }

    .hotel-problem-ui {
        min-height: auto;
        padding: 70px 20px;
    }

    .main-title {
        font-size: 40px;
    }

}

@media(max-width:576px) {

    .main-box {
        padding: 25px;
        border-radius: 25px;
    }

    .main-title {
        font-size: 32px;
    }

    .main-subtitle {
        font-size: 15px;
    }

    .problem-card {
        padding: 28px 22px;
    }

    .problem-card h3 {
        font-size: 24px;
    }

}



/* start interations */




/* FLOATING STATS */
/* Stat Card */
.stat-card {
    position: relative;
    padding: 35px 20px 28px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.7);
    transition: 0.45s ease;
    height: 100%;
}

/* Glow Effect */
.stat-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    top: -100px;
    right: -90px;
    background: rgba(255, 255, 255, 0.18);
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    bottom: -60px;
    left: -40px;
    background: rgba(0, 123, 255, 0.07);
}

/* Hover */
.stat-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.12),
        0 0 35px rgba(0, 123, 255, 0.12);
}

/* Icon */
.icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.stat-card:hover .icon-wrap {
    transform: rotate(-6deg) scale(1.08);
}

/* Gradient Colors */
.hotel-bg {
    background: linear-gradient(135deg, #ff6a00, #ffb200);
}

.uptime-bg {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.support-bg {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.gst-bg {
    background: linear-gradient(135deg, #8e2de2, #c471ed);
}

.multi-bg {
    background: linear-gradient(135deg, #fc466b, #3f5efb);
}

/* Heading */
.stat-card h2 {
      font-size: 1.125rem !important;
    font-weight: 500 !important;
    margin-bottom: 8px;
    color: #111;
    position: relative;
    z-index: 2;
}

/* Text */
.stat-card span {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Mobile */
@media(max-width:768px) {

    .stat-card {
        padding: 28px 15px 22px;
        border-radius: 24px;
    }

    .icon-wrap {
        width: 62px;
        height: 62px;
        font-size: 26px;
        border-radius: 20px;
    }

    .stat-card h2 {
        font-size: 26px;
    }

    .stat-card span {
        font-size: 14px;
    }
}

.floating-statsbg {

    background: rgba(13, 109, 253, 0.09) !important;
}

/* end STATS */

/* Start Hospitality Segments Section */
/* Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Section */
.hospitality-segment-section {
    position: relative;
    overflow: hidden;
    background: repeating-linear-gradient(90deg,
            #0d6efd 0px,
            #0d6efd 170px,
            #0b5ed7 170px,
            #0b5ed7 340px);
    padding: 90px 0;
}

/* Glow Effect */
.hospitality-segment-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

/* Heading */
.section-heading {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    backdrop-filter: blur(10px);
}

.section-heading h2 {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    /* margin-top: 28px; */
    line-height: 1.2;
}

.section-heading h2 span {
    color: #ffe0d4;
}

.section-heading p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 22px auto 0;
    font-size: 18px;
    line-height: 1.9;
}

/* Card */
.segment-box {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 32px;
    padding: 38px 24px;
    text-align: center;
    transition: 0.45s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Hover */
.segment-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.2);
}

/* Top Glow */
.segment-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 77, 26, 0.08);
    top: -70px;
    right: -60px;
}

/* Icon */
.segment-icon {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    transition: 0.4s ease;
}

.segment-box:hover .segment-icon {
    transform: rotate(-6deg) scale(1.08);
}

/* Gradients */
.hotel-bg {
    background: linear-gradient(135deg, #ff6a00, #ffb200);
}

.resort-bg {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.boutique-bg {
    background: linear-gradient(135deg, #8e2de2, #c471ed);
}

.hostel-bg {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.guest-bg {
    background: linear-gradient(135deg, #fc466b, #3f5efb);
}

.rental-bg {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

/* Text */
.segment-box h4 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.segment-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
}

/* Button */
.segment-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ff4d1a;
    font-weight: 700;
    transition: 0.3s ease;
}

.segment-box a i {
    transition: 0.3s ease;
}

.segment-box a:hover i {
    transform: translateX(6px);
}

/* Mobile */
@media(max-width:768px) {

    .hospitality-segment-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .segment-box {
        border-radius: 24px;
        padding: 30px 18px;
    }

    .segment-icon {
        width: 72px;
        height: 72px;
        font-size: 30px;
        border-radius: 22px;
    }

    .segment-box h4 {
        font-size: 22px;
    }
}


/* start Core Modules Grid */

/* Section */
.hotel-modules-section {
    background: white !important;
    overflow: hidden;
}

/* Badge */
.module-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
}

/* Title */
.main-module-title {
    font-size: 54px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
}

.main-module-title span {
    color: #0d6efd;
}

.main-module-text {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    max-width: 750px;
    margin: auto;
}

/* Main Feature Card */
.feature-main-card {
    position: relative;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    border-radius: 36px;
    padding: 50px;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.2);
}

.feature-main-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -120px;
    right: -100px;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 14px;
    margin-bottom: 22px;
}

.feature-main-card h3 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-main-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    color: #0d6efd;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
}

.feature-btn:hover {
    transform: translateY(-4px);
}

.feature-image {
    position: absolute;
    right: 20px;
    bottom: 0;
}

.feature-image img {
    width: 260px;
}

/* Mini Cards */
.mini-module-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px 28px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.mini-module-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.04);
    top: -60px;
    right: -60px;
}

.mini-module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Icon */
.mini-icon,
.bottom-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.mini-module-card h5,
.bottom-module-card h5 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.mini-module-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Bottom Cards */
.bottom-module-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.bottom-module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.bottom-icon {
    margin: auto auto 22px;
}

.bottom-module-card span {
    color: #666;
    line-height: 1.7;
    display: block;
}

/* Gradients */
.booking-bg {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.channel-bg {
    background: linear-gradient(135deg, #8e2de2, #c471ed);
}

.house-bg {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.pos-bg {
    background: linear-gradient(135deg, #ff512f, #dd2476);
}

.billing-bg {
    background: linear-gradient(135deg, #fc466b, #3f5efb);
}

.crm-bg {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.payroll-bg {
    background: linear-gradient(135deg, #ff6a00, #ffb200);
}

.inventory-bg {
    background: linear-gradient(135deg, #654ea3, #eaafc8);
}

/* Mobile */
@media(max-width:768px) {

    .main-module-title {
        font-size: 34px;
    }

    .main-module-text {
        font-size: 15px;
    }

    .feature-main-card {
        padding: 35px 28px 220px;
        border-radius: 28px;
    }

    .feature-main-card h3 {
        font-size: 30px;
    }

    .feature-image {
        right: 50%;
        transform: translateX(50%);
    }

    .feature-image img {
        width: 200px;
    }

    .mini-module-card,
    .bottom-module-card {
        border-radius: 22px;
        padding: 26px 22px;
    }

    .mini-icon,
    .bottom-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
        border-radius: 18px;
    }

    .mini-module-card h5,
    .bottom-module-card h5 {
        font-size: 22px;
    }
}

/* end Core Modules Grid */




/* start Why Choose Us */

/* Bootstrap Icons */
/* Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Section */
.choose-grid-section {
    background: rgba(13, 109, 253, 0.09);
    overflow: hidden;
    position: relative;
    padding: 25px 0;
}

/* Background */
.choose-grid-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

/* Badge */
.grid-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 15px;
    font-weight: 700;
}

/* Title */
.grid-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.2;
    color: #111;
}

.grid-title span {
    color: #0d6efd;
}

/* Text */
.grid-text {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    max-width: 600px;
    margin-left: auto;
}

/* Main Card */
.main-choose-card {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    border-radius: 36px;
    padding: 45px 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.22);
}

/* Glow */
.main-choose-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    right: -80px;
}

/* Main Icon */
.main-icon {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 30px;
}

/* Main Title */
.main-choose-card h3 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-choose-card h3 span {
    display: block;
    color: #dff3ff;
}

/* Main Text */
.main-choose-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 20px;
}

.stats-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 22px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stats-box h4 {
    font-size: 34px;
    font-weight: 900;
    /* color: #fff; */
    margin-bottom: 5px;
}

.stats-box span {
    color: rgba(255, 255, 255, 0.75);
}

/* Mini Card */
.mini-choose-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.4s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.mini-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.mini-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Gradients */
.easy-bg {
    background: linear-gradient(135deg, #ff6a00, #ffb200);
}

.cloud-bg {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.mobile-bg {
    background: linear-gradient(135deg, #fc466b, #3f5efb);
}

.multi-bg {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.setup-bg {
    background: linear-gradient(135deg, #ff512f, #dd2476);
}

.pricing-bg {
    background: linear-gradient(135deg, #654ea3, #eaafc8);
}

.support-bg {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.secure-bg {
    background: linear-gradient(135deg, #0f2027, #2c5364);
}

/* Text */
.mini-choose-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.mini-choose-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Mobile */
@media(max-width:768px) {

    .choose-grid-section {
        padding: 70px 0;
    }

    .grid-title {
        font-size: 34px;
    }

    .grid-text {
        font-size: 15px;
        margin-top: 15px;
    }

    .main-choose-card {
        border-radius: 28px;
        padding: 35px 25px;
    }

    .main-choose-card h3 {
        font-size: 32px;
    }

    .stats-row {
        flex-direction: column;
    }

    .mini-choose-card {
        border-radius: 22px;
        padding: 22px;
    }

    .mini-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
        border-radius: 18px;
    }

    .mini-choose-card h4 {
        font-size: 20px;
    }
}

/* end Why Choose Us */

/* start Client Testimonial Section */


/* Section */
.hotel-testimonial-section {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    padding: 100px 0;
    overflow: hidden;
}

/* Heading */
.testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
}

.testimonial-heading {
    font-size: 56px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
}

.testimonial-subtext {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/* Slider */
.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* Card */
.testimonial-card {
    min-width: 380px;
    background: #fff;
    border-radius: 34px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* Glow */
.testimonial-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.05);
    top: -70px;
    right: -70px;
}

/* Top */
.client-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.client-top h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
}

.owner-name {
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
}

/* Rating */
.rating-stars {
    display: flex;
    gap: 5px;
    color: #ffb400;
    margin-bottom: 22px;
    font-size: 18px;
}

/* Review */
.review-text {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 28px;
}

/* Stats */
.review-stats {
    display: flex;
    gap: 18px;
}

.stats-box {
    flex: 1;
    background: #f7faff;
    border-radius: 22px;
    padding: 18px;
    text-align: center;
}

.stats-box h5 {
    font-size: 32px;
    font-weight: 900;
    color: #0d6efd;
    margin-bottom: 5px;
}

.stats-box span {
    color: #666;
    font-size: 14px;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0d6efd;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 10;
    transition: 0.4s ease;
}

.slider-arrow:hover {
    background: #0d6efd;
    color: #fff;
}

.left-arrow {
    left: -25px;
}

.right-arrow {
    right: -25px;
}

/* Mobile */
@media(max-width:768px) {

    .hotel-testimonial-section {
        padding: 70px 0;
    }

    .testimonial-heading {
        font-size: 34px;
    }

    .testimonial-subtext {
        font-size: 15px;
    }

    .testimonial-card {
        min-width: 300px;
        border-radius: 28px;
        padding: 24px;
    }

    .client-image {
        width: 65px;
        height: 65px;
        border-radius: 18px;
    }

    .client-top h4 {
        font-size: 20px;
    }

    .review-stats {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }
}

/*  end Client Testimonial Section */


/* <!-- start footer --> */

/* Footer */
.ultra-footer {
    position: relative;
    /* background: #050816; */
      background: rgba(13, 109, 253, 0.255) !important;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
}

/* Background Glow */
.ultra-footer::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50%;
    top: -220px;
    right: -180px;
    filter: blur(30px);
}

/* Top Box */
.footer-top-box {
    position: relative;
    background: linear-gradient(135deg, #0d6efd, #5b5fff);
    border-radius: 40px;
    padding: 60px;
    /* margin-bottom: -70px; */
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(13, 110, 253, 0.25);
}

/* Glow Shape */
.footer-top-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

/* Badge */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-badge i {
    color: #ffd43b;
}

/* Heading */
.footer-top-box h2 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.footer-top-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 17px;
    max-width: 650px;
}

/* Contact Card */
.footer-contact-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Circle */
.contact-circle {
    min-width: 95px;
    height: 95px;
    border-radius: 28px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

/* Support */
.support-text {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.footer-contact-card h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Button */
.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
}

.support-btn:hover {
    transform: translateY(-5px);
    color: #111;
}

/* Bottom Footer */
/* Footer */
.galaxy-footer {
    position: relative;
    background: radial-gradient(circle at top left, #0d6efd 0%, #081225 35%, #050816 100%);
    overflow: hidden;
    /* padding: 120px 0 40px; */
    padding: 20px 0 15px;
}

/* Floating Shapes */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.18;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: #00b4ff;
    top: -120px;
    left: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: #6f42c1;
    right: -80px;
    top: 120px;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: #25d366;
    bottom: -50px;
    left: 40%;
}

/* Brand Area */
.footer-brand-wrap {
    position: relative;
    z-index: 2;
}

/* Logo */
.footer-logo-box {
    width: 110px;
    height: 110px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    transform: rotate(-8deg);
}

.logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 44px;
}

/* Tag */
.footer-tagline {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* Title */
.footer-brand-wrap h2 {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand-wrap p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Stats */
.footer-stats-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-stat-card {
    min-width: 120px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
}

.footer-stat-card h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
}

.footer-stat-card span {
    color: rgba(255, 255, 255, 0.7);
}

/* Links Panel */
.footer-links-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 40px;
    padding: 50px;
}

/* Column */
.footer-column h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 18px;
    font-size: 1rem !important;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: 0.3s ease;
       font-size: 1rem !important;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Bottom */
.footer-bottom-box {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.footer-action-btn {
    padding: 16px 28px;
    border-radius: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    transition: 0.4s ease;
}

.whatsapp-btn-footer {
    background: #25d366;
    color: #fff;
}

.demo-btn-footer {
    background: #fff;
    color: #111;
}

.footer-action-btn:hover {
    transform: translateY(-5px);
}

/* Social */
.footer-social-wrap {
    display: flex;
    gap: 14px;
}

.footer-social-wrap a {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.4s ease;
}

.footer-social-wrap a:hover {
    background: #0d6efd;
    transform: rotate(-8deg);
}

/* Copyright */
.footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

/* Policy */
.footer-policy-links {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-policy-links a:hover {
    color: #fff;
}

/* Mobile */
@media(max-width:768px) {

    .galaxy-footer {
        padding: 90px 0 30px;
    }

    .footer-brand-wrap h2 {
        font-size: 42px;
    }

    .footer-logo-box {
        width: 85px;
        height: 85px;
    }

    .logo-inner {
        font-size: 34px;
    }

    .footer-links-panel {
        padding: 35px 25px;
        border-radius: 28px;
    }

    .footer-bottom-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-policy-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media(max-width:768px) {

    .footer-bottom-modern {
        padding: 90px 0 30px;
    }

    .footer-info-box {
        padding-right: 0;
    }

    .footer-mini-logo {
        width: 72px;
        height: 72px;
        font-size: 30px;
    }

    .footer-info-box h3 {
        font-size: 30px;
    }

    .footer-link-box h5 {
        font-size: 20px;
    }

    .footer-social-area {
        justify-content: flex-start;
    }
}


@media(max-width:768px) {

    .ultra-footer {
        padding-top: 80px;
    }

    .footer-top-box {
        padding: 35px 25px;
        border-radius: 28px;
        /* margin-bottom: -40px; */
    }

    .footer-top-box h2 {
        font-size: 36px;
    }

    .footer-contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-circle {
        min-width: 80px;
        height: 80px;
        font-size: 34px;
    }

    .footer-main-wrapper {
        padding: 100px 25px 30px;
        border-radius: 30px 30px 0 0;
    }

    .footer-brand-logo {
        width: 75px;
        height: 75px;
        font-size: 34px;
    }

    .footer-brand-side h3 {
        font-size: 32px;
    }

    .bottom-links {
        justify-content: flex-start;
        gap: 18px;
    }
}
.footer-column ul li a i{
    font-size: 18px;
    margin-right: 6px;
    transition: 0.3s ease;
}

.footer-column ul li a:hover i{
    transform: translateX(4px);
}

.footer-column ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.139);
}

/* start footer */

/* footer {
    background-color: #1a1a1b !important;
    color: white;
    overflow: hidden;
    padding: 300px !important;
} */

/* <!-- end footer --> */


/* start comming soon */

.comming-soon{
     margin: 0;
            padding: 0;
            font-family: "Ledger", serif;
            background:
                linear-gradient(rgba(0, 0, 0, 0.72),
                    rgba(0, 0, 0, 0.75)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1600&auto=format&fit=crop');

            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
}

   /* Main Box */
        .coming-box {
            position: relative;
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 35px;
            padding: 20px 50px;
            text-align: center;
            max-width: 750px;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
        }

        /* Glow */
        .coming-box::before {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            background: rgba(13, 110, 253, 0.18);
            border-radius: 50%;
            top: -100px;
            right: -80px;
        }

        /* Icon */
        .coming-icon img{
            width: 100px;
            margin-bottom:15px;
         
        }
        /* Tablet */
@media (max-width: 768px){
      .coming-icon{
        text-align: center;
      }
    .coming-icon img{
        width: 88px;
    }
}

/* Mobile */
@media (max-width: 480px){
    .coming-icon img{
        width: 88px;
    }
}

        /* Small Text */
        .coming-tag {
            display: inline-block;
            padding: 12px 26px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 15px;
            margin-bottom: 20px;
        }

        /* Title */
        .coming-box h1 {
            font-size: 62px;
            color: #fff;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .coming-box h1 span {
            color: #0d6efd;
        }

        /* Sub Title */
        .coming-subtitle {
            font-size: 42px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Description */
        .coming-box p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            font-size: 18px;
            max-width: 620px;
            margin: auto;
            margin-bottom: 8px;
        }

        /* Contact */
        .coming-contact {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 18px 35px;
            border-radius: 60px;
            background: #fff;
            color: #111;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.4s ease;
        }

        .coming-contact i {
            color: #0d6efd;
            font-size: 24px;
        }

        .coming-contact:hover {
            transform: translateY(-6px);
            color: #111;
        }

        /* Floating Dots */
        .dot {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
        }

        .dot1 {
            width: 18px;
            height: 18px;
            top: 80px;
            left: 80px;
        }

        .dot2 {
            width: 10px;
            height: 10px;
            bottom: 100px;
            right: 100px;
        }

        .dot3 {
            width: 24px;
            height: 24px;
            bottom: 60px;
            left: 120px;
        }

        /* Mobile */
        @media(max-width:768px) {

            .coming-box {
                margin: 20px;
                padding: 50px 25px;
            }

            .coming-box h1 {
                font-size: 46px;
            }

            .coming-subtitle {
                font-size: 25px;
            }

            .coming-box p {
                font-size: 15px;
            }

            .coming-contact {
                font-size: 14px;
                padding: 15px 25px;
            }

          
        }

/* end comming soon */