:root {
    --background-color: #ffffff;
    --default-color: #525252;
    --heading-color: #525252;
    /* --accent-color: #ffca02; */
    --accent-color: #FF3232;
    --surface-color: #fff;
    --contrast-color: #525252
}

:root {
    --nav-color: #525252;
    --nav-hover-color: #FF3232;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #525252;
    --nav-dropdown-hover-color: #FF3232
}

.light-background {
    --background-color: #e6e8e8;
    --surface-color: #ffffff
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff
}

.accent-background {
    --background-color: #FF3232;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #80c792
}

:root {
    scroll-behavior: smooth
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: "Exo", sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: .3s
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000
}

.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.header {
    color: var(--default-color);
    transition: all .5s;
    z-index: 997;
    background-color: var(--background-color)
}

.header .branding {
    min-height: 60px;
    padding: 5px 0
}

.header .logo {
    line-height: 1
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase
}

.scrolled .header {
    box-shadow: 0 0 18px rgba(0, 0, 0, .1)
}

.top-bar {
    background-color: rgba(255, 255, 255, .95)
}

.top-bar a {
    color: #5b5b5b;
    font-size: 14px !important
}

.top-bar span:hover,
.top-bar a:hover,
.top-bar i:hover {
    color: #FFCA02
}

.navbar {
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: none
}

.navbar .logo {
    width: 250px
}

.nav-link {
    color: #525252;
    padding: .5rem .5rem !important;
    font-weight: 500
}

.nav-link:hover,
.nav-link:focus {
    color: var(--nav-hover-color)
}

.dropdown-menu {
    margin-top: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    padding: 1rem 0;
    display: none
}

.nav-item a {
    font-family: "Exo", sans-serif;;
    font-size: 14px
}

nav a {
    font-family: "Exo", sans-serif;;
    font-size: 14px !important
}

.dropdown-item {
    padding: .2rem .9rem
}

.dropdown-item:hover {
    background-color: rgba(0, 72, 143, .1);
    color: var(--primary-color)
}

.dropdown-menu-lg {
    min-width: 500px
}

.nav-chevron {
    font-size: 12px;
    transition: transform .3s ease-in-out
}

.dropdown-toggle {
    gap: 4px
}

.dropdown-toggle::after {
    display: none
}

.nav-link .bi-chevron-down {
    margin-top: 2px
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10
}

.navbar-nav .nav-link {
    color: #525252 !important
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.footer {
    color: var(--default-color);
    padding-top: 50px;
    background: #FFCA02;
    font-size: 14px;
    padding-bottom: 0;
    position: relative
}

.footer .footer-top {
    border-top: 0 solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .footer-about .logo {
    line-height: 1
}

.footer .footer-about .logo img {
    max-height: 29px;
    margin-right: 6px
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px
}

.footer .footer-about p {
    font-size: 14px
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, #525252 50%, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, #525252 50%, transparent 50%);
    margin-right: 10px;
    transition: .3s
}

.footer .social-links a:hover {
    color: #FF3232;
    border-color: #FF3232
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px
}

.footer .footer-links {
    margin-bottom: 30px
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.footer .footer-links ul li:first-child {
    padding-top: 0
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1
}

.footer .footer-links ul a:hover {
    color: var(--accent-color)
}

.footer .footer-contact p {
    margin-bottom: 5px
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #000;
    color: #fff;
    text-align: center
}

.footer .copyright p {
    margin-bottom: 0;
    font-size: 14px
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all .6s ease-out
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border: #ffca02;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all .4s
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color)
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600
}

.page-title nav ol li+li {
    padding-left: 10px
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%)
}

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 80px 20px;
    scroll-margin-top: 120px;
    overflow: clip;
    min-height: auto;

}

.section-title {
    text-align: center;
    padding-bottom: 20px;
    position: relative
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.section-title h1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.section-title p {
    margin-bottom: 0
}

.featured-services {
    padding: 30px 0
}

.text-blue {
    color: #FF3232
}

.text-red {
    color: #000000
}

#featured-services span {
    font-weight: 500
}

.button {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    padding: 15px 15px;
    border-radius: 50px;
    transition: .3s;
    border: 3px solid #FF3232;
    color: #ffffff;
    background: #FF3232;
    position: relative;
    overflow: hidden
}

.button:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.animate-zoom {
    animation: zoomIn .6s ease-out
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    box-sizing: border-box
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden
}

.video-background video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center
}

.card video, .advantage-card video {
    height: 250px;
    object-fit: cover;
    width: 100%;
    object-position: center
}

.hero-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #ffffff
}

.hero-content .logo img {
    width: 90%;
    margin: 30px 0;
    max-width: 90%;
    border-radius: 0
}

.sub-title {
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 1px;
    color: #ffffff
}

