@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
/* @font-face {
    font-family: "Sackers Gothic Std";
    src: url("../../fonts/SackersGothicStd-Medium.woff2") format("woff2"), url("../../fonts/SackersGothicStd-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sackers Gothic Std";
    src: url("../../fonts/SackersGothicStd-Heavy.woff2") format("woff2"), url("../../fonts/SackersGothicStd-Heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sackers Gothic Std";
    src: url("../../fonts/SackersGothicStd-Light.woff2") format("woff2"), url("../../fonts/SackersGothicStd-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
} */

:root {
    --background-color: #ffffff;
    --default-color: #525252;
    --heading-color: #525252;
    --accent-color: #104b86;
    --surface-color: #ffffff;
    --contrast-color: #525252;
}

:root {
    --nav-color: #525252;
    --nav-hover-color: #104b86;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #525252;
    --nav-dropdown-hover-color: #104b86;
}

.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: #104b86;
    --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 2", sans-serif;
    font-weight: 400;
}

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;
}

.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(.55, .055, .675, .19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(.6, .6);
        opacity: 1
    }

    100% {
        transform: scale(1, 1);
        opacity: 0
    }
}

.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, .9) !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 2", sans-serif;
    font-size: 14px;
}

nav a {
    font-family: "Exo 2", 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)
    }
}

@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
    }
}

.footer {
    color: var(--default-color);
    padding-top: 50px;
    background: #FFCA02;
    font-size: 14px;
    padding-bottom: 0px;
    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: #104b86;
    border-color: #104b86;
}

.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;   /* solid black background */
  color: #fff;              /* white text */
  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-color: #d44124 transparent #104b86 transparent; */
    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;
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0s !important
    }
}

.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: 60px 20px;
    scroll-margin-top: 120px;
    overflow: clip;
}

@media (max-width:1199px) {

    section,
    .section {
        scroll-margin-top: 100px
    }
}

.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 h2:before,
.section-title h1:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after,
.section-title h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d44124 0%, #104b86 100%);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
} */

.section-title p {
    margin-bottom: 0;
}

.hero {
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 70vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.hero h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    animation: fadeInDown 1s both;
}

@media (max-width:768px) {
    .hero h2 {
        font-size: 30px
    }
}

.hero p {
    animation: fadeInDown 1s both .2s;
}

@media (min-width:1024px) {

    .hero h2,
    .hero p {
        max-width: 60%
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    animation: fadeInUp 1s both .4s;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: .3s;
    opacity: .5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: .5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: .9;
}

@media (min-width:1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.featured-services {
    padding: 30px 0;
}

.text-blue {
    color: #104b86;
}

.text-red {
    color: #000000;
}

.featured-services .service-item {
    padding: 50px 30px;
    transition: all ease-in-out .4s;
    height: 100%;
}

.featured-services .service-item .icon {
    margin-bottom: 10px;
}

.featured-services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: .3s;
}

.featured-services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.featured-services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out .3s;
}

.featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.featured-services .service-item:hover {
    transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
    color: var(--accent-color);
}

#featured-services span {
    font-weight: 500;
}

.about .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

.about .content ul i {
    color: var(--accent-color);
    margin-right: .5rem;
    line-height: 1.2;
    font-size: 1.25rem;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.call-to-action {
    position: relative;
    clip-path: inset(0);
    background-image: url(../img/call-to-action.avif);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.call-to-action a {
    font-family: "Exo 2", sans-serif;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .6s ease forwards;
}

.call-to-action p {
    color: var(--default-color);
    font-size: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .6s ease .2s forwards;
}

.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 #104b86;
    color: #ffffff;
    background: #104b86;
    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);
}

.button .arrow {
    margin-left: 8px;
    display: inline-block;
    transition: .3s;
}

.button:hover .arrow {
    animation: bounceRight 1s infinite;
    color: #ffffff;
}

.animate-zoom {
    animation: zoomIn .6s ease-out;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(10px)
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.button-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}



.stripe {
    position: relative;
    overflow: hidden;
}


.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
}

