    @font-face {
        font-family: 'robotoregular';
        src: url('../fonts/roboto-regular-webfont.eot');
        src: url('../fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-regular-webfont.woff2') format('woff2'), url('../fonts/roboto-regular-webfont.woff') format('woff'), url('../fonts/roboto-regular-webfont.ttf') format('truetype'), url('../fonts/roboto-regular-webfont.svg#robotoregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'robotobold';
        src: url('../fonts/roboto-bold-webfont.eot');
        src: url('../fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-bold-webfont.woff2') format('woff2'), url('../fonts/roboto-bold-webfont.woff') format('woff'), url('../fonts/roboto-bold-webfont.ttf') format('truetype'), url('../fonts/roboto-bold-webfont.svg#robotobold') format('svg');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'robotomedium';
        src: url('../fonts/roboto-medium-webfont.eot');
        src: url('../fonts/roboto-medium-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-medium-webfont.woff2') format('woff2'), url('../fonts/roboto-medium-webfont.woff') format('woff'), url('../fonts/roboto-medium-webfont.ttf') format('truetype'), url('../fonts/roboto-medium-webfont.svg#robotomedium') format('svg');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'robotolight';
        src: url('../fonts/roboto-light-webfont.eot');
        src: url('../fonts/roboto-light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-light-webfont.woff2') format('woff2'), url('../fonts/roboto-light-webfont.woff') format('woff'), url('../fonts/roboto-light-webfont.ttf') format('truetype'), url('../fonts/roboto-light-webfont.svg#robotolight') format('svg');
        font-weight: normal;
        font-style: normal;
    }

    /* =========================================
   1. VARIABLES
   ========================================= */
    :root {
        --sky-blue: #4cc3e4;
        --light-blue: #505be0;
        --default-blue: #4b46ce;
        --dark-blue: #000b76;
        --dark-blue-hover: #00085a;
        --red: #d81435;
        --red-hover: #c61434;
        --white: #ffffff;
        --light-white: #eaf8ff;
        --light-gray: #f0f0f0;
        --black: #131742;
        --navy-blue: #131f90;
        --border-light: rgba(255, 255, 255, 0.4);
        --background-gradiend: linear-gradient(-90deg, #000b76 0%, #000b76 1%, #505be0 100%);
        --background-gradiend-hover: linear-gradient(90deg, #000b76 0%, #000b76 1%, #505be0 100%);
        --btn-padding-y: 0.5rem;
        --btn-padding-y-b0: 0.65rem;
        /* Border 0 case */
        --btn-padding-x: 1rem;
        --fs-16: 16px;
        --fs-14: 14px;
    }

    body {
        font-family: 'robotoregular';
        font-size: var(--fs-14);
        line-height: 20px;
        color: var(--black)
    }

    @media (min-width: 1400px) {
        .container {
            max-width: 1170px;
        }
    }

    @media(max-width:767px) {
        .container {
            --bs-gutter-x: 2.5rem !important;
        }
    }

    .text-navy-blue {
        color: var(--navy-blue) !important;
    }

    .text-light-blue {
        color: var(--sky-blue) !important;
    }

    .bg-light-blue {
        background-color: var(--sky-blue) !important;
    }

    body {
        position: relative;
        /* background-image: url(../images/homev2.png); */
        /* background-attachment: fixed; */
        /* background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    max-height: 100vh; */
    }

    /* =========================================
   2. HEADER & BANNER
   ========================================= */
    #page-banner {
        background-image: url('../images/homev2.png?v=3');
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        padding: 0px;
        padding-bottom: 5rem;
        position: relative;
    }

    #page-banner-transparent {
        background-image: url(../images/top-bg.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        padding: 0px;
        position: relative;
    }

    /* #page-banner::before {
    content: "";
    background: #0017975e;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
} */

    /* =========================================
   3. BUTTONS
   ========================================= */
    .btn-blue {
        background: var(--default-blue);
        border-color: var(--default-blue);
        color: var(--white) !important;
        padding-top: var(--btn-padding-y);
        padding-bottom: var(--btn-padding-y);
        padding-left: var(--btn-padding-x);
        padding-right: var(--btn-padding-x);
        font-size: var(--fs-14);
        font-family: 'robotomedium';
    }

    .btn-blue:hover,
    .btn-blue:focus,
    .btn-blue:active {
        background: var(--dark-blue);
        border-color: var(--dark-blue);
        color: var(--white) !important;
    }

    .btn-dark-blue {
        background: var(--background-gradiend);
        border: 0px !important;
        color: var(--white) !important;
        padding-top: var(--btn-padding-y-b0);
        padding-bottom: var(--btn-padding-y-b0);
        padding-left: var(--btn-padding-x);
        padding-right: var(--btn-padding-x);
        font-size: var(--fs-16);
    }

    .btn-dark-blue:hover,
    .btn-dark-blue:focus,
    .btn-dark-blue:active {
        background: var(--background-gradiend-hover);
        border: 0px !important;
        color: var(--white) !important;
        outline: none !important;
    }

    .btn-red {
        background: var(--red);
        border-color: var(--red);
        color: var(--white) !important;
        padding-top: var(--btn-padding-y);
        padding-bottom: var(--btn-padding-y);
        padding-left: var(--btn-padding-x);
        padding-right: var(--btn-padding-x);
        font-size: var(--fs-14);
        font-family: 'robotomedium';
    }

    .btn-red:hover,
    .btn-red:focus,
    .btn-red:active {
        background: var(--red-hover);
        border-color: var(--red-hover);
        color: var(--white) !important;
    }

    .btn-rounded {
        border-radius: 3px;
    }

    /* =========================================
   4. TESTIMONIALS
   ========================================= */
    .testimonial-box {
        border: 1px solid var(--border-light);
        border-radius: 10px;
        padding: 20px;
        color: var(--white);
        font-size: var(--fs-14);
        line-height: 1.6;
    }

    /* =========================================
   5. NAVIGATION (TOP MENU)
   ========================================= */
    .top-menu-nav {
        display: flex;
        flex-direction: row;
        justify-content: end;
        flex-wrap: wrap;
        margin-bottom: 1rem;
        padding-left: 0;
        list-style: none;
        gap: 10px;
        column-gap: 15px;
        align-items: center;
    }

    /* #page-banner-transparent .top-menu-nav {
        justify-content: end;
        gap: 15px;
    } */

    @media(max-width:767px) {
        .top-menu-nav {
            row-gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 15px;
            margin-top: 15px;
        }
    }

    .top-menu-nav .nav-link {
        color: var(--white);
        padding: 5px 8px;
        font-size: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        border-radius: 3px;
        border: 1px solid transparent;
        font-weight: 500;
        font-family: 'robotomedium';
        white-space: nowrap;
    }

    .top-menu-nav .nav-link.border-around {
        border: 1px solid #ffffffb0;
    }

    @media(max-width:767px) {
        .top-menu-nav .nav-link {
            white-space: nowrap;
        }
    }

    .top-menu-nav .nav-link:not(.border-around) span {
        position: relative;
    }

    .top-menu-nav .nav-link:not(.border-around) span::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background-color: transparent;
        border-radius: 2px;
    }

    .top-menu-nav .nav-link:hover,
    .top-menu-nav .nav-link:focus {
        color: var(--light-gray);
    }

    .top-menu-nav .nav-link:not(.border-around):hover span::after,
    .top-menu-nav .nav-link:not(.border-around):focus span::after {
        background-color: var(--light-gray);
    }

    .top-menu-nav .nav-item.active .nav-link:not(.border-around) span::after {
        background-color: var(--white);
    }

    #topheader .list-inline-item svg {
        width: 17.5px;
        vertical-align: middle;
        fill: #fff;
        margin-top: -1px;
    }

    #bottom-header .top-menu-nav .nav-item svg {
        width: 18px;
        fill: #fff;
    }

    #topheader .logout-btn {
        color: #fff;
        border: 1px solid #fff;
        display: inline-block;
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 1px 10px;
        font-size: 12px;
        line-height: 20px;
        transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        text-decoration: none;
    }

    #topheader .logout-btn:hover,
    #topheader .logout-btn:focus {
        border: 1px solid #6694f5;
        background-color: #6694f5;
    }

    /* =========================================
   6. PROPERTY POINTS (LEFT COLUMN)
   ========================================= */
    .property-points-box h1 {
        color: var(--white);
        font-size: 26px;
        font-family: 'robotomedium';
        margin-bottom: 15px;
        line-height: 32px;
    }

    .property-points {
        list-style: none;
        padding-left: 0;
    }

    .property-points .media {
        display: flex;
        align-items: start;
        margin-bottom: 20px;
        color: var(--white);
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
    }

    .icon-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        background-color: #4cc8e1;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
        margin-top: 0px;
    }

    .icon-circle i {
        color: var(--white);
        font-size: 12px;
        margin-left: 2px;
    }

    /* =========================================
   7. TIMELINE (MIDDLE COLUMN)
   ========================================= */
    .timeline-container {
        position: relative;
        padding: 10px 0;
        margin-top: 0px;
    }

    .timeline-line {
        position: absolute;
        left: 66px;
        top: 20px;
        bottom: 10px;
        width: 2px;
        border-left: 2px dotted rgba(255, 255, 255, 0.6);
    }

    .timeline-step {
        display: flex;
        align-items: start;
        margin-bottom: 35px;
        position: relative;
        color: var(--white);
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        text-align: right;
        margin-right: 45px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border: 1px solid #ffffff61;
        padding: 10px;
        border-radius: 8px;
    }

    /* @keyframes timelinePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.timeline-step:nth-child(2) .timeline-icon {
    animation: timelinePulse 3s infinite;
} */

    .timeline-icon img,
    .timeline-icon svg {
        max-width: 25px;
        height: auto;
        object-fit: contain;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
        background-color: var(--default-blue);
        border: 4px solid var(--white);
        border-radius: 50%;
        position: absolute;
        left: 60px;
        z-index: 2;
        top: 1px;
    }

    .timeline-text {
        padding-left: 0;
        font-size: 17px;
        font-weight: 500;
        line-height: 20px;
        margin-top: -2px;
    }

    /* =========================================
   8. LOGIN BOX (RIGHT COLUMN)
   ========================================= */
    .login-form {
        background: var(--light-white);
        border-radius: 8px;
        padding: 35px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .login-form:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .login-form h2 {
        color: var(--dark-blue);
        font-size: 18px;
        font-family: 'robotomedium';
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .login-form fieldset {
        border: none;
        padding: 0;
        margin: 0 0 10px 0;
    }

    .login-form input[type="email"],
    .login-form input[type="password"] {
        width: 100%;
        padding: 8px 15px;
        background: var(--white);
        border: 1px solid rgba(93, 194, 232, 0.58);
        border-radius: 4px;
        font-size: 15px;
        margin-bottom: 5px;
    }

    .login-form input[type="email"]:focus,
    .login-form input[type="password"]:focus {
        outline: none;
        border-color: var(--default-blue);
    }

    .login-form .error-span {
        color: var(--red);
        font-size: 13px;
        display: block;
        margin-top: 5px;
    }

    .login-form .forgot-password-link {
        color: var(--default-blue);
        font-size: 12px;
        text-decoration: none;
    }

    .btn-login-submit {
        background: var(--red);
        color: var(--white);
        border: none;
        padding: 10px 40px;
        border-radius: 25px;
        font-size: var(--fs-14);
        font-family: 'robotomedium';
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
    }

    .btn-login-submit:hover {
        background: var(--red-hover);
    }

    /* =========================================
   9. INVESTOR RESEARCH USE SECTION
   ========================================= */
    #investor-research-use {
        position: relative;
        margin-top: -5rem;
        /* background-color: #f7fbff; */
    }

    .info-card {
        background: var(--white);
        border: 1px solid #4cc3e4;
        border-radius: 12px;
        padding: 0px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        overflow: hidden;
    }

    .info-card-gradient {
        background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 50%, #e8f2ff 100%);
    }

    .info-card .card-title,
    .info-card .card-title h2 {
        color: var(--navy-blue);
        font-size: 22px;
        font-weight: 500;
        text-align: left;
        font-family: 'robotomedium';
    }


    .info-card .card-subtitle {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
        color: var(--navy-blue);
    }

    .info-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
    }

    .info-card .small-text {
        font-size: 15px;
        color: #131742;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .award-title {
        font-size: 18px;
        font-family: 'robotomedium';
        color: var(--dark-blue);
    }

    .partner-title {
        font-size: 18px;
        font-family: 'robotomedium';
        color: var(--dark-blue);
    }

    /* Easy to Use List */
    .easy-points {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .easy-points::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 50px;
        width: 2px;
        background-color: #cde3ef;
        z-index: 1;
    }

    .easy-points li {
        position: relative;
        padding-left: 70px;
        margin-bottom: 30px;
        font-size: 15px;
        color: #131742;
        display: flex;
        align-items: center;
        font-weight: 500;
    }

    .easy-points li:last-child {
        margin-bottom: 0;
    }

    .easy-points li::before {
        content: '';
        position: absolute;
        left: 46px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background-color: #7bb5e3;
        border-radius: 50%;
        z-index: 2;
    }

    .easy-points li span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background-image: linear-gradient(90deg, #5d68e7, #4cc3e4);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-family: 'robotomedium';
        z-index: 2;
    }

    /* =========================================
   10. ADDITIONAL INFO SECTION
   ========================================= */
    .custom-card {
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Card 1: Primary (Blue Gradient Header, White Body, Blue Border) */
    .custom-card-primary {
        background-color: #fff;
        border: 1px solid #4cc3e4;
    }

    .custom-card-primary .card-header-bg {
        background: linear-gradient(90deg, #505be0, #5dc2e8);
        padding: 20px 30px;
    }

    .custom-card-primary .card-header-bg h2,
    .custom-card-primary .card-header-bg h3 {
        color: #fff;
        font-size: 20px;
        font-family: 'robotomedium';
        margin: 0;
    }

    .custom-card-primary .card-body-content {
        padding: 30px;
    }

    /* Card 2: Light (Light Blue Header, Light Blue Body, Light Blue Border) */
    .custom-card-light {
        background-color: #fff;
        border: 1px solid #cde3ef;
    }

    .custom-card-light .card-header-transparent {
        padding: 20px 30px;
        background: linear-gradient(1deg, #e4f3fc, #e5ebfd);
    }

    .custom-card-light .card-header-transparent h2,
    .custom-card-light .card-header-transparent h3 {
        color: var(--navy-blue);
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .custom-card-light .card-body-content {
        padding: 30px;
    }

    /* Card 3: Dark (Dark Blue Header, White Body, Light Blue Border) */
    .custom-card-dark {
        background-color: #fff;
        border: 1px solid #cde3ef;
    }

    .custom-card-dark .card-header-bg {
        background-color: #3b46c4;
        padding: 20px 30px;
    }

    .custom-card-dark .card-header-bg h2,
    .custom-card-dark .card-header-bg h3 {
        color: #fff;
        font-size: 20px;
        font-family: 'robotomedium';
        margin: 0;
    }

    .custom-card-dark .card-body-content {
        padding: 30px;
    }

    /* Check List (Card 1) */
    .check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 18px;
        font-size: 14px;
        color: #333;
        line-height: 1.5;
    }

    .check-list li:last-child {
        margin-bottom: 0;
    }

    .check-list li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        top: -1px;
        color: #4cc3e4;
        font-weight: bold;
        font-size: 16px;
    }

    /* Icon Text Block (Card 2) */
    .icon-text-block {
        display: flex;
        align-items: center;
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 0.5px solid #4cc3e3;
    }

    .icon-text-block:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .icon-text-block img,
    .icon-text-block>i {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        margin-right: 20px;
    }

    .icon-text-block img {
        object-fit: contain;
    }

    .icon-text-block>i {
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        background-color: #5c6bea;
        /* Default circle color */
    }

    .icon-text-block .icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        flex-shrink: 0;
        margin-right: 25px;
    }

    .icon-text-block .icon-circle.bg-blue {
        background-color: #5c6bea;
    }

    .icon-text-block .icon-circle.bg-dark-blue {
        background-color: #1a237e;
    }

    .icon-text-block .icon-circle.bg-cyan {
        background-color: #4cc3e4;
    }

    .icon-text-block p {
        margin: 0;
        font-size: 15px;
        color: #131742;
        font-family: 'robotomedium';
        line-height: 1.5;
    }

    /* Arrow List (Card 3) */
    .arrow-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .arrow-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 18px;
        font-size: 14px;
        color: #333;
        line-height: 1.5;
    }

    .arrow-list li:last-child {
        margin-bottom: 0;
    }

    .arrow-list li::before {
        content: '\276F';
        position: absolute;
        left: 0;
        top: 3px;
        width: 18px;
        height: 18px;
        background-color: #4cc3e4;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: bold;
    }

    /* =========================================
   11. TESTIMONIALS & FORECASTING SECTION
   ========================================= */

    /* Testimonial Card */
    .custom-card-testimonial {
        background: linear-gradient(180deg, #edf5ff 0%, #e8f5ff 100%);
        border: 1px solid #cde3ef;
        border-radius: 12px;
    }

    .testimonial-main-title {
        color: var(--navy-blue);
        font-size: 22px;
        font-weight: 700;
        line-height: 1.4;
    }

    .testimonial-inner-card {
        background: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .testimonial-heading {
        color: var(--navy-blue);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 14px;
        font-weight: 700;
        color: var(--navy-blue);
    }

    .quote-icon {
        color: #4cc3e4;
        font-size: 40px;
        opacity: 0.8;
    }

    /* Owl Carousel Pagination Styles */
    .bottom-testimonial-carousel .owl-pagination {
        margin-top: 25px;
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 4px;
    }

    .bottom-testimonial-carousel .owl-pagination .owl-page {
        display: inline-block;
    }

    .bottom-testimonial-carousel .owl-pagination .owl-page span {
        display: block;
        width: 25px;
        height: 4px;
        background-color: #cddbe8;
        border-radius: 2px;
        margin: 0;
        transition: background-color 0.3s;
    }

    .bottom-testimonial-carousel .owl-pagination .owl-page.active span,
    .bottom-testimonial-carousel .owl-pagination .owl-page:hover span {
        background-color: #4cc3e4;
    }

    /* Forecasting Card */
    .custom-card-forecasting {
        background-color: #fff;
        border: 1px solid #cde3ef;
        border-radius: 12px;
    }

    .forecasting-main-title {
        color: var(--navy-blue);
        font-size: 22px;
        font-weight: 700;
    }

    .forecasting-subtitle {
        font-size: 16px;
        color: #333;
    }

    .forecasting-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .forecasting-list li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

    .forecasting-list li:last-child {
        margin-bottom: 0;
    }

    .forecasting-list li::before {
        content: '\276F';
        position: absolute;
        left: 0;
        top: 4px;
        width: 20px;
        height: 20px;
        background-color: #4cc3e4;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }


    @media(min-width:1280px) {
        footer .footer .footer-menu {
            gap: 10px;
        }
    }


    /* =========================================
   12. FOOTER SECTION
   ========================================= */
    .footer-section {
        width: 100%;
    }

    .footer-top {
        background: url(../images/footer-bg.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        color: #ffffff;
        padding: 40px 20px;
    }

    .footer-contact a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    .footer-links {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links li:last-child {
        margin-bottom: 0;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 2px solid transparent;
        padding-bottom: 2px;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        border-bottom: 2px solid #fff;
    }

    .footer-top .btn-outline-light {
        border: 2px solid #fff;
        color: #fff;
        background: transparent;
        font-weight: 400;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .footer-top .btn-outline-light:hover {
        background: #d81435;
        border: 2px solid #d81435;
    }

    .footer-bottom {
        background-color: #fff;
        border-top: 1px solid #e0e9f4;
        padding: 20px;
    }

    .footer-bottom p,
    .footer-bottom a {
        color: #4f4f4f;
        font-size: 12px;
        text-decoration: none;
    }

    .footer-bottom a:hover {
        color: #333;
        text-decoration: underline;
    }

    .footer-social-icons a {
        display: inline-block;
        margin-left: 8px;
    }

    .footer-social-icons img {
        height: 26px;
        transition: opacity 0.3s ease;
    }

    .footer-social-icons a:hover img {
        opacity: 0.8;
    }

    /* =========================================
   13. ANIMATIONS
   ========================================= */
    .animated-heading .line1,
    .animated-heading .line2 {
        display: inline-block;
        opacity: 0;
        animation: fadeUpSlide 0.8s forwards;
    }

    .animated-heading .line1 {
        animation-delay: 0.2s;
    }

    .animated-heading .line2 {
        animation-delay: 0.5s;
    }

    @keyframes fadeUpSlide {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* =========================================
   14. CUSTOM VIDEO THUMBNAIL
   ========================================= */
    .video-thumbnail-container {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        height: 250px;
        background: #000;
    }

    .video-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
        text-decoration: none;
    }

    .video-thumb {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        transition: background 0.3s ease;
    }

    .video-link:hover .video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .video-link:hover .video-thumb {
        transform: scale(1.05);
    }

    .play-button {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(255, 0, 0, 0.9);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        padding-left: 4px;
        animation: pulse 2s infinite;
        z-index: 2;
    }

    .video-hover-text {
        position: absolute;
        bottom: -40px;
        left: 0;
        width: 100%;
        text-align: center;
        color: #fff;
        font-family: 'robotomedium';
        font-size: 16px;
        transition: bottom 0.3s ease;
        z-index: 2;
    }

    .video-link:hover .video-hover-text {
        bottom: 20px;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
        }

        50% {
            transform: scale(1.1);
            box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
        }
    }

    /* =========================================
   15. CTA BUTTON ANIMATIONS
   ========================================= */
    .cta-btn {
        animation: subtlePulse 3s infinite;
        transition: transform 0.3s ease;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
    }

    @keyframes subtlePulse {

        0%,
        100% {
            box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        }

        50% {
            box-shadow: 0 0 20px rgba(255, 255, 255, .3);
        }
    }

    /* =========================================
   16. REGISTRATION TRIAL FORM
   ========================================= */
    .register-trial-form {
        gap: 5px;
    }

    .register-input-group {
        background: #fff;
        border: 1px solid rgba(93, 194, 232, 0.58);
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    }

    .register-input-group.has-error,
    .register-input-group:has(.error) {
        border-color: #b94a48 !important;
    }

    .register-input-icon {
        width: 45px;
        color: var(--navy-blue);
        font-size: 16px;
    }

    .register-input-field {
        height: 42px !important;
        padding: 8px 15px 8px 0 !important;
        background: transparent !important;
        font-size: 15px !important;
        outline: none !important;
        box-shadow: none !important;
        border-radius: 0 6px 6px 0 !important;
        flex-grow: 1;
    }

    .register-input-field:focus {
        box-shadow: none !important;
        outline: none !important;
        background: transparent !important;
    }

    .register-submit-btn {
        /* height: 42px !important; */
        padding: 8px 15px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 14px !important;
        font-family: 'robotomedium' !important;
        white-space: nowrap;
        border-radius: 6px !important;
        box-shadow: none !important;
        flex-direction: column;
    }

    /*======== Breadcrumbs ========*/
    .property-breadcrumbs {
        margin: 0 0 1rem;
        align-items: center;
        display: flex;
    }

    .property-breadcrumbs a {
        font-size: 12px;
        color: #55c8e2;
        text-decoration: underline;
    }

    .property-breadcrumbs i,
    .property-breadcrumbs svg {
        font-size: 14px;
        margin: 0px 3px;
        width: 16px;
        text-align: center;
    }

    .property-breadcrumbs a.text-unlink {
        color: #333;
        cursor: default;
        text-decoration: none;
    }

    /* ==========================================================
   Buyers Agents Page Styles
   ========================================================== */
    .ba-page-wrapper {
        background-color: var(--white);
    }

    .ba-page-wrapper .card .card-header {
        padding: 1.35rem 2.25rem;
    }

    .ba-page-wrapper .card .card-body {
        padding: 2.25rem 2.25rem;
    }

    @media(max-width:767px) {

        .ba-page-wrapper .card .card-header,
        .ba-page-wrapper .card .card-body {
            padding: 15px;
        }
    }

    .ba-content-box {
        background: #fff;
        border: 1px solid #e1e7ec;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .ba-header {
        background-color: #73c3dd;
        /* Matching the mockup light blue header */
        padding: 20px 30px;
    }

    .ba-header h1,
    .ba-main-title {
        color: #fff;
        font-size: 24px;
        margin: 0;
        font-family: 'robotomedium';
    }

    .ba-intro {
        font-size: 15px;
        color: #444;
        line-height: 1.7;
    }

    .ba-intro a {
        color: #666;
        text-decoration: underline;
    }

    .ba-columns-row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .ba-col {
        flex: 1;
        min-width: 300px;
        border: 1px solid #cbe4ef;
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .ba-col.right-col {
        border: 1px solid #bacff3;
    }

    .ba-col-header {
        display: flex;
        align-items: flex-start;
        color: #fff;
        padding: 25px 20px;
        border-bottom: none;
        /* min-height: 110px; */
    }

    .ba-col-header.ba-header-light-blue {
        background: linear-gradient(45deg, #5963eb, #55c9e2);
    }

    .ba-col-header.ba-header-dark-blue {
        background: linear-gradient(45deg, var(--dark-blue), #4667d8);
    }

    .ba-col-icon {
        margin-right: 1rem;
        margin-top: 6px;
    }

    .ba-col-icon img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    .ba-col-header h2 {
        font-size: 22px;
        margin: 0;
        font-weight: 500;
        line-height: 1.3;
        color: #fff;
        padding-top: 8px;
        font-family: 'robotomedium';
    }

    .ba-col-body {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .ba-col-footer {
        padding: 30px;
        display: flex;
        flex-direction: column;
    }

    .ba-feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .ba-feature-list li {
        position: relative;
        padding-left: 0px;
        margin-bottom: 20px;
        font-size: 16px;
        color: #444;
        line-height: 1.6;
        display: flex;
        align-items: start;
        gap: 15px;
        justify-content: start;
    }

    .ba-feature-list li i {
        font-size: 22px;
        color: #73c3dd;
        margin-top: 3px;
    }

    .ba-feature-list li i.ba-icon-dark {
        color: #5591ed;
    }

    .ba-video-title {
        font-size: 20px;
        line-height: 26px;
        color: var(--dark-blue);
        font-weight: 500;
        margin-bottom: 1rem;
        font-family: 'robotomedium';
    }

    .ba-screenshots-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .ba-col .video-thumbnail-container {
        height: auto;
        aspect-ratio: 16/9;
    }

    .ba-page-wrapper .video-thumbnail-container {
        border-radius: 2px !important;
        /* Slight rounding to match sharp UI */
    }

    .ba-screenshots-grid .video-thumbnail-container {
        margin-bottom: 0 !important;
    }

    .ba-video-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ba-screenshots-grid .play-small {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }

    .ba-screenshots-grid .play-small i {
        transform: translateX(1px);
    }


    .ba-btn {
        padding: 10px 25px;
        border-radius: 25px;
        font-family: 'robotomedium';
        color: #fff !important;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: opacity 0.3s;
        border: none;
    }

    .ba-btn:hover {
        opacity: 0.85;
        color: #fff !important;
    }

    .ba-btn-light-blue {
        background-color: #6dc3df !important;
    }

    .ba-btn-light-blue:hover {
        background-color: #6dc3df !important;
    }

    .ba-btn-dark-blue {
        background-color: #191c80 !important;
    }

    .ba-btn-dark-blue:hover {
        background-color: #191c80 !important;
    }

    /* Override play button for buyers agent page */
    .ba-page-wrapper .play-button {
        background: rgba(255, 255, 255, 0.95) !important;
        color: #4667d8 !important;
        /* Dark blue icon for contrast */
        animation: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }


    /************* Common CSS *************/
    .header-1 {
        background: #55c8e2;
        color: #ffffff;
        padding: 20px 30px;
    }

    .header-1 h1 {
        display: inline-block;
        font-size: 28px;
        white-space: nowrap;
        margin: 0px;
        font-family: 'robotobold';
    }

    .help-block.form-error {
        color: red;
    }