@charset "UTF-8";
/* ================================
	Frontend CSS.

	Index:
	r01 - Placeholders
	r02 - Global
	r03 - Utilities
	r04 - Components
	r05 - Layouts
===================================*/
@keyframes flickerAnimation {
    0% {
        opacity: 0.35;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0.35;
    }
}

@-webkit-keyframes flickerAnimation {
    0% {
        opacity: 0.35;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0.35;
    }
}

.animate-flicker {
    -webkit-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}

@-webkit-keyframes flickerAnimation2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0;
    }
}

@keyframes flickerAnimation2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes flickerAnimation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0;
    }
}

.animate-flicker2 {
    -webkit-animation: flickerAnimation 2s infinite;
    animation: flickerAnimation 2s infinite;
}

@-webkit-keyframes flickerAnimation3 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes flickerAnimation3 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.animate-flicker3 {
    -webkit-animation: flickerAnimation 2s infinite;
    animation: flickerAnimation 2s infinite;
}

@-webkit-keyframes flickerAnimation4 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flickerAnimation4 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-flicker4 {
    -webkit-animation: flickerAnimation 2s infinite;
    animation: flickerAnimation 2s infinite;
}

.rt-d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rt-flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rt-justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rt-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rt-absolute-content, .rt-relative-content, .rt-static-content {
    position: relative;
}

.rt-primary-color {
    color: var(--color-primary);
}

.rt-primary-color-bg {
    background-color: var(--color-primary);
}

.rt-white-color {
    color: var(--color-white);
}

.rt-white-color-bg {
    background-color: var(--color-white);
}

.rt-black-color {
    color: var(--color-body);
}

.rt-black-color-bg {
    background-color: var(--color-body);
}

.rt-mb-0 {
    margin-bottom: 0;
}

/**
 * Global CSS.
 */
:root {
    --color-primary: #11173F;
    --color-secondary: #FFF3F3;
    --color-secondary-100: #FCF8F0;
    --color-gray: #EDF5F4;
    --color-white: #fff;
    --color-body: #FDFCFC;
    --color-black: #000000;
    --color-paragraph: #626262;
    --font-body: "Outfit", serif;
    --font-title: "Outfit", serif;
    --font-subtitle: "DM Sans", sans-serif;
    --border-radius-xs: 4px;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
}