.service-details .service-box+.service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list {
    background-color: var(--surface-color);
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: .3s;
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.service-details .services-list a.active i {
    color: var(--contrast-color);
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: .3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .download-catalog a:hover {
    color: var(--accent-color);
}

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

.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 {
    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;
}

.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;
    padding: 8px 20px;
    text-align: center;
    font-size: 16px;
    border-radius: 40px;
    z-index: 1;
}



.btn-custom:hover {
    color: #fff;
    background-color: #104b86;
}
.btn-custom1 {
    background-color: #ffca02;
    /* background-color: #104b86; */
    color: #ffffff;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 20px;
    margin: 2px;
}

.btn-custom1:hover {
    background-color: #ffffff;
    color: #ffca02;
    opacity: 0.9;
    border: 1px solid #ffca02;
    

}

footer .btn-custom1{
    background-color: red;
}

.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:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.about-us h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d44124 0%, #104b86 100%);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
} */

.about-us h1,
.about-us p {
    position: relative;
    z-index: 2;
}

.fs-4,
.fs-1 {
    color: #000000;
}

.full-height-image {
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

@media (min-width:768px) {
    .full-height-image {
        height: 450px
    }
}

@media (max-width:768px) {
    .full-height-image {
        height: 280px
    }

    .about-us {
        padding: 100px 10px 30px
    }
}

.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.0;
}

h2,
h3,
h4,
h5 {
    color: #000000;
}

@keyframes pulse1 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(232, 66, 59, .7)
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px 5px rgba(232, 66, 59, .4)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(232, 66, 59, 0)
    }
}


.stat-card {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #104b86;
    margin-bottom: .5rem;
    transition: all .3s ease;
}

.stat-label {
    color: #525252;
    font-size: 1.1rem;
}

.card-body {
    padding: 1.5rem 1.5rem;
}

.col-lg-5>img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
    border-radius: 20px;
}

@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
    }
}

.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;
}000000000000

.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.265rem + 1.5vw) !important;
    font-family: "Exo 2", sans-serif;
}

h2,
#hero-section .hero-title {
    font-size: calc(1.215rem + .9vw) !important;
    font-family: "Exo 2", sans-serif;
}

h3,
#hero-section .sub-title {
    font-size: calc(1.1rem + .6vw) !important;
    font-family: "Exo 2", sans-serif;
}

h4 {
    font-size: calc(1.1rem + .3vw) !important;
    font-family: "Exo 2", sans-serif;
}

.sub-side {
    font-size: calc(1.155rem + .3vw) !important;
    font-family: "Exo 2", sans-serif;
    font-weight: 500;
}

h5 {
    font-size: 1rem !important;
    font-family: "Exo 2", sans-serif;
}

h6 {
    font-size: .8rem !important;
    font-family: "Exo 2", sans-serif;
}

@media (max-width:1200px) {
    h1 {
        font-size: 2rem !important
    }

    h2,
    #hero-section .hero-title {
        font-size: 1.5rem !important
    }

    h3,
    #hero-section .sub-title {
        font-size: 1.3rem !important
    }

    h4,
    .sub-side {
        font-size: 1rem !important;
        font-weight: 500
    }
}

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 2", 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 {
    /* background-color: #104b86;
    color: #ffffff; */
    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;
    /* border-radius: 6px; */
    /* animation: pulse-expand 2s infinite; */
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-family: "Exo 2", sans-serif;
}

.btn-expand:hover {
    max-width: 200px;
    /* color: #ffffff;
    background-color: #104b86; */
    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;
}

@media (min-width:1200px) {
    .custom-icon-wrapper {
        width: 100px;
        height: 100px
    }

    .custom-stat-card {
        padding-top: 50px
    }
}

.form-control {
    color: #525252 !important;
}

footer a.text-dark:hover,
#contact a.text-dark:hover {
    color: #104b86 !important;
}

.about {
    background: #ffca02;
    min-height: 100vh;
    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;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    display: block;
}

.stat-label {
    color: #111111;
    margin-top: 0.5rem;
}

/* How It Works */
.how-it-works {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #ffca02;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0rem;
    font-size: 2rem;
    color: white;
}

.step h3 {
    margin-bottom: 1rem;
    color: #111111;
}

.step p {
    color: #111111;
    line-height: 1.6;
}

@keyframes rotateIn {
    from {
        transform: rotate(0deg);
        /* Start from 0° */
        opacity: 0;
    }

    to {
        transform: rotate(360deg);
        /* Rotate clockwise to 360° */
        opacity: 1;
    }
}

[data-aos="rotate-in"] {
    opacity: 0;
    transform: rotate(0deg);
    /* Initial state */
    transition-property: transform, opacity;
}

[data-aos="rotate-in"].aos-animate {
    animation: rotateIn 1.5s ease-out forwards;
}


/* Why Verifai live section */
/* Why Verifai live section */
.why-section {
    background: #707070;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.why-section h2 {
    color: #707070;
    margin-bottom: 30px;
}

.reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reason {
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 45%;
    max-width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, background-color 0.3s;
    /* cursor: pointer; */
    color: #707070;
    /* background-color: #;
  text-align: left; */
}


.why-verifai-section {
    background-color: #707070;
    /* dark grey */
    color: #707070;
    padding: 60px 20px;
}

.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 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-caption {
    /* font-weight: 600; */
    font-size: 1.1rem;
    padding: 12px;
    text-align: center;
    color: #000000;
}

/* industries Section */
.industries-section {
    background-color: #ffca02;
    min-height: 100vh;
    padding: 60px 0;
}

.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, 0.05);
    transition: transform 0.3s, background-color 0.3s;
}

.industry-item i {
    font-size: 22px;
    color: #111111;
}

/* .industry-item:hover {
  background-color: #e3f2fd;
  transform: translateY(-3px);
} */

/*--------------------------------------------------------------
# Custom Css
--------------------------------------------------------------*/
/* Default sizes for mobile-first approach */
h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.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;
    min-height: 100vh;
    width: 100%;
}


.h-first-section .bg-brand {
    left: 0px;
    top: 20px;
    z-index: 0;
}

.h-first-section .bg-white {
    left: 40px;
    top: -30px;
    z-index: 1;
}

@media (min-width: 249px) and (max-width: 299px) {
    .h-first-section .bg-white {
        min-width: 220px;
        left: -5px;
        top: -50px;
        z-index: 1;
    }

    .h-first-section .bg-brand {
        left: 0px;
        top: -43px;
    }

    .custom-button {
        padding: 15px !important;
        min-width: 168px !important;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.85rem;
    }

    p {
        font-size: 0.8rem;
    }
}

@media (min-width: 300px) and (max-width: 374px) {
    .h-first-section .bg-white {
        min-width: 240px;
        left: 20px;
        top: -50px;
        z-index: 1;
    }

    .h-first-section .bg-brand {
        left: 0px;
        top: -13px;
    }

    .custom-button {
        padding: 15px !important;
        min-width: 168px !important;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.85rem;
    }

    p {
        font-size: 0.8rem;
    }
}

@media (min-width: 375px) and (max-width: 576px) {
    .h-first-section .bg-white {
        min-width: 290px;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.85rem;
    }

    p {
        font-size: 0.8rem;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    h4 {
        font-size: 1.15rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.05rem;
    }

    h6 {
        font-size: 1.95rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.65rem;
    }

    h4 {
        font-size: 1.35rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    h6 {
        font-size: 1rem;
    }

    p {
        font-size: 1.05rem;
    }

    .h-first-section {
        /* align-items: flex-start; Avoid layout issues on small screens */
        background-size: cover;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .h-first-section .bg-warning {
        left: 20px;
        top: 0px;
        z-index: 0;
    }

    .h-first-section .bg-white {
        left: 45px;
        top: -50px;
        z-index: 1;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    h3 {
        font-size: 1.7rem;
    }

    h4 {
        font-size: 1.45rem;
    }

    h5 {
        font-size: 1.15rem;
    }

    h6 {
        font-size: 1.05rem;
    }

    p {
        font-size: 1.1rem;
    }

}

@media (min-width: 1401px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    h3 {
        font-size: 1.9rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1.1rem;
    }

    p {
        font-size: 1.15rem;
    }
}


.custom-button {
    padding: 15px;
    min-width: 200px;
}

.custom-button-white {
    border-radius: 30px;
    background-color: #ffffff;
}

.custom-button-black {
    border: #000 solid 2px;
    color: #ffffff;
    background-color: #000000;
}

.custom-button-white:hover {
    color: #ffffff;
    background-color: #000000;
}

.custom-button-black:hover {
    color: #000000;
    background-color: #ffffff;
}

.about {
    background: #ffca02;
    min-height: 100vh;
    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;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    display: block;
}

.stat-label {
    color: #111111;
    margin-top: 0.5rem;
}

/* How It Works */
.how-it-works {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #ffca02;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0rem;
    font-size: 2rem;
    color: white;
}

.step h3 {
    margin-bottom: 1rem;
    color: #111111;
}

.step p {
    color: #111111;
    line-height: 1.6;
}

@keyframes rotateIn {
    from {
        transform: rotate(0deg);
        /* Start from 0° */
        opacity: 0;
    }

    to {
        transform: rotate(360deg);
        /* Rotate clockwise to 360° */
        opacity: 1;
    }
}

[data-aos="rotate-in"] {
    opacity: 0;
    transform: rotate(0deg);
    /* Initial state */
    transition-property: transform, opacity;
}

[data-aos="rotate-in"].aos-animate {
    animation: rotateIn 1.5s ease-out forwards;
}





/* industries Section */
.industries-section {
    background-color: #ffca02;
    min-height: 100vh;
    padding: 60px 0;
}

.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, 0.05);
    transition: transform 0.3s, background-color 0.3s;
}

.industry-item i {
    font-size: 22px;
    color: #111111;
}

/* .industry-item:hover {
  background-color: #e3f2fd;
  transform: translateY(-3px);
} */

.ai-stats {
    /* background: url('../img/ai.png') no-repeat center center/cover; */
    background-color: #facc45;
    min-height: 100vh;
    position: relative;
    color: #000;
}

.stat-box {
    border-radius: 6px;
}

.ai-stats h3 {
    font-size: 1.8rem;
}

@media (min-width: 992px) {
    .ai-stats h3 {
        font-size: 2rem;
    }
}

.intro-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fbfbfb;
    overflow: hidden;
}

.intro-text h2 {
    font-weight: 00;
}

.intro-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 500px;
}