.sub-title .highlight {
    color: #000000;
    font-weight: bold
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

/* #hero-section .lazy-video,
#intruders .lazy-video {
    border-radius: 0
} */

#hero-section .lazy-video {
    border-radius: 0
}

.col-xl-6>video,
.col-lg-6 video {
    width: 100%;
    max-height: 370px;
    object-fit: fill;
    object-position: center;
    border-radius: 20px
}

.col-xl-6>img,
.col-lg-6 img,
.col-lg-5 img {
    width: 100%;
    max-height: 330px;
    object-fit: fill;
    object-position: center;
    border-radius: 20px !important
}

#industries .col-xl-4 {
    min-height: 410px
}

.card {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    transition: transform .3s ease, box-shadow .3s ease
}

#industries .card {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform .3s ease, box-shadow .3s ease
}

#industries .card:hover {
    transform: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0)
}

.card-body-image {
    height: 220px;
    object-fit: fill;
    border-radius: 0
}

#insight .card-body-image {
    object-fit: fill
}

.btn-custom {
    background-color: transparent;
    border: 2px solid #FF3232;
    background-color: #FF3232;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    padding: 8px 20px;
    text-align: center;
    font-size: 16px;
    border-radius: 40px;
    z-index: 1
}

.btn-custom:hover {
    color: #fff;
    background-color: #FF3232
}

.btn-custom1 {
    color: #000000;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 20px;
    line-height: 1.2;
    margin: 2px;
    border: 1px solid #000000
}

.btn-custom1:hover {
    background-color: #000000;
    color: #ffffff;
    opacity: .9;
    border: 1px solid #000000
}

.btn-custom2 {
    color: #ffffff;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 20px;
    line-height: 1.2;
    margin: 2px;
    border: 1px solid #FF3232;
    background-color: #FF3232;
}

.btn-custom2:hover {
    background-color: #FF3232;
    color: #ffffff;
    opacity: .9;
    border: 1px solid #FF3232;
}

footer .btn-custom1 {
    background-color: red
}

.space{
    padding: 150px 50px 50px !important;
}

.about-us {
    background-size: cover;
    position: relative;
    padding: 150px 50px 50px;
    color: #ffffff
}

.about-us h1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.about-us h1,
.about-us p {
    position: relative;
    z-index: 2
}

.fs-4,
.fs-1 {
    color: #ff3232
}

.full-height-image {
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25)
}

.highlighted-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px
}

p.highlighted-subtitle.aos-init.aos-animate {
    margin-bottom: 20px
}

.section-description,
p,
li {
    line-height: 2.3
}

h2,
h3,
h4,
h5 {
    color: #000000
}


/* .card-body {
    padding: 1.5rem 1.5rem
} */

.col-lg-5>img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
    border-radius: 20px
}

.video-container {
    position: relative
}

.videoPlayer {
    width: 100%;
    height: auto;
    border-radius: 8px
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, .6);
    padding: 8px 15px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity .3s ease
}

.video-controls button {
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: black;
    cursor: pointer;
    transition: background .3s
}

.video-controls button:hover {
    background: #ddd
}

.progress-bar {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, .4);
    border-radius: 5px;
    flex-grow: 1
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    cursor: pointer
}

.progress-bar::-moz-range-thumb {
    background: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    cursor: pointer
}

.video-container:hover .video-controls,
.video-container:focus-within .video-controls {
    opacity: 1
}

.video-container:active .video-controls {
    opacity: 1
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.video-controls button {
    margin-right: 10px
}

.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    transition: .3s;
    border-radius: 5px;
    border: solid 2px #000000
}

.services .service-item .icon {
    font-size: 32px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px
}

.services .service-item h3 a {
    color: color-mix(in srgb, var(--heading-color), transparent 25%);
    font-weight: 700;
    font-size: 22px;
    transition: .3s
}

.services .service-item p {
    margin-bottom: 0;
    transition: .3s
}

.services .service-item:hover {
    transform: scale(1.06)
}

.services .service-item:hover h3 a {
    color: var(--heading-color)
}

.services .service-item:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 10%)
}

.service-title {
    height: 68px
}

h1 {
    font-size: calc(1.155rem + 1.1vw) !important;
    font-family: "Exo", sans-serif;
}

h2,
#hero-section .hero-title {
    font-size: calc(1.145rem + .9vw) !important;
    font-family: "Exo", sans-serif;
}

h3,
#hero-section .sub-title {
    font-size: calc(1rem + .6vw) !important;
    font-family: "Exo", sans-serif;
}

h4 {
    font-size: calc(1rem + .2vw) !important;
    font-family: "Exo", sans-serif;
}

.sub-side {
    font-size: calc(1rem + .2vw) !important;
    font-family: "Exo", sans-serif;;
    font-weight: 500
}