/* ===========================
// Typography
==============================*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-body);
    font-weight: 400;
}

p {
    font-family: var(--font-title);
    font-size: 16px;
    color: var(--color-body);
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 15px;
}

/*==== heading fonts setup ====*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-black);
    font-family: var(--font-title);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 48px;
    line-height: 1.23;
}

@media (max-width: 767px) {
    h1 {
        font-size: 36px;
    }
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

/*============================ 
// Bootstrap Overwrite
=============================*/
@media (min-width: 1200px) {
    .row.gutters-10 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row.gutters-10 > [class^=col-] {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 1200px) {
    .row.gutters-15 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .row.gutters-15 > [class^=col-] {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}

@media (min-width: 1200px) {
    .row.gutters-20 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.gutters-20 > [class^=col-] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 1200px) {
    .row.gutters-30 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.gutters-30 > [class^=col-] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 1200px) {
    .row.gutters-40 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.gutters-40 > [class^=col-] {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1200px) {
    .row.gutters-50 {
        margin-left: -25px;
        margin-right: -25px;
    }

    .row.gutters-50 > [class^=col-] {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 1200px) {
    .row.gutters-60 {
        margin-left: -30px;
        margin-right: -30px;
    }

    .row.gutters-60 > [class^=col-] {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.gutter-30 > li, .gutter-30 > div {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/*============================ 
// Global styles
=============================*/
html {
    overflow-x: hidden !important;
    width: 100%;
    height: 100%;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    position: relative;
    background-color: var(--color-white);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: var(--color-primary);
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:link, a:visited, a:focus {
    text-decoration: none;
    outline: 0;
}

a:hover {
    text-decoration: none;
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
}

input:focus,
textarea:focus,
select:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.section-padding {
    padding-block: 120px;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

section,
.section {
    position: relative;
}

@media (min-width: 1400px) {
    .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
        max-width: 1330px;
    }
}

.rt-image .img-scale-animation {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-transform: translateY(20px) scale(0.98);
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    -webkit-filter: blur(6px);
    filter: blur(6px);
    -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), -webkit-clip-path 0.7s ease-out, -webkit-filter 0.6s ease-out;
    transition: opacity 0.6s ease-out, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), -webkit-clip-path 0.7s ease-out, -webkit-filter 0.6s ease-out;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), clip-path 0.7s ease-out, opacity 0.6s ease-out, filter 0.6s ease-out;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), clip-path 0.7s ease-out, opacity 0.6s ease-out, filter 0.6s ease-out, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), -webkit-clip-path 0.7s ease-out, -webkit-filter 0.6s ease-out;
}

.rt-image .img-scale-animation.style-1 {
    -webkit-transition: opacity 2.2s ease-out, -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-clip-path 2.2s ease-out, -webkit-filter 2s ease-out;
    transition: opacity 2.2s ease-out, -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-clip-path 2.2s ease-out, -webkit-filter 2s ease-out;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), clip-path 2.2s ease-out, opacity 2.2s ease-out, filter 2s ease-out;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), clip-path 2.2s ease-out, opacity 2.2s ease-out, filter 2s ease-out, -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-clip-path 2.2s ease-out, -webkit-filter 2s ease-out;
}

/* Active Class - Applied by JS on Scroll */
.rt-image .img-scale-animation.active-animation {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

/**
 * Utility CSS.
 */
/*======================================
// pre-loader
=====================================*/
#preloader {
    background: url("../../media/preloader.gif") rgba(255, 255, 255, 0.99) no-repeat scroll center center;
    height: 100%;
    left: 0;
    overflow: visible;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

/*======================================
// Back-to-top
=====================================*/
button.scroll-to-top {
    background-color: var(--color-secondary);
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button.scroll-to-top i::before {
    font-size: 10px;
    color: var(--color-white);
    position: relative;
    top: -2px;
}

button.scroll-to-top.show {
    display: block;
    background-color: var(--color-secondary);
    right: 25px;
    bottom: 50px;
    height: 40px;
    width: 40px;
    visibility: visible;
    -webkit-box-shadow: 6px 6px 12px rgba(181, 98, 0, 0.16);
    box-shadow: 6px 6px 12px rgba(181, 98, 0, 0.16);
}

button.scroll-to-top.show:hover i::before {
    font-size: 10px;
    -webkit-animation: toBottomFromTop 0.7s forwards;
    animation: toBottomFromTop 0.7s forwards;
}

button.scroll-to-top.show i {
    color: var(--color-white);
}

button.scroll-to-top.show:active {
    -webkit-box-shadow: 6px 6px 12px rgba(181, 98, 0, 0.16);
    box-shadow: 6px 6px 12px rgba(181, 98, 0, 0.16);
}

.rt-icon::before {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    line-height: unset;
}

/* ===========================
// Typography
==============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 60px;
    line-height: 76px;
    font-weight: 600;
}

h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    font-size: 16px;
    margin: 0;
}

/*=================================
// Widget-popular-tag [side widget]
===================================*/
.widget-tag {
    border-radius: 12px;
}

.widget-tag .sub-title {
    border-radius: 8px 8px 0px 0px;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 140%;
    display: inline-block;
    margin-bottom: 20px;
}

.widget-tag .tag-list-wrapper ul.tag-list {
    row-gap: 10px;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget-tag .tag-list-wrapper ul.tag-list li .tag-link {
    padding: 8px 14px 7px 14px;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 18px;
    border: 1px solid #D9D9D9;
    border-radius: 30px;
}

.widget-tag .tag-list-wrapper ul.tag-list li .tag-link:hover {
    color: var(--color-white);
    border: 1px solid transparent;
}

.social-list {
    gap: 20px;
}

.social-list .social-item .social-link {
    color: #8A8989;
}

.social-list .social-item .social-link:hover {
    color: var(--color-white);
    border-color: transparent;
}

.social-list .social-item .social-link:hover i {
    -webkit-animation: toBottomFromTop 0.5s forwards;
    animation: toBottomFromTop 0.5s forwards;
}

.marquee-container-text {
    background-color: #ffcc00;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.marquee-container-text:hover .marquee-content {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.marquee-container-text .marquee-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: marquee 30s linear infinite;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-container-text .marquee-content .marquee-item-text {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #000;
    padding: 0 20px;
}

.marquee-container-text .marquee-content .separator {
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: -8px;
}

.marquee-container-text .marquee-content .separator i {
    font-size: 18px;
    color: black;
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.scroll-wrap {
    text-align: center;
    position: absolute;
    bottom: -75px;
    left: 30%;
    -webkit-transform: translateX(-65%);
    transform: translateX(-65%);
    -webkit-transform: translateY(140%);
    transform: translateY(140%);
    z-index: 1;
    cursor: pointer;
    z-index: 1;
    cursor: pointer;
}

.scroll-wrap .rt-scroll .scroll {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

.scroll-wrap .rt-scroll .scroll--style-2 {
    -webkit-transform: translateY(-50%) translateX(-55%);
    transform: translateY(-50%) translateX(-55%);
}

@media only screen and (max-width: 992px) {
    .scroll-wrap .rt-scroll .scroll {
        display: none;
    }
}

.scroll-wrap .rt-scroll .round-img {
    height: 180px;
    width: 180px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.scroll-wrap .rt-scroll .round-img img {
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
}

@media only screen and (max-width: 1200px) {
    .scroll-wrap {
        bottom: 23px;
        left: 75px;
    }
}

@media only screen and (max-width: 768px) {
    .scroll-wrap {
        display: none;
    }
}

.navbar {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 26px 40px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
    background-color: #000;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 18px 40px;
}

/* Nav Links */
.nav-link {
    color: #fff;
    margin: 0 15px;
    font-weight: 500;
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover:after {
    width: 100%;
}

/* Purchase Button Styles */
.purchase-btn {
    background-color: white;
    color: #000000;
    border-radius: 30px;
    padding: 14px 25px;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid transparent;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.purchase-btn:hover {
    background-color: #FFCC00;
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 20px rgba(75, 75, 75, 0.4);
    box-shadow: 0 8px 20px rgba(75, 75, 75, 0.4);
}

.navbar.scrolled .purchase-btn {
    background-color: #ffcc00;
    color: #000;
}

.navbar.scrolled .purchase-btn:hover {
    background-color: transparent;
    color: #ffcc00;
}

.navbar-collapse {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.toggler-icon.top-bar {
    top: 0px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.toggler-icon.middle-bar {
    top: 10px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.toggler-icon.bottom-bar {
    top: 20px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler.collapsed .toggler-icon.top-bar {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .toggler-icon.middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .toggler-icon.bottom-bar {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.navbar-toggler:not(.collapsed) .toggler-icon.top-bar {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -1px;
    left: 4px;
}

.navbar-toggler:not(.collapsed) .toggler-icon.middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .toggler-icon.bottom-bar {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 4px;
}

/* Mobile Menu Full Screen */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 100px 20px 40px;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.4s ease;
        transition: -webkit-transform 0.4s ease;
        transition: transform 0.4s ease;
        transition: transform 0.4s ease, -webkit-transform 0.4s ease;
        z-index: 999;
        outline: none !important;
        border: none !important;
    }

    .navbar-collapse.show {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .navbar-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 1.5rem;
        text-align: center;
    }

    .purchase-btn {
        position: fixed;
        bottom: 40px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 1000;
        width: 200px;
        height: 50px;
    }
}

@media only screen and (max-width: 991px) and (max-width: 1200px) {
    .purchase-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        z-index: 1001;
    }
}

@media (max-width: 991px) {
    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.navbar-collapse:focus,
.navbar-collapse button:focus,
.navbar-collapse a:focus {
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* Hero Section Margin for Fixed Header */
.hero-section {
    overflow: hidden;
    padding: 120px 0px 120px 0px;
    height: 950px;
    position: relative;
    background-image: url(../images/hero/heroimg.png);
}

.hero-section .hero-title {
    color: white;
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section .hero-title {
        font-size: 45px;
    }
}

.hero-section .title-img {
    position: relative;
    left: 40%;
    height: 101px;
    width: 220px;
}

.hero-section .hero-truck-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 250px;
}

@media only screen and (max-width: 1200px) {
    .hero-section .hero-truck-img {
        display: none;
    }
}

.hero-section .top-img .showcase-img {
    position: absolute;
    left: 58px;
    width: 475px;
    top: 191px;
}

.hero-section .top-img .showcase-img-2 {
    position: absolute;
    right: 76px;
    width: 475px;
    top: 182px;
}

@media only screen and (max-width: 1440px) {
    .hero-section .top-img {
        display: none;
    }
}

.hero-section .top-img-2 .showcase-img {
    position: absolute;
    bottom: 91px;
    width: 430px;
}

@media only screen and (max-width: 1200px) {
    .hero-section .top-img-2 .showcase-img {
        display: none;
    }
}

.hero-section .top-img-2 .showcase-img-2 {
    position: absolute;
    right: -220px;
}

@media only screen and (max-width: 425px) {
    .hero-section .top-img-2 .showcase-img-2 {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .hero-section .navbar-brand {
        width: 156px;
    }
}

@media only screen and (max-width: 1200px) {
    .hero-section {
        height: 800px;
    }
}

@media only screen and (max-width: 768px) {
    .hero-section {
        height: 650px;
    }
}

/**
 * Layout - Footer.
 */
.footer-section {
    position: relative;
    padding: 100px 0;
    min-height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-section .shapes-wrap .forklift-img {
    position: absolute;
    left: 0;
    width: 379px;
    top: 5%;
}

.footer-section .shapes-wrap .truck-img {
    position: absolute;
    right: 0;
    top: 15%;
    width: 379px;
}

.footer-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #f8f9fa;
}

.footer-content {
    text-align: center;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 1.5rem;
    max-width: 200px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-title {
    font-weight: 600;
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 1.5rem;
    color: black;
}

.btn-primary-footer {
    background-color: #FFCC00;
    padding: 16px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: black;
}

.btn-primary-footer:hover, .btn-primary-footer:focus {
    background-color: black;
    border-color: var(--primary-hover);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    color: rgb(255, 255, 255);
}

.btn-outline-footer {
    background-color: transparent;
    border: 1px solid black;
    color: black;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-outline-footer:hover, .btn-outline-footer:focus {
    background-color: var(--dark-color);
    color: rgb(0, 0, 0);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.forklift-container {
    position: relative;
    z-index: 2;
}

.truck-container {
    position: relative;
    z-index: 2;
}

.forklift-img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 425px) {
    .forklift-img {
        display: none;
    }
}

.truck-img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 425px) {
    .truck-img {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .footer-title {
        font-size: 2rem;
    }

    .footer-section {
        padding: 60px 0;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }

    .forklift-container, .truck-container {
        margin-top: 2rem;
        max-width: 50%;
    }
}
/* Animation delay utilities */
.delay-1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-2 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

/* Demo Section */
.demo-section {
    background-color: #FFFCF0;
    overflow: hidden;
    padding: 50px 0;
}

@media (max-width: 767px) {
    .demo-section {
        padding: 30px 0;
    }
}

@media (max-width: 575px) {
    .demo-section {
        padding: 20px 0;
    }
}

.demo-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .demo-section .section-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .demo-section .section-header {
        margin-bottom: 10px;
    }
}

.demo-section .section-header h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .demo-section .section-header h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .demo-section .section-header h1 {
        font-size: 24px;
        line-height: 34px;
    }
}

.demo-section .section-header .section-subtitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .demo-section .section-header .section-subtitle {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    .demo-section .section-header .section-subtitle {
        font-size: 16px;
        line-height: 22px;
    }
}

/* Card Container */
.card-container {
    position: relative;
    overflow: hidden;
    z-index: 5;
    border-radius: 10px 10px 0px 0px;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.2s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.2s ease;
    transition: transform 0.3s ease, box-shadow 0.2s ease;
    transition: transform 0.3s ease, box-shadow 0.2s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.2s ease;
}

.card-container .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
 /* Initially transparent */
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.card-container .card-overlay .card-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.card-container .card-overlay .card-buttons .btn {
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media (max-width: 767px) {
    .card-container .card-overlay .card-buttons .btn {
        padding: 6px 15px;
    }
}

@media (max-width: 575px) {
    .card-container .card-overlay .card-buttons .btn {
        padding: 4px 10px;
    }
}

.card-container .card-overlay .card-buttons .btn.btn-primary {
    background-color: #000000;
    color: #ffffff;
    border: none;
}

.card-container .card-overlay .card-buttons .btn.btn-primary:hover {
    background-color: #FFCC00;
    border-color: #FFCC00;
    color: black;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.card-container .card-overlay .card-buttons .btn.btn-outline {
    background-color: #FFCC00;
    color: #000000;
    border: none;
}

.card-container .card-overlay .card-buttons .btn.btn-outline:hover {
    background-color: white;
    color: #333;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.card-container:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  /* This triggers the underline effect in the title when hovering the card */
}

.card-container:hover .card-overlay {
    background: rgba(0, 0, 0, 0.6);
 /* Dark overlay */
}

.card-container:hover .card-buttons {
    opacity: 1;
}

.card-container:hover + .title-wrap .demo-title:after {
    width: 100%;
}

.title-wrap {
    background: #ffffff;
    padding: 25px 0px 0px 0px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.title-wrap .demo-title {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    line-height: 30px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-decoration: none;
  /* Modern underline effect */
}

.title-wrap .demo-title:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FFCC00;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
    border-radius: 3px;
}

/* Remove blue focus border */
.btn:focus, .btn:active {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.marquee-section {
    padding: 100px 0px;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-weight: 600;
    font-size: 20px;
    color: black;
    line-height: 26px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle::before, .section-subtitle::after {
    content: "•";
    display: inline-block;
    font-weight: bold;
    color: var(--primary-color);
}

.section-header h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #000000;
}

/* Marquee Container and Positioning */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    position: relative;
    margin: 9px 0;
}

/* Marquee Track Styles */
.marquee-track {
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.marquee-track.right-to-left {
    -webkit-animation: moveRightToLeft 60s linear infinite;
    animation: moveRightToLeft 60s linear infinite;
}

.marquee-track.left-to-right {
    -webkit-animation: moveLeftToRight 60s linear infinite;
    animation: moveLeftToRight 60s linear infinite;
}

@-webkit-keyframes moveRightToLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes moveRightToLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-webkit-keyframes moveLeftToRight {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moveLeftToRight {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
/* Item Styles */
.marquee-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 15px;
    width: 432px;
    height: 409px;
}

.page-card {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 409px;
    width: 432px;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.page-card img {
    width: 100%;
    height: 409px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

/* Glow Effect */
.glow {
    position: relative;
}

.glow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 186, 8, 0.1), rgba(255, 255, 255, 0.1));
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.glow:hover::after {
    opacity: 1;
}

/* Controls */
.controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: var(--dark-color);
    color: white;
}

.features-section {
    padding: 5rem 0;
    background-color: #F9F3E7;
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.features-section .section-title .title-badge {
    font-weight: 600;
    font-size: 20px;
    color: black;
    line-height: 26px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.features-section .section-title h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #000000;
}

.features-section .feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    transition: transform 0.2s ease, box-shadow 0.3s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.3s ease;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-section .feature-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features-section .feature-card .feature-icon {
    width: 205px;
    height: 100px;
    margin: 0 auto 1.5rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.features-section .feature-card .feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
}

/* Custom animation classes */
.fade-up {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.stagger-delay-1 {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.features-section-2 {
    padding: 80px 0px;
    position: relative;
}

.features-section-2 .feature-card {
    position: relative;
    z-index: 2;
    padding: 70px 20px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background-color: #F3F3F3;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.features-section-2 .feature-card:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.features-section-2 .feature-card .feature-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 92px;
    height: 92px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: #f0f0f0;
}

.features-section-2 .feature-card .feature-icon svg {
    stroke: #007bff;
    width: 48px;
    height: 48px;
}

.features-section-2 .feature-card .feature-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 5px;
}

.features-section-2 .feature-card .feature-description {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: #484848;
}

.features-section-2 .shape-wrap .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.features-section-2 .shape-wrap .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.plugins-section {
    position: relative;
}

.plugins-section .airplane-image {
    position: absolute;
    top: -43%;
    left: 0;
    width: 50%;
    max-width: 518px;
    z-index: 1;
}

.plugins-section .plugins-content {
    padding: 100px 0px 120px 0px;
    background-color: #F9F3E7;
    position: relative;
    border-radius: 20px;
    z-index: 2;
}

.plugins-section .subtitle {
    font-weight: 600;
    font-size: 20px;
    color: black;
    line-height: 26px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.plugins-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
}

.plugins-section .plugin-logos .plugin-logo {
    width: 130px;
    height: 120px;
    background-color: white;
    border-radius: 30px;
    border: 1px solid #92003B;
    padding: 1rem;
    -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.plugins-section .plugin-logos .plugin-logo:hover {
    -webkit-transform: scale(1.1) rotate3d(1, 1, 0, 8deg);
    transform: scale(1.1) rotate3d(1, 1, 0, 8deg);
    -webkit-box-shadow: 0px 10px 25px rgba(146, 0, 59, 0.4);
    box-shadow: 0px 10px 25px rgba(146, 0, 59, 0.4);
}

.plugins-section .plugin-logos .plugin-logo .card-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #92003B;
    text-transform: capitalize;
}

.plugins-section .plugin-logos .plugin-logo img {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

.plugins-section .plugin-logos .plugin-logo:nth-child(2) {
    border: 1px solid #3858E9;
}

.plugins-section .plugin-logos .plugin-logo:nth-child(2) .card-title {
    color: #3858E9;
}

.plugins-section .plugin-logos .plugin-logo:nth-child(2):hover {
    -webkit-box-shadow: 0px 10px 25px rgba(56, 88, 233, 0.4);
    box-shadow: 0px 10px 25px rgba(56, 88, 233, 0.4);
}

.plugins-section .plugin-logos .plugin-logo:nth-child(3) {
    border: 1px solid #000000;
}

.plugins-section .plugin-logos .plugin-logo:nth-child(3) .card-title {
    color: #000000;
}

.plugins-section .plugin-logos .plugin-logo:nth-child(3):hover {
    -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
}

.plugins-section .plugin-logos .plugin-logo:nth-child(4) {
    border: 1px solid #33879E;
}

.plugins-section .plugin-logos .plugin-logo:nth-child(4) .card-title {
    color: #33879E;
}

.plugins-section .plugin-logos .plugin-logo:nth-child(4):hover {
    -webkit-box-shadow: 0px 10px 25px rgba(51, 135, 158, 0.4);
    box-shadow: 0px 10px 25px rgba(51, 135, 158, 0.4);
}

@media (max-width: 768px) {
    .plugins-section .airplane-image {
        top: -5%;
        width: 70%;
    }
}

@media (max-width: 768px) and (max-width: 1024px) {
    .plugins-section .airplane-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .plugins-section .plugin-logos {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 1rem !important;
    }

    .plugins-section .plugin-logos .plugin-logo {
        -ms-flex-preferred-size: calc(50% - 1rem);
        flex-basis: calc(50% - 1rem);
        margin-bottom: 1rem;
    }
}

.elementor-section {
    background-color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.elementor-section .truck-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 488px;
}

.elementor-section .truck-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .elementor-section .truck-image {
        display: none;
    }
}