<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    min-width: 100%;
    width: 100vw;
}

.custom-secondary-font {
    font-family: "Poppins", sans-serif;
}

.custom-box-shadow-1 {
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.15);
}

/* Header */
@media (min-width: 992px) {
    #header .header-nav-main nav &gt; ul:not(:hover) &gt; li &gt; a.active {
        color: #FFF !important;
    }
    #header .header-nav-main nav &gt; ul:not(:hover) &gt; li &gt; a.active:before {
        background: #FFF !important;
    }
    #header .header-nav-main nav &gt; ul &gt; li:hover &gt; a {
        color: #FFF !important;
    }
    #header .header-nav-main nav &gt; ul &gt; li:hover &gt; a:before {
        background: #FFF !important;
    }
    html.sticky-header-active #header .header-nav-main nav &gt; ul:not(:hover) &gt; li &gt; a.active {
        color: #212529 !important;
    }
    html.sticky-header-active #header .header-nav-main nav &gt; ul:not(:hover) &gt; li &gt; a.active:before {
        background: #212529 !important;
    }
    html.sticky-header-active #header .header-nav-main nav &gt; ul &gt; li &gt; a {
        color: #212529 !important;
    }
    html.sticky-header-active #header .header-nav-main nav &gt; ul &gt; li:hover &gt; a {
        color: #212529 !important;
    }
    html.sticky-header-active #header .header-nav-main nav &gt; ul &gt; li:hover &gt; a:before {
        background: #212529 !important;
    }
}

/* Header Social Icons */
html.sticky-header-active #header .header-social-icons &gt; li &gt; a:hover &gt; i {
    color: #FFF !important;
}

html.sticky-header-active #header .header-social-icons &gt; li &gt; a &gt; i {
    color: #212529 !important;
}

/* Animated Circles */
.custom-animated-circles {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 500px;
    height: 500px;
    transform: translate3d(-55%, 25%, 0);
}

.custom-animated-circles .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    border-radius: 100%;
    border: 1px solid #FFF;
    transform: translate3d(-50%, -50%, 0);
    -webkit-animation-name: customAnimatedCircles;
            animation-name: customAnimatedCircles;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-duration: 2.5s;
            animation-duration: 2.5s;
    -webkit-animation-delay: 500ms;
            animation-delay: 500ms;
}

.custom-animated-circles .circle:nth-child(2) {
    width: 70%;
    height: 70%;
    -webkit-animation-delay: 1000ms;
            animation-delay: 1000ms;
}

.custom-animated-circles .circle:nth-child(3) {
    width: 90%;
    height: 90%;
    -webkit-animation-delay: 1500ms;
            animation-delay: 1500ms;
}

.custom-animated-circles .circle:nth-child(4) {
    width: 110%;
    height: 110%;
    -webkit-animation-delay: 2000ms;
            animation-delay: 2000ms;
}

.custom-animated-circles.custom-animated-circles-pos-2 {
    bottom: auto;
    top: 0;
    transform: translate3d(-55%, -25%, 0);
}

.custom-animated-circles.custom-animated-circles-pos-3 {
    bottom: auto;
    left: auto;
    right: 0;
    transform: translate3d(65%, -50%, 0);
    top: 0;
}

@-webkit-keyframes customAnimatedCircles {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translate3d(-50%, -50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(1.1);
    }
}

@keyframes customAnimatedCircles {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translate3d(-50%, -50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(1.1);
    }
}

/* Custom Screens */
.custom-screens-carousel {
    position: relative;
    z-index: 30;
    margin-top: -250px;
}

@media (max-width: 991px) {
    .custom-screens-carousel {
        margin-top: -90px;
    }
}

/* Carousel Ipad */
.carousel-ipad {
    border-radius: 35px;
    border: 1px solid #FFF;
    padding: 50px;
    background: #F9F9F9;
    box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (max-width: 991px) {
    .carousel-ipad {
        padding: 25px;
        border-radius: 17px;
    }
}

.carousel-ipad img {
    border: 1px solid #FFF;
}

.carousel-ipad .carousel-ipad-camera {
    background: #3c3d3d;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    margin-left: 20px;
    bottom: 50%;
    margin-bottom: -5px;
    border-radius: 100%;
}

.carousel-ipad .carousel-ipad-home {
    background: #F9F9F9;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    border-radius: 28px;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    margin-right: 5px;
    bottom: 50%;
    margin-bottom: -20px;
}

.carousel-ipad .carousel-ipad-home:after {
    width: 15px;
    height: 15px;
    margin-top: -8px;
    margin-left: -8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 50%;
}

@media (max-width: 991px) {
    .carousel-ipad .carousel-ipad-camera, .carousel-ipad .carousel-ipad-home {
        display: none;
    }
}

.carousel-ipad.carousel-ipad-sm {
    padding: 40px;
    border-radius: 25px;
}

@media (max-width: 991px) {
    .carousel-ipad.carousel-ipad-sm {
        padding: 20px;
        border-radius: 12px;
    }
}

/* Custom Form Style */
.custom-form-style-1 .form-control {
    padding: 20.8px;
    padding: 1.3rem;
    height: 45px;
}
/* Slider Styles */
.slider-item {
    position: relative;
    text-align: center;
}

.slider-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    color: #fff;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.slider-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Clients Styles */
.client-carousel {
    padding: 20px 0;
}

.client-item {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.client-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}
/* Slider Styles */
#slider .slider-container {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#slider .slider-item img {
    object-fit: fill;
    object-position: center;
}

#slider .slider-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

#slider .slider-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

#slider .slider-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Clients Section Styles */
#clients .client-carousel-container {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#clients .client-item {
    padding: 20px;
    transition: all 0.3s ease;
}

#clients .client-item:hover {
    transform: translateY(-5px);
}

#clients .client-item img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#clients .client-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}
@media (max-width: 768px) {
    #slider .slider-container {
        height: 300px;
    }
    #slider .slider-item {
        height: 300px !important;
    }
}
#slider .slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
}
#slider .slider-container.loaded::before {
    display: none;
}
/* Loading spinner styles */
.spinner-border {
    vertical-align: middle;
    margin-left: 8px;
}

/* Message container styles */
#trial-form-message {
    transition: all 0.3s ease;
}

/* Form error styles */
.form-errors-light .error {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}</pre></body></html>