h5 {
    font-size: 0.9rem !important;
    font-family: "Exo", sans-serif;
}

h6 {
    font-size: .8rem !important;
    font-family: "Exo", sans-serif;
}

p.mb-0.text-white-50 {
    color: #525252 !important
}

#videoCarousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px
}

#videoCarousel .carousel-item {
    transition: transform .6s ease-in-out;
    border-radius: 20px
}

.lazy-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px
}

#video-container .lazy-video {
    border-radius: 20px
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(0, 0, 0, .5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%)
}

.carousel-control-prev {
    left: 10px
}

.carousel-control-next {
    right: 10px
}

.features-list.p-4.rounded.shadow {
    border-radius: 20px !important;
    padding: 40px !important;
    background-color: #ffffff
}

.features-list ul.list-unstyled {
    margin-bottom: 0
}

button,
.btn {
    font-family: "Exo", sans-serif;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    flex-wrap: wrap
}

.navbar>.container-fluid,
.top-bar>.container-fluid {
    width: 90%
}

.text-dark,
.accordion-button,
.accordion-item {
    color: #000000 !important
}

.bg-dark {
    background-color: #000000 !important
}

@keyframes pulse-expand {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 75, 134, .4)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 75, 134, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 75, 134, 0)
    }
}

.btn-expand {
    color: #000000;
    border: 1px solid;
    text-decoration: none;
    height: 45px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    width: auto;
    max-width: 45px;
    transition: all .6s ease;
    font-family: "Exo", sans-serif;;
    font-size: 16px;
    font-family: "Exo", sans-serif;
}

.btn-expand:hover {
    max-width: 200px;
    color: #000000;
    animation: none
}

.icon {
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: transform .3s ease
}

.btn-expand:hover .icon {
    transform: translateX(4px)
}

.text {
    white-space: nowrap;
    padding-right: 18px;
    opacity: 0;
    transition: opacity .3s ease;
    transition-delay: .2s
}

.btn-expand:hover .text {
    opacity: 1
}

.zoom-on-hover {
    transition: transform .3s ease
}

.zoom-on-hover:hover {
    transform: scaleY(1.1)
}

.custom-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.custom-stat-card {
    border-radius: 12px;
    background: #ffffff;
    padding-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.cards {
    display: flex;
    flex-direction: column
}

.service-description {
    color: #525252;
    line-height: 1.5
}

.form-control {
    color: #525252 !important
}

footer a.text-dark:hover,
#contact a.text-dark:hover {
    color: #FF3232 !important
}

.about {
   background: #ffca02;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.about h2 {
    color: #111111;
    margin-bottom: 30px
}

.about-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #111111;
    margin-top: 1rem
}

.why-section {
    background: #707070;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.why-section h2 {
    color: #707070;
    margin-bottom: 30px
}

.why-verifai-section {
    background-color: #707070;
    color: #707070;
    padding: 80px 20px;
    min-height: auto;
}

.question-mark {
    font-size: 150px;
    color: #f4c000;
    font-weight: bold;
    line-height: 1
}

.verifai-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px
}

.verifai-box {
    border: 1px solid #f4c000;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #707070;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 80px
}

.verifai-box i {
    color: #f4c000;
    font-size: 20px
}

.verifai-quote {
    font-style: italic;
    color: #ccc;
    margin-top: 30px
}

.feature-box {
    transition: transform .3s ease, box-shadow .3s ease;
    border-radius: 12px;
    overflow: hidden
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2)
}

.feature-box img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.feature-caption {
    font-size: 1.1rem;
    padding: 12px;
    text-align: center;
    color: #000000
}


.industry-item {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 5px solid #111111;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
    transition: transform .3s, background-color .3s
}

.industry-item i {
    font-size: 22px;
    color: #111111
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .875rem
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .75rem
}

h4 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: .625rem
}

h5 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: .5rem
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: .5rem
}