.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) and (max-width: 991px){
    .intro-image {
    transform: translateY(-59%) !important;
    max-width: 400px !important;
    }
}

@media (max-width: 767.98px) {
    .intro-image {
        position: static;
        /* normal flow on small screens */
        transform: none;
        margin: 1rem auto 0;
        text-align: center;
    }

    .intro-image img {
        max-width: 90%;
    }
}


.hybrid-section, .industries {
    /* background-color: #f4c000; */
    padding: 60px 20px;
}

.advantage-card {
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* text-align: center; */
}

.advantage-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.advantage-card h5 {
    /* font-weight: 600; */
    margin-bottom: 15px;
}

.hybrid-section .card-body, .industries .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.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 Section
--------------------------------------------------------------*/

#contact .info-card {
    background-color: var(--surface-color);
    padding: 20px;
    /* text-align: center; */
    height: 100%;
    border-radius: 10px;
    /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
    transition: all 0.3s ease-in-out;
}

/* #contact .info-card:hover {
    transform: translateY(-5px);
} */

#contact .info-card .icon-box {
    width: 56px;
    height: 56px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background-color: color-mix(in srgb, var(--accent-color), transparent 92%); */
    background-color: #ffca02;
}

#contact .info-card .icon-box i {
    font-size: 24px;
    /* color: var(--accent-color); */
    color: #292d33;
}

#contact .info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .info-card p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    line-height: 1.6;
}

#contact .form-wrapper .input-group .input-group-text {
    /* color: var(--accent-color); */
    color: #111111;
    /* background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    background-color: #ffffff;
    /* border-color: #292d33; */
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
}

#contact .form-wrapper .input-group .form-control {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 0 8px 8px 0;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 12px 15px;
}

#contact .form-wrapper .input-group .form-control:focus {
    border-color: var(--accent-color);
}

#contact .form-wrapper .input-group .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

#contact .form-wrapper select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 40px;
}

#contact .form-wrapper textarea.form-control {
    min-height: 160px;
}

#contact .form-wrapper button {
    /* background-color: var(--accent-color); */
    /* border: 0; */
    /* padding: 12px 40px; */
    /* color: var(--contrast-color); */
    /* border-radius: 8px; */
    transition: 0.3s;
    font-size: 16px;
    /* font-weight: 500; */
}

/* #contact .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
} */


.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../img/testimonial-image.png') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
}


.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 80px;
}

.testimonial-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-text-area {
    flex: 1;
    color: white;
    position: relative;
    padding-left: 20px;
}

.quote-mark {
    font-size: 120px;
    color: #ffca02;
    line-height: 0.6;
    margin-bottom: 10px;
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    left: -40px;
    font-weight: bold;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 30px;
    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: 20px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        gap: 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-logo {
        width: 120px;
        height: 120px;
    }
}


.industries {
    /* background-color: #f4c000; */
    padding: 60px 20px;
}

.industries .advantage-card {
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* text-align: center; */
}

.industries .advantage-card img {
    width: 100%;
    height: 250px; /* ✅ force equal height */
    border-radius: 10px;
    margin-bottom: 20px;
}


.industries .advantage-card h5 {
    /* font-weight: 600; */
    margin-bottom: 15px;
}

.industries .card-body, .industries .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.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: #fbfbfb;
}