p {
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

.bg-brand {
    background-color: #ffca02
}

.h-first-section {
    align-items: center;
    display: flex;
    background-image: url("../img/hero.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    max-height: 1000px;
    width: 100%;
    padding: 100px 20px 60px;
}

.h-first-section .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.h-first-section .row {
    width: 100%;
    display: flex;
    align-items: center;
}

.h-first-section .bg-brand {
    left: 0;
    top: 20px;
    z-index: 0;
    width: 75%;
    bottom: 0;
}

.h-first-section .bg-white {
    left: 22px;
    top: -12px;
    z-index: 1;
    width: 75%;
}


.custom-button {
    padding: 15px;
    min-width: 180px;
    line-height: 1.2;
}

.custom-button-white {
    border-radius: 30px;
    background-color: #ffffff;
    border: #000000 solid 2px;
}

.custom-button-black {
    border: #000000 solid 2px;
    color: #ffffff;
    background-color: #000000
}

.custom-button-white:hover {
    color: #ffffff;
    background-color: #000000;
    border: #000000 solid 2px;
}

.custom-button-black:hover {
    color: #000000;
    background-color: #ffffff
}

.about {
    background: #ffca02;
    max-height: 1000px;
    display: flex;
    align-items: center;
    padding: 40px 20px
}

.about h2 {
    color: #111111;
    margin-bottom: 30px
}

.about-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #111111;
    margin-top: 1rem
}

.how-it-works {
    min-height: auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}




@keyframes rotateIn {
    from {
        transform: rotate(0deg);
        opacity: 0
    }

    to {
        transform: rotate(360deg);
        opacity: 1
    }
}

[data-aos="rotate-in"] {
    opacity: 0;
    transform: rotate(0deg);
    transition-property: transform, opacity
}

[data-aos="rotate-in"].aos-animate {
    animation: rotateIn 1.5s ease-out forwards
}

.industries-section {
    background-color: #ffca02;
    min-height: auto;
    padding: 80px 20px;
}

.industry-item {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 5px solid #111111;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
    transition: transform .3s, background-color .3s
}

.industry-item i {
    font-size: 22px;
    color: #111111
}


.ai-stats {
    background-color: #facc45;
    max-height: 1000px;
    padding: 80px 20px;
    position: relative;
    color: #000000;
    display: flex;
    align-items: center;
}

.stat-box {
    border-radius: 6px;
}

.ai-stats h3 {
    font-size: 1.8rem;
    line-height: 1.5;
}

.intro-section {
    position: relative;
    max-height: 1000px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    overflow: hidden;
}
.ai-algorithm {

    max-height: 1000px;
    padding: 80px 20px;
    background-color: #f5f5f5 !important;
    display: flex;
    align-items: center;
}

.intro-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 600px;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hybrid-section,
.industries {
    padding: 60px 20px;
}

.advantage-card {
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advantage-card img, .advantage-card video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.advantage-card h5 {
    margin-bottom: 15px;
}

.hybrid-section .card-body,
.industries .card-body, #intruders .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.hybrid-section .card-text,
.industries.card-text {
    flex-grow: 1;
}

.underline {
    height: 4px;
    background-color: #ffca02;
    width: 100%;
    border-radius: 2px;
    margin: 20px auto 0;
}

#contact {
    padding: 60px 0;
}

#contact .contact-info-section {
    padding: 30px;
    border-radius: 20px;
    background: var(--surface-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

#contact .contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

#contact .info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all .3s ease;
}

#contact .info-item:hover {
    transform: translateX(10px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%)
}

#contact .info-icon, .info-icon {
    width: 50px;
    height: 50px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

#contact .info-item:hover .info-icon {
    background-color: var(--accent-color);
}

#contact .info-icon i, .info-icon i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all .3s ease;
}

#contact .info-item:hover .info-icon i {
    color: var(--contrast-color);
}

#contact .info-content h5 {
    margin-bottom: 8px;
    font-size: 20px;
    color: var(--heading-color);
}

#contact .info-content p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--default-color);
}

#contact .contact-form-wrapper {
    padding: 30px;
    border-radius: 20px;
    background: var(--surface-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

#contact .submit-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: all .3s ease;
}

#contact .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 50, 50, .4);
}


textarea#contactMessage {
    height: 115px !important;
}

#contact label {
    color: rgba(var(--bs-body-color-rgb), .65);
}

#contact .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#contact .col-lg-6 {
    display: flex;
    flex-direction: column;
}

#contact .contact-info-section,
#contact .contact-form-wrapper {
    flex: 1;
    height: 100%
}

#contact .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industries {
    padding: 60px 20px;
}

.industries .advantage-card {
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industries .advantage-card img,  .advantage-card video, #insight .advantage-card img{
    width: 100% !important;
    height: 250px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

.industries .advantage-card h5 {
    margin-bottom: 15px;
}

.industries .card-body,
.industries .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.industries .card-text {
    flex-grow: 1;
}

.intro-section i {
    color: #ffca02;
}

.clients .swiper-slide img {
    transition: .3s;
}

.clients .swiper-slide img:hover {
    filter: grayscale(100);
    opacity: 1;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

#clients {
    background-color: #f5f5f5;
}

/* .main-text b {
    display: inline-block;
    width: 65%;
} */

.main-text {
    background-color: #7d7d7d;
    opacity: .6;
    padding: 25px;
    text-transform: uppercase;
    width: 102%;
}



.client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-text-area {
    flex: 1;
    color: white;
    position: relative;
    padding-left: 0;
}

.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url('../img/testimonial-image.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    max-height: 1000px;
    padding: 80px 20px;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content {
    gap: 20px;
}

.testimonial-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
}

.text-warning {
    color: #ffca02 !important;
}

.client-name {
    color: #ffca02;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navigation-arrows {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 15px
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 2px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    transition: all .3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, .1);
    color: white;
    border-color: rgba(255, 255, 255, .8);
}



.floating-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 1000;
}

.floating-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    /* cursor: pointer; */
    padding: 10px 18px;
    border-radius: 50px 0 0 50px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

/* .floating-logo:hover {
    transform: scale(1.05);
} */

.floating-logo img {
    height: 30px;
}

/* Social Extra Buttons */
.extra-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.extra-button {
    background-color: #fff;
    padding: 10px 14px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.extra-button img {
    width: 24px;
    height: 24px;
}

.extra-button:hover {
    background-color: #eee;
    transform: translateX(-5px);
}



b {
    font-weight: bold;
}

/* 🌐 Floating Call Widget Container */
.call-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ☎️ Call Button */
.call-button {
  background-color: rgb(255,50,50);
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: pulseBounce 2s infinite;
}

.call-button:hover {
  background-color: rgb(255,50,50);
  transform: scale(1.15) rotate(10deg);
}

/* ✨ Pulse + Bounce Keyframe Animation */
@keyframes pulseBounce {
  0% {
    /* transform: scale(1); */
    box-shadow: 0 0 0 0 rgba(255,50,50, 0.5);
  }
  50% {
    /* transform: scale(1.1) translateY(-5px); */
    box-shadow: 0 0 0 10px rgba(255,50,50, 0);
  }
  100% {
    /* transform: scale(1); */
    box-shadow: 0 0 0 0 rgba(255,50,50, 0);
  }
}

/* 📞 Call Options Dropdown */
.call-options {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;  /* ✅ this removes the gap flicker */
  
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

/* 👆 Show Options on Hover - works smoothly now */
.call-widget:hover .call-options {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 📝 Each Call Option */
.call-option {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 8px;
  text-decoration: none;
  color: #5b5b5b;
  background: white;
  transition: background 0.2s, transform 0.2s;
}

.call-option:hover {
  background: #f0f0f0;
  transform: scale(1.2);
  color: black;
}

/* 🇺🇸 Flag Icons */
.flag-icon {
  width: 22px;
  height: auto;
  border-radius: 3px;
  flex-shrink: 0;
}

.icon-box i {
  color: #525252;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 10px;
  border-color: #525252;
  border-style: solid;
}

.btn-red {
    background: #ff3232;
    color: #ffffff;
    border: none;
}

.btn-dark {
    background: #000000;
    color: #ffffff;
    border: none;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}


.icon-badge {
  flex-shrink: 0; /* Fix: icon will never shrink */
}

.icon-badge {
  min-width: 55px;
  min-height: 55px;
  background: #ff3232;
  border: 2px solid #ffffff;
  border-radius: 14px; /* more modern square-rounded */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.icon-badge i {
  font-size: 1.6rem;
  color: #fff;
}

/* .icon-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 50, 50, 0.55);
} */


.feature-text span {
  font-weight: 600;
  color: #000;
}

.feature-text p {
  margin: 4px 0 0;
}

.btn-brand {
  background: #ff3232;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  border: 2px solid #ff3232;
  transition: .3s ease;
}

.btn-brand:hover {
  background: #fff;
  color: #000;
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.ai-image {
  transition: transform .5s ease;
}
.ai-image:hover {
  transform: scale(1.05);
}

.custom-icon1{
    font-size: 2.5rem; 
    color: #ff3232;
}

.custom-card1{
    border-radius: 15px; 
    background: white; 
    border-left: 4px solid #ff3232;
}

.custom-hero1{
    background-size: cover;
    position: relative;
    padding: 150px 50px 50px;
    background-color: rgb(245, 245, 245);
}

.custom-hero1 h1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.custom-hero1 h1,
.custom-hero1 p {
    position: relative;
    z-index: 2
}

.custom-video1{
    border-radius: 20px; 
    /* box-shadow: 0 10px 40px rgba(255, 50, 50, 0.3);  */
    max-height: 700px; 
    object-fit: cover;
}

.custom-image1{
    height: 250px; 
    object-fit: cover; 
    border-radius: 10px;
}

.image-container{
    width: 60px; 
    height: 60px;
}

.step-number{
    width: 80px; 
    height: 80px; 
    background-color: #000000; 
    color: white; 
    font-size: 2rem; 
    font-weight: bold; 
    flex-shrink: 0;
}
/* 📱 Mobile Adjustments */
@media (max-width: 576px) {
  .call-button {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .call-options {
    min-width: 120px;
  }

  .call-option {
    padding: 8px 10px;
  }
}

@media (min-width:768px) {
    .full-height-image {
        height: 450px;
    }
    
    #contact .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .h-first-section {
        height: 100vh;
        padding: 120px 20px 80px;
    }
    
    .ai-stats,
    .ai-algorithm,
    .intro-section,
    .testimonials-section {
        height: 100vh;
        padding: 100px 20px;
    }
}

@media (max-width:767px) {
     .full-height-image {
        height: 280px;
    }

    .about-us {
        padding: 100px 10px 30px;
    }
    
    .h-first-section {
        min-height: 90vh;
    }
}

@media screen and (min-width:1200px) {
    .section {
        padding: 80px 20px;
    }

    .expertise-card {
        transition: transform .2s ease-in-out;
    }

    .expertise-card:hover {
        transform: translateY(-10px);
        transition-delay: .1s;
    }
}

@media (min-width:1024px) {

    .hero h2,
    .hero p {
        max-width: 60%;
    }
}

@media (max-width:1200px) {
     #hero-section .hero-title {
        font-size: 1.5rem !important;
    }

    #hero-section .sub-title {
        font-size: 1.3rem !important;
    }

    .sub-side {
        font-size: 1rem !important;
        font-weight: 500;
    }
}

@media (min-width:1200px) {
    .custom-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .custom-stat-card {
        padding-top: 50px;
    }
}

@media (max-width:600px) {
    .dropdown-item {
        padding: .75rem 0 .75rem 1rem;
    }
}

@media (max-width:1199.98px) {
    .navbar-collapse {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
        margin-top: 1rem;
    }

    .dropdown-menu {
        display: none;
        position: static;
        float: none;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        margin: 0;
    }

    .dropdown.show>.dropdown-toggle .nav-chevron {
        transform: rotate(180deg);
    }

    .dropdown-menu-lg {
        min-width: 100%;
        max-height: none;
        overflow: visible;
        position: static;
        box-shadow: none;
        padding: .5rem;
    }

    .show>.dropdown-menu {
        display: block !important;
        animation: fadeIn .2s ease-in-out;
    }

    body.dropdown-open {
        overflow: hidden;
    }

    .navbar-nav {
        padding-bottom: 1rem;
    }

    .dropdown-item {
        white-space: normal;
    }

    .show>.dropdown-menu .row {
        margin: 0;
        padding: 0;
    }
}

@media (min-width:1200px) {
    .has-hover:hover .dropdown-menu {
        display: block;
        animation: fadeIn .2s ease-in-out;
    }
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}

@media (max-width:1199px) {
     section,
    .section {
        scroll-margin-top: 100px;
    }
}

@media (max-width:768px) {
    .hero h2 {
        font-size: 30px;
    }
}

@media (max-width:300px) {
    .h-first-section {
        min-height: 90vh;
        width: 100%;
        background-position: center;
    }

    .h-first-section .bg-white {
        width: 100%;
        left: 20px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 90%;
        top: 47px;
    }

    .intro-image {
        position: static;
        transform: none;
        margin: 1rem auto 0;
        text-align: center;
    }

    .main-text {
        padding: 10px;
        width: 100%;
    }
    
    .ai-stats,
    .ai-algorithm,
    .intro-section,
    .testimonials-section {
        min-height: auto;
        padding: 60px 20px;
    }
}

@media (max-width:300px) and (orientation:landscape) {
    .h-first-section {
        min-height: 100vh;
        width: 100%;
        background-position: center;
    }

    .h-first-section .bg-white {
        width: 100%;
        left: 20px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 90%;
        top: 47px;
    }

    .intro-image {
        position: static;
        transform: none;
        margin: 1rem auto 0;
        text-align: center;
    }
}

@media (min-width:301px) and (max-width:400px) and (orientation:landscape) {
    .h-first-section {
        min-height: 90vh;
        width: 100%;
        background-position: center;
    }

    .h-first-section .bg-white {
        width: 100%;
        left: 20px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 80%;
        top: 47px;
    }

    .intro-image {
        position: static;
        transform: none;
        margin: 1rem auto 0;
        text-align: center;
    }
}

@media (min-width:301px) and (max-width:400px) and (orientation:portrait) {
    .h-first-section {
        min-height: 90vh;
        width: 100%;
        background-position: center;
    }

    .h-first-section .bg-white {
        width: 100%;
        left: 20px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 80%;
        top: 47px;
    }

    .intro-image {
        position: static;
        transform: none;
        margin: 1rem auto 0;
        text-align: center;
    }

    .main-text {
        padding: 10px;
        width: 100%;
        font-size: 16px !important;
    }
    
    .ai-stats,
    .ai-algorithm,
    .intro-section,
    .testimonials-section {
        min-height: auto;
        padding: 60px 20px;
    }
}

@media (min-width:401px) and (max-width:575.98px) {
    .h-first-section {
        min-height: 85vh;
        width: 100%;
        background-position: center;
    }

    .intro-image {
        position: static;
        transform: none;
        margin: 1rem auto 0;
        text-align: center;
    }

    .intro-image img {
        max-width: 90%;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 0.8rem;
    }

    h5 {
        font-size: 0.7rem;
    }

    h6 {
        font-size: .65rem;
    }

    p {
        font-size: .8rem;
    }

    .main-text {
        padding: 10px;
        width: 100%;
        font-size: 16px !important;
    }
    
    .ai-stats,
    .ai-algorithm,
    .intro-section,
    .testimonials-section {
        min-height: auto;
        padding: 60px 20px;
    }

    @media (orientation:landscape) {
        .h-first-section {
            min-height: 100vh;
        }
    }
}

@media (min-width:576px) and (max-width:767.98px) {
    .h-first-section {
        min-height: 90vh;
    }

    .h-first-section .bg-white {
        width: 80%;
        left: 20px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        top: 47px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.15rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: .9rem;
    }

    p {
        font-size: .95rem;
    }

    .intro-image {
        max-width: 354px;
        transform: translateY(-64%);
    }
    
    .ai-stats,
    .ai-algorithm,
    .intro-section,
    .testimonials-section {
        height: 80vh;
        padding: 60px 20px;
    }

    @media (orientation:portrait) {
        .h-first-section {
            height: 85vh !important;
        }

        .ai-stats,
        .intro-section, 
        .ai-algorithm,
        .testimonials-section {
            height: 70vh;
            padding: 60px 20px;
        }
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .h-first-section {
        height: 100vh;
        padding: 50px 0;
    }

    .intro-section, .ai-algorithm {
        height: 100vh;
        padding: 80px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.15rem;
    }

    h5 {
        font-size: 0.95rem;
    }

    h6 {
        font-size: 0.85rem;
    }

    p {
        font-size: 1rem;
    }

    @media (orientation:portrait) {
        .h-first-section {
            height: 80vh !important;
        }

        .ai-stats,
        .intro-section, 
        .ai-algorithm {
            height: 70vh;
            padding: 60px 20px;
        }
    }

    .h-first-section .bg-white {
        width: 68%;
        left: 20px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 60%;
        top: 47px;
    }

    .testimonial-content {
        padding: 40px;
    }

    .testimonial-logo {
        width: 130px;
        height: 130px;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .client-name {
        font-size: 13px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 13px;
    }
}

@media (min-width:768px) and (max-width:850px) {
    .main-text {
        width: 100%;
    }
    
     .intro-image {
        transform: translateY(-60%) !important;
        max-width: 420px !important;
    }
}

@media (min-width:851px) and (max-width:991px) {
    .main-text {
        width: 100%;
    }
    
     .intro-image {
        transform: translateY(-60%) !important;
        max-width: 420px !important;
    }
}

@media (min-width:992px) and (max-width:1199.98px) {
    .h-first-section {
        height: 100vh;
    }

    .h-first-section .bg-white {
        width: 85%;
        left: 20px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 75%;
        top: 47px;
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.45rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.9rem;
    }

    p {
        font-size: 1.05rem;
    }
    
    .ai-stats,
    .ai-algorithm,
    .intro-section,
    .testimonials-section {
        height: 100vh;
    }

    @media (orientation:portrait) {
        .h-first-section {
            height: 80vh !important;
        }

        .ai-stats,
        .intro-section, 
        .ai-algorithm,
        .testimonials-section {
            height: 70vh;
            padding: 60px 20px;
        }
    }
}

@media (min-width:992px) and (max-width:1050px) {
    .main-text {
        width: 100%;
    }
    .intro-image {
        transform: translateY(-50%);
        max-width: 460px;
    }
}

@media (min-width:1051px) and (max-width:1100px) {
    .main-text {
        width: 103%;
    }
    .intro-image {
        transform: translateY(-50%);
        max-width: 480px;
    }
}

@media (min-width:1101px) and (max-width:1150px) {
    .main-text {
        width: 105%;
    }
    .intro-image {
        transform: translateY(-50%);
        max-width: 520px;
    }
}

@media (min-width:1151px) and (max-width:1199px) {
    .main-text {
        width: 107%
    }
    .intro-image {
        transform: translateY(-52%);
        max-width: 520px;
    }
}

@media (min-width:1200px) and (max-width:1399.98px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.35rem;
    }

    h5 {
        font-size: 1.05rem;
    }

    h6 {
        font-size: 0.9rem;
    }

    p {
        font-size: 1.1rem;
    }

    .h-first-section {
        min-height: 100vh !important;
        padding: 80px 0;
        background-position: left;
    }

    .h-first-section .bg-white {
        width: 74%;
        left: 30px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 70%;
        top: 64px;
    }

    .ai-stats,
    .intro-section, 
    .ai-algorithm,
    .testimonials-section {
        height: 100vh;
        padding: 100px 20px;
    }

    @media (orientation:portrait) {
        .h-first-section {
            height: 80vh !important;
        }

        .ai-stats,
        .intro-section, 
        .ai-algorithm,
        .testimonials-section {
            height: 70vh;
            padding: 60px 20px;
        }
    }
}

@media (min-width:1200px) and (max-width:1250px) {
    .main-text {
        width: 99%;
    }
    .intro-image {
        max-width: 620px;
        transform: translateY(-53%);
    }
}

@media (min-width:1251px) and (max-width:1299.98px) {
    .intro-image {
        max-width: 620px;
        transform: translateY(-52%);
    }
    .main-text {
        width: 102%;
    }
}

@media (min-width:1300px) and (max-width:1350px) {
    .main-text {
        width: 103.3%;
    }
    .intro-image {
        max-width: 637px;
        transform: translateY(-52%);
    }
}

@media (min-width:1351px) and (max-width:1399.98px) {
    .main-text {
        width: 106%;
    }
    .intro-image {
        max-width: 637px;
        transform: translateY(-52%);
    }
}

@media (min-width:1400px) {
    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.7rem;
    }

    h4 {
        font-size: 1.4rem;
    }

    h5 {
        font-size: 1.15rem;
    }

    h6 {
        font-size: 1rem;
    }

    p {
        font-size: 1.15rem;
    }

    .h-first-section {
        height: 100vh !important;
        padding: 80px 0;
        background-position: left;
    }

    .ai-stats,
    .intro-section, 
    .ai-algorithm,
    .testimonials-section {
        height: 100vh;
        padding: 100px 20px;
    }

    .h-first-section .container {
        height: 80%;
    }

    .h-first-section .bg-white {
        width: 70%;
        left: 40px;
        top: 10px
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 65%;
        top: 64px
    }

    @media (orientation:portrait) {
        .h-first-section {
            height: 80vh !important;
        }

        .ai-stats,
        .intro-section, 
        .ai-algorithm,
        .testimonials-section {
            height: 70vh;
            padding: 60px 20px;
        }
    }
}

@media (min-width:1600px) and (max-width:1750px) {
    .h-first-section .bg-white {
        width: 65%;
        left: 40px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 62%;
        top: 64px;
    }
}

@media (min-width:1751px) and (max-width:1900px) {
    .h-first-section .bg-white {
        width: 66%;
        left: 40px;
        top: 10px;
    }

    .h-first-section .bg-brand {
        left: -4px;
        width: 63%;
        top: 64px;
    }
}

@media (min-width:1400px) and (max-width:1450px) {
    .main-text {
        width: 100%
    }
    .intro-image {
        transform: translateY(-53%);
        max-width: 689px;
    }
}

@media (min-width:1451px) and (max-width:1499.98px) {
    .main-text {
        width: 102%;
    }
    .intro-image {
        transform: translateY(-53%);
        max-width: 689px;
    }
}

@media (min-width:1500px) and (max-width:1550px) {
    .main-text {
        width: 103%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1551px) and (max-width:1599.98px) {
    .main-text {
        width: 105%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1600px) and (max-width:1650px) {
    .main-text {
        width: 106%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1651px) and (max-width:1699.98px) {
    .main-text {
        width: 109%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1700px) and (max-width:1750px) {
    .main-text {
        width: 111%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1751px) and (max-width:1799.98px) {
    .main-text {
        width: 113%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1800px) and (max-width:1850px) {
    .main-text {
        width: 116%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1851px) and (max-width:1899.98px) {
    .main-text {
        width: 118%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1900px) and (max-width:1950px) {
    .main-text {
        width: 119%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:1951px) and (max-width:1999.98px) {
    .main-text {
        width: 121%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:2000px) {
    .main-text {
        width: 122%;
    }
    .intro-image {
        transform: translateY(-54%);
        max-width: 689px;
    }
}

@media (min-width:992px) {
    .ai-stats h3 {
        font-size: 2rem;
    }
}

@media (max-width:767.98px) {
    .testimonial-content {
        padding: 20px;
        flex-direction: column;
    }

    .testimonial-logo {
        width: 120px;
        height: 120px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .client-name {
        font-size: 12px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

@media (min-width:992px) {
    .testimonial-content {
        padding: 0 80px;
    }

    .testimonial-logo {
        width: 150px;
        height: 150px;
    }

    .testimonial-text {
        font-size: 22px;
    }

    .client-name {
        font-size: 14px;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .floating-container {
        display: none;
    }
}