:root {
    --default-font: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Barlow", sans-serif;
    --nav-font: "Barlow", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #388da8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #313336; /* The default color of the main navmenu links */
    --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #77b6ca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f8fbfc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
  ------------------------------*/
.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);
    }
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 480px) {
    .header .logo img {
        max-height: 24px;
    }

    .header .logo h1 {
        font-size: 24px;
    }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: #c5874d;
    /* background: var(--accent-color); */
    font-size: 14px;
    border: 2px solid #c5874d;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

/* .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  } */

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  } */

/* Index Page Header
  ------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
  ------------------------------*/
/* .index-page.scrolled .header {
    --background-color: #ffffff;
  } */

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #c0804a;
    }

    .navmenu .dropdown ul {
        margin: 0;
        /* padding: 10px 0; */
        background: var(--nav-dropdown-background-color);
        display: block;
        /* position: absolute; */
        /* visibility: hidden; */
        /* left: 14px; */
        /* top: 130%; */
        /* opacity: 0; */
        transition: 0.3s;
        border-radius: 4px;
        /* z-index: 99; */
        /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); */
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a {
        font-size: 15px;
        color: #2f8299;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover > a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .megamenu:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: black;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        /* background-color: color-mix(in srgb, var(--accent-color), transparent 90%); */
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        z-index: 99;
        padding: 10px 0;
        margin: 0px;
        background-color: var(--nav-dropdown-background-color);
        border: 0px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.5s ease-in-out;
        box-shadow: none;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    @media (max-width: 1199px) {
        .mobile-nav-active .mobile-nav-toggle {
            color: #c17f42;
            position: absolute;
            font-size: 32px;
            top: 30px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 25px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.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, var(--default-color), transparent 50%);
    font-size: 16px;

    margin-right: 10px;
    transition: 0.3s;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #b1743c;
}

.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 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px 10px;
    width: 100%;
    background-color: var(--contrsast-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -9px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: -19px;
    font-size: 13px;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    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;
    bottom: 15px;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(
        in srgb,
        var(--default-color),
        transparent 96%
    );
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    /* background-color: var(--background-color); */
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    /* margin-bottom: 20px;
    padding-bottom: 20px; */
    position: relative;
}

/* .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  } */

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 180px 0 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .hero-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    z-index: 1;
}

.hero .hero-bg::before {
    content: "";
    /* background: color-mix(in srgb, var(--background-color), transparent 15%); */
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    margin: 0;
    font-size: 67px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -3.36px;
    color: #000c0d;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
    width: 579px;
}

.hero h3 {
    letter-spacing: -2.24px;
    color: #000c0d;
    font-size: 45px;
}

@media (max-width: 640px) {
    .hero h3 {
        font-size: 23px;
        line-height: 36px;
    }
}

.hero .call-center {
    color: #6f6f6f;
    margin: 5px 0 14px 0;
    font-size: 10px;
    font-weight: 400;
    background: #f8f1ea 0% 0% no-repeat padding-box;
    border: 1px solid #e6e6e6;
    border-radius: 32px;
    opacity: 1;
    width: auto;
    padding: 5px 10px;
}

@media (min-width: 768px) {
    .hero .hero-img {
        max-width: 600px;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 44px;
        line-height: 36px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
        width: auto;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/
.featured-services {
    padding: 40px 0;
}

.featured-services .service-item {
    position: relative;
    padding-top: 20px;
}

.featured-services .service-item .icon {
    background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    width: 72px;
    height: 72px;
    position: relative;
    margin-right: 15px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
    color: var(--accent-color);
    font-size: 32px;
    z-index: 2;
    position: relative;
}

.featured-services .service-item .title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.featured-services .service-item .title a {
    color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
    color: var(--accent-color);
}

.featured-services .service-item .description {
    font-size: 14px;
}

.featured-services .service-item:hover .icon {
    background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
.about {
    padding-bottom: 20px;
}

.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.about .content .read-more:hover i {
    margin-left: 10px;
}

.about .about-images img {
    border-radius: 10px;
}

/*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
.clients {
    padding: 20px 0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-item {
    width: 100%;
    margin-bottom: 15px;
}

.features .nav-item:last-child {
    margin-bottom: 0;
}

.features .nav-link {
    color: var(--heading-color);
    border: 0;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    cursor: pointer;
}

.features .nav-link i {
    background-color: var(--surface-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 48px;
    height: 48px;
    font-size: 22px;
    flex-shrink: 0;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    transition: 0.3s;
}

.features .nav-link p {
    font-size: 15px;
    margin: 0;
}

.features .nav-link:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    color: var(--default-color);
}

.features .tab-pane img {
    border-radius: 15px;
}

/*--------------------------------------------------------------
  # Features Details Section
  --------------------------------------------------------------*/
.features-details .features-item + .features-item {
    margin-top: 60px;
}

.features-details .features-item .content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 30px;
    border-radius: 10px;
}

.features-details .features-item h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}

.features-details .features-item .more-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 30px;
    border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
    list-style: none;
    padding: 0;
}

.features-details .features-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-details .features-item ul li:last-child {
    padding-bottom: 0;
}

.features-details .features-item ul i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--accent-color);
}

.features-details .features-item img {
    border-radius: 15px;
}

/*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    height: 100%;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
}

.services .service-item .icon {
    font-size: 32px;
    border-radius: 10px;
    position: relative;
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.services .service-item h3 {
    color: color-mix(in srgb, var(--heading-color), transparent 25%);
    font-weight: 700;
    font-size: 22px;
    transition: 0.3s;
}

.services .service-item p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.services .service-item .read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    transition: 0.3s;
    font-size: 14px;
}

.services .service-item .read-more i {
    margin-left: 10px;
}

.services .service-item.item-cyan .icon {
    color: #0dcaf0;
    border: 1px solid #0dcaf0;
    background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
    color: #fd7e14;
    border: 1px solid #fd7e14;
    background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
    color: #20c997;
    border: 1px solid #20c997;
    background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
    color: #df1529;
    border: 1px solid #df1529;
    background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
    color: #6610f2;
    border: 1px solid #6610f2;
    background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
    color: #f3268c;
    border: 1px solid #f3268c;
    background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
    color: var(--heading-color);
}

.services .service-item:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
  # More Features Section
  --------------------------------------------------------------*/
.more-features .features-image {
    position: relative;
    min-height: 400px;
}

.more-features .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.more-features h3 {
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 20px;
}

.more-features .icon-box {
    margin-top: 30px;
}

.more-features .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.more-features .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.more-features .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Pricing Section
  --------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    padding: 40px 40px;
    height: 100%;
    border-radius: 15px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
    font-weight: 500;
}

.pricing .description {
    font-size: 14px;
}

.pricing .cta-btn {
    border: 1px solid var(--default-color);
    color: var(--default-color);
    display: block;
    text-align: center;
    padding: 10px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 6px;
}

.pricing .cta-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul li:last-child {
    padding-bottom: 0;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .featured {
    position: relative;
}

.pricing .featured .popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 4px 15px 6px 15px;
    margin: 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.pricing .featured .cta-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
.faq .section-title {
    padding-bottom: 20px;
}

.faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.testimonials .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }

    .testimonials .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    padding: 20px 0 30px 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
  # Service Details Section
  --------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 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: 0.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: 0.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);
}

/*--------------------------------------------------------------
  # Starter Section Section
  --------------------------------------------------------------*/

/* Styly-CSS */

.chat-container {
    position: absolute;
    top: 49%;
    right: 4%;
    /* width: 280px; */
    /* background-color: #ffffff; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    border-radius: 12px;
    padding: 15px;
}
.chat-message {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.chat-bot,
.chat-user {
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
}
.chat-bot {
    background-color: #ffffff;
    margin-right: auto;
}
.chat-user {
    background-color: #ffffff;
    margin-left: auto;
}
.chat-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
}
.bot-avatar {
    background-color: #ffeb3b;
    padding: 5px;
}
.user-avatar {
    background-color: #d3d3d3;
    padding: 5px;
    margin-left: 8px;
}

@media (max-width: 991px) {
    .hero .chat-container {
        display: none;
    }
}
.hero .hero-bg img {
    width: 100%;
}

.hero .hero-img {
    width: 100%;
    max-width: 650px;
}

/* Navebar CSS */
.header-container {
    background: white;
    border-radius: -1%;
    border-radius: 25px;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 2px 20px #00000012;
    border-radius: 25px;
    opacity: 1;
    margin-top: 15px;
}

.small-icon {
    width: 19px;
}

#Path_22930 {
    margin-left: 10px !important;
}

@media (max-width: 640px) {
    .header-container {
        padding: 10px;
    }
}

#ai-agent {
    text-align: center;
    /* text-align: left; */
    letter-spacing: 0.4px;
    color: #ffffff;
    opacity: 1;
    background: black;
    font-size: 13px;
}

.scroll-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
}
.scroll-content {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}
.scroll-content:hover {
    animation-play-state: paused;
}
.scroll-content .btn {
    background: none;
    border: none;
    margin: 0 10px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.scroll-content img {
    width: 15px;
    margin-right: 5px;
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.deliver {
    background: url(/assets/img/Mask-Group-46.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px;
    border-radius: 32px;
}
@media (max-width: 768px) {
    /* Adjust breakpoint as needed */
    .deliver {
        padding: 0px;
    }
}
.brand-images {
    align-items: self-start;
    justify-content: center;
    margin-top: 31px;
    place-content: space-between;
    justify-content: space-around;
}
.brand-images-2 {
    margin-top: 0px !important;
}
.brand-container {
    background: #f8f8fa;
    /* padding: 80px; */
    border-radius: 32px;
}
.brand-container-1 {
    background: #f8f8fa;
    padding: 80px;
    border-radius: 32px;
}
@media (max-width: 768px) {
    .brand-container-1 {
        padding: 0px;
    }
}

.brand-100 {
    color: #3f9cb5;
}
.brand-99 {
    color: black;
}

/* Tab container CSS */

.tab-container {
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
    margin-bottom: -30px;
    justify-content: center;
}
.tab {
    background-color: #f3f4f6;
    border-radius: 26px;
    padding: 10px 17px;
    cursor: pointer;
    border: 7px solid white;
    font-size: 15px;
}

.faber {
    margin-top: -32px !important;
    margin-left: -3px;
}
.content-section {
    display: none;
    align-items: center;
    flex-wrap: nowrap !important;
    background-color: #fff;
    border-radius: 30px;
}
@media (max-width: 768px) {
    .content-section.active {
        flex-direction: column;
    }
}

.content-section.active {
    display: flex;
}
.content-left {
    padding: 28px;
}
@media (min-width: 768px) {
    .content-left {
        padding: 28px;
        width: 50%;
        margin-left: 90px !important;
    }
}
.button-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.content-left h1 {
    color: #1a1a1a;
    font-weight: 700;
}
.content-left ul {
    padding-left: 0;
    list-style: none;
}
.content-left ul li::before {
    content: "";
    color: #ff9900;
    margin-right: 10px;
}
.content-left-1 {
    padding: 30px;
}

.content-left-1 h1 {
    color: #1a1a1a;
    font-weight: 700;
}
.content-left-1 ul {
    padding-left: 0;
    list-style: none;
}
.content-left-1 ul li::before {
    content: "";
    color: #ff9900;
    margin-right: 10px;
}

.tick {
    width: 15px;
    padding-left: -15px;
    margin-right: 10px;
}
.cta-btn {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
}
.content-right img {
    width: auto;
    max-height: 400px;
    top: 60px;
    position: relative;
}
.content-right-1 img {
    width: auto;
    max-height: 400px;
    /* top:60px; */
    position: relative;
}
@media (max-width: 768px) {
    /* Adjust breakpoint as needed */
    .content-right-1 img {
        max-height: 300px;
        width: auto;
    }
}

.chat-overlay,
.appointment-overlay {
    position: absolute;
    background-color: #ff9900;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
}
.chat-overlay {
    top: 10%;
    left: 10%;
}
.appointment-overlay {
    bottom: 10%;
    right: 10%;
}

.chat-overlay,
.appointment-overlay {
    position: relative;
    margin-top: 10px;
}

.health-care {
    color: #635eee;
    background: transparent !important;
    border: 2px solid #635eee;
}
.tab-menu-1 {
    width: 21px !important;
}
.tab-menu-1 {
    width: 21px !important;
}
/* custom card */
/* .custom-card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }
  .custom-card {
    width: 270px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .custom-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .custom-card-content {
    padding: 15px;
    text-align: center;
  }
  .custom-card-logo {
    position: absolute;
    bottom: 0;
    left: 10px;
    background-color: #fff;
    border-radius: 12px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
  }
  .card-custom{
    justify-content: center;
  } */

#voice {
    position: relative;
}
.custom-card-logo .okaya {
    width: 100px;
    /* margin-top: -66px; */
    margin-top: -54px;
    MARGIN-LEFT: -8px;
}

.request-button {
    justify-self: anchor-center;
    margin-top: 50px;
}

.custom-row {
    background: url(/assets/img/profile-bg-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.the-smart {
    color: black;
    font-size: 33px;
}

.boost-efficiency {
    font-size: large;
}
.tab-menu-2 {
    padding: 5px !important;
}
.custom-card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    /* Adjust breakpoint as needed */
    .img-background {
        background-image: none !important;
    }
}

.custom-card {
    width: 100%;
    max-width: 300px;
    border-radius: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.custom-card img {
    width: 100%;
    height: auto;
}

.custom-card-content {
    position: relative;
    background: #fff;
    padding: 15px;
}

.custom-card-logo {
    position: relative;
    font-weight: bold;
    z-index: 1;
}

.svg-background {
    position: absolute;
    top: -22px;
    left: -6px;
    width: auto;
    height: -webkit-fill-available;
    z-index: 0;
}

@media (max-width: 768px) {
    .custom-card-container {
        justify-content: center;
    }
}
.card-custom {
    justify-content: center;
    padding: 0px !important;
}

/* AI Agent WorkForce in action */

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.image-container img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
}

.image-container-1 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.image-container-1 img {
    width: 100%;
    height: 180px;
    border-radius: 15px;
}
@media (max-width: 768px) {
    /* Adjust breakpoint as needed */
    .image-container-1 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.overlay img {
    width: 100%;
    height: 60px;
    border-radius: 15px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
}
.overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}
.overlay-1 img {
    width: 100%;
    height: 50px;
    border-radius: 15px;
}

.overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
}
@media (max-width: 768px) {
    /* Adjust breakpoint as needed */
    .overlay-1 {
        justify-content: center;
        align-items: center; /* Optional: Centers content horizontally */
        text-align: center; /* Optional: Centers text */
    }
}

.overlay-1 i {
    font-size: 2rem;
    margin-bottom: 10px;
}
.ai-1 {
    color: #000;
    margin-top: 10px;
}
.ai-11 {
    width: 50px !important;
    height: auto;
}
.ai-12 {
    justify-content: center;
    gap: 40px;
}
.ai-13 {
    color: #000;
    margin-bottom: 31px;
}
@media (max-width: 768px) {
    /* Adjust breakpoint as needed */
    .ai-13 {
        text-align: center; /* Optional: Centers text */
    }
}
.free {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

@media (min-width: 1024px) {
    /* Adjust breakpoint as needed */
    .row-custom {
        padding: 0px 80px;
    }
}

/* experience-zone */

.experience-zone {
    justify-content: center;
}
.experience {
    color: #fff;
}

.main-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 900px;
    /* width: 100%; */
    border: 4px solid #ffbe81;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.overlay .ai-11 {
    width: 40px;
    margin-bottom: 10px;
}
.overlay .ai-1 {
    font-size: 16px;
}
.mic-section {
    text-align: center;
}
.mic-icon {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #8C6239, #D9A877); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}
.explore-btn {
    background: #8c6239;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
}

.ai-01 {
    color: #000;
}

.image-container:hover {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
    cursor: pointer;
    border-bottom: 2px solid #8c6239;
    transition: 0.1s;
}

/* Mic */
.mic-container {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
}

.mic-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: #8c6239;
    border-radius: 50%;
    display: flex;
    border: 6px solid #e7dad6;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 40px auto;
    transition: background 0.3s ease;
}

.mic-icon.active {
    background: #28a745; /* Green when mic is active */
}

.mic-icon.listening {
    background: #ff0000; /* Red when actively listening */
}

.mic-icon i {
    color: #fff;
    font-size: 40px;
}

.mic-icon.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #28a745;
    border-radius: 50%;
    animation: ripple 1.5s infinite ease-out;
}

.mic-icon.listening::before {
    border-color: #ff0000;
}

@keyframes ripple {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.status-text {
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.explore-btn {
    background: #8c6239;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    transition: background 0.3s;
}

.explore-btn:hover {
    background: #7a5231;
}

.get-demo {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Driven Performance */

.stats-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}
.stat-item h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}
.stat-item p {
    font-size: 1rem;
    margin-top: -5px;
    color: #fff;
}
.section-title-2 {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
    text-align: justify;
}

.unique-background-container {
    width: 70vw;
    height: 70vw;
    max-width: 350px;
    max-height: 350px;
    position: relative;
    background: url(/assets/img/Group-664.png) no-repeat center center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}
.unique-background-nav {
    width: 20vh;
    height: 20vh;
    max-width: 350px;
    max-height: 350px;
    position: relative;
    background: url(/assets/img/Group-664.png) no-repeat center center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}
.unique-circle-container {
    width: 100%;
    height: 100%;
    border: 3px solid #dab490;
    border-radius: 50%;
    position: absolute;
    animation: unique-ripple-effect 2s infinite;
}
.unique-circle-containernav {
    width: 100%;
    height: 100%;
    border: 3px solid #dab490;
    border-radius: 50%;
    position: absolute;
    animation: unique-ripple-effect 2s infinite;
}

@keyframes unique-ripple-effect {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 180, 144, 0.5);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(218, 180, 144, 0);
    }
}

.unique-icon-box {
    position: absolute;
    width: 10vw;
    height: 10vw;
    max-width: 50px;
    max-height: 50px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.unique-icon-boxnav {
    position: absolute;
    width: 2vw;
    height: 2vw;
    max-width: 50px;
    max-height: 50px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .unique-icon-boxnav {
        width: 10vw;
        height: 10vw;
        max-width: 40px;
        max-height: 40px;
        font-size: 20px;
    }
}
.unique-bounce-effect {
    animation: unique-bounce-effect 0.5s ease;
}
@keyframes unique-bounce-effect {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}
.unique-icon-whatsapp {
    background-color: #25d366;
}
.unique-icon-messenger {
    background-color: #0084ff;
}
.unique-icon-phone {
    background-color: #34b7f1;
}
.unique-icon-comment {
    background-color: #ff9900;
}
.rotate-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-section-2.active {
    display: flex;
}
.content-section-2 {
    background: linear-gradient(135deg, #5a4fcf, #a96cf8);
    flex-wrap: nowrap !important;
    /* padding: 0px !important; */
}
@media (max-width: 768px) {
    .content-section-2 {
        flex-direction: column;
    }
}
.content-section-2 {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 30px;
}
.content-section-2 {
    background: linear-gradient(135deg, #5a4fcf, #a96cf8);
    flex-wrap: nowrap !important;
    /* padding: 0px !important; */
}
.brand-container-2 {
    padding: 0px !important;
    background: none !important;
    /* height: 413px; */
}
.brand-image-1 {
    margin-top: 0px !important;
}
.revolutionize {
    color: #fff;
    font-weight: 700;
}
.revolutionize-p {
    color: #fff;
    width: 70%;
}
.ctn-btn-2 {
    background: white !important;
    color: black !important;
    font-weight: 600 !important;
}

/* Blog */

.card {
    background: url("https://t4.ftcdn.net/jpg/02/21/03/25/360_F_221032502_gpbXPNpNZD06zqivJ8n6LGV6N70N1qfX.jpg")
        no-repeat center center;
    background-size: cover;
    color: #fff;
    border: 2px solid #333;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 400px; /* Ensures consistent card height */
}

.svg-container {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.svg-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 100%;
    color: #000; /* Text visibility */
    z-index: 2;
}

.btn-primary {
    background-color: #ff5722;
    border: none;
}

.btn-primary:hover {
    background-color: #e64a19;
}

/* Footer */
.footer-p {
    font-size: 10px !important;
    margin-top: -23px;
    margin-left: 9px;
}

.privacy-data {
    display: flex;
    justify-content: center;
}

/* Test End */

.blog-section {
    padding: 50px 20px;
}

.blog-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-card {
    width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
}

.blog-image {
    width: 100%;
    height: 180px;
    background: #ddd; /* Placeholder for image */
}
.blog-curve {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
}

.curve-left {
    width: 100%;
    height: 100%;
    background: #fff;
    /* Adjust as needed */
}
.curve-left-outer {
    width: 45%;
    height: 100%;
    background: #ddd;
    /* Adjust as needed */
}
.curve-right {
    width: 55%;
    height: 100%;
    background: #ddd;
    /* Adjust as needed */
}

.curve-left {
    border-top-left-radius: 20px;
    border-top-right-radius: 50px;
}

.curve-right {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.blog-content {
    padding: 15px;
}

.blog-date {
    font-size: 12px;
    color: #888;
}

.blog-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.blog-description {
    font-size: 14px;
    color: #666;
}

.read-more {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-heading {
    text-align: center;
    padding-bottom: 50px;
    font-weight: 700;
    color: black;
    margin-top: 50px;
}
.cta-btn-3 {
    font-weight: 100;
    margin-left: 10px;
    /* padding: 2px 20px !important; */
}

.cta-color-1 {
    background: linear-gradient(135deg, #c5874d, #9c6a75, #97677a);
}
.cta-color-2 {
    background: linear-gradient(135deg, #a4d3c0, #d8626d);
}
.cta-color-3 {
    background: linear-gradient(135deg, #d96c6f, #e3a582);
}
.cta-color-4 {
    background: linear-gradient(135deg, #e1a281, #e36875);
}

/* Modal */

/* Modal Border Animation */
.modal-content {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #bf8352 0%, #9b6a76 100%);
    color: #ffffff; /* White text */
    border: none;
}

/* .modal-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(180deg, #00C9FF, #92FE9D);
    z-index: -1;
    border-radius: 15px;
    animation: rotBGimg 3s linear infinite;
  } */

.modal-content::after {
    content: "";
    position: absolute;
    background: #1a1a2e; /* Dark background */
    inset: 5px;
    border-radius: 15px;
    z-index: -1;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Modal Header */
.modal-header {
    border-bottom: 1px solid #333;
    padding: 20px;
}

.modal-title {
    color: #ffffff; /* White text */
    font-weight: bold;
}

.btn-close {
    filter: invert(1); /* Make close button white */
}

/* Modal Body */
.modal-body {
    padding: 20px;
}

.form-label {
    color: #ffffff; /* White text */
}

.form-control,
.form-select {
    border: 1px solid #333;
    margin-bottom: 15px;
}

.form-control:focus,
.form-select:focus {
    background-color: #2a2a3e;
    color: #ffffff;
    border-color: #00c9ff; /* Highlight color */
    box-shadow: 0 0 5px rgba(0, 201, 255, 0.5);
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #a4d3c0, #d8626d);

    border: none;
    color: #1a1a2e; /* Dark text */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #92fe9d; /* Gradient color */
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }

    .modal-content {
        border-radius: 10px;
    }

    .modal-content::before,
    .modal-content::after {
        border-radius: 10px;
    }
}

/* End Modal */

/* .svg-image-{
    padding-right: 5px;
  } */

/* Custom Loader Design */
.custom-loader {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top-color: #bf8352;
    border-bottom-color: #9b6a76;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Custom Success Box */
.custom-success {
    background: linear-gradient(135deg, #bf8352, #9b6a76);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
}

/* Custom Error Box */
.custom-error {
    background: linear-gradient(135deg, #9b6a76, #bf8352);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
}

.industries {
    /* border: 2px solid red; */
    border-radius: 16px;
    padding: 10px;
}

.tab-33 {
    padding: 0px !important;
}

/* Mega Menu CSS */

.santeck-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.santeck-mega-menu {
    position: static !important;
}

.unique-icon-box:hover {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.santeck-menu-list li a:hover {
    color: #007bff;
}
.santeck-menu-list span img {
    height: 25px;
    width: auto;
    margin-right: 20px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translate3d(100.8px, 62.4px, 0px) !important;
}
/* Show dropdown menu on hover only for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        transform: translate3d(100.8px, 62.4px, 0px) !important;
    }
}

@media (max-width: 991.98px) {
    .dropdown-menu.show {
        display: contents;
    }
}

@media (min-width: 992px) {
    .dropdown-menu.show {
        display: block; /* or flex/grid depending on your layout */
    }
}

/* Hide dropdown when not hovered */
.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.santeck-mega-menu .dropdown-menu {
    width: 95%;
    left: 0;
    right: 0;
    padding: 20px;
    margin-top: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.nav-link:focus-visible {
    box-shadow: none !important;
}

.santeck-mega-menu .santeck-menu-title {
    position: relative;
    color: #393939;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-bottom: 5px;
}

.santeck-mega-menu .santeck-menu-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    border-bottom: 1px solid #6f6f6f;
}

.res p {
    font-size: 14px;
}
.res a {
    font-size: 12px;
    color: #3f9cb5;
    font-weight: bold;
    padding: 10px 0px 0px 0px;
}

.santeck-mega-menu .santeck-menu-list {
    display: flex;
    flex-direction: column;
}

.santeck-mega-menu .santeck-menu-list li a {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}
.santeck-menu-title1 {
    color: #bd9774;
}
.sidetitle1 {
    font-size: 12px;
}
.sidetitle2 {
    font-size: 12px;
    color: #0d6efd;
}
.santeck-mega-menu .santeck-menu-list li a {
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    justify-content: start;
    padding: 5px 0;
}
.santeck-mega-menu .santeck-menu-list a .imgdiv {
    min-width: 120px;
}
.santeck-mega-menu .santeck-menu-list a .imgdiv1 {
    min-width: 50px;
}

.santeck-mega-menu .santeck-menu-list a:hover {
    color: #0d6efd;
}

.santeck-mega-menu .santeck-menu-image {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.santeck-mega-menu .santeck-menu-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.santeck-mega-menu .santeck-menu-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .santeck-mega-menu .dropdown-menu {
        width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
        padding: 10px;
    }

    .santeck-mega-menu .row {
        margin: 0;
    }

    .santeck-mega-menu .santeck-menu-column {
        margin-bottom: 15px;
    }

    .santeck-navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }
}

.santeck-2 {
    inset: -1px auto auto -66px !important;
}
.card1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 300px;
    margin-bottom: 10px;
}
.card1 img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.card-body {
    flex: 1;
}
.card-title {
    padding-left: 10px;
}
.card-body a {
    color: #3f9cb5;
    text-decoration: none;
    font-weight: bold;
}
.ailife-features {
    padding: 2rem 0;
    justify-content: center;
}

.ailife-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
}

.ailife-card__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    opacity: 0.03;
    color: var(--ai-light);
    z-index: -1;
    line-height: 1;
    user-select: none;
}

.ailife-card__content {
    position: relative;
    z-index: 2;
}

.ailife-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ailife-card__text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Neon Theme */
.ailife-card--neon {
    background: linear-gradient(135deg, var(--ai-dark) 0%, #1a1a2e 100%);
    border: 1px solid rgba(8, 247, 254, 0.2);
}
.ailife-card--neon:hover {
    box-shadow: 0 0 15px rgba(8, 247, 254, 0.4);
    border-color: var(--neon-primary);
}
.ailife-card--neon .ailife-card__title {
    color: var(--neon-primary);
}

/* Cyber Theme */
.ailife-card--cyber {
    background: linear-gradient(135deg, var(--ai-dark) 0%, #1a1a2e 100%);
    border: 1px solid rgba(255, 42, 109, 0.2);
}
.ailife-card--cyber:hover {
    box-shadow: 0 0 15px rgba(255, 42, 109, 0.4);
    border-color: var(--cyber-primary);
}
.ailife-card--cyber .ailife-card__title {
    color: var(--cyber-primary);
}

/* Quantum Theme */
.ailife-card--quantum {
    background: linear-gradient(135deg, var(--ai-dark) 0%, #1a1a2e 100%);
    border: 1px solid rgba(123, 45, 255, 0.2);
}
.ailife-card--quantum:hover {
    box-shadow: 0 0 15px rgba(123, 45, 255, 0.4);
    border-color: var(--quantum-primary);
}
.ailife-card--quantum .ailife-card__title {
    color: var(--quantum-primary);
}

@media (max-width: 768px) {
    .ailife-card__overlay {
        font-size: 10rem;
    }
    .ailife-card {
        padding: 1.5rem;
    }
}

/* Section 2 */

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        135deg,
        var(--ai-primary) 0%,
        var(--ai-secondary) 100%
    );
    /* color: white; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 1rem; */
}

.feature-item {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.bc-2 {
    padding: 0px !important;
}

/* .feature-item:hover {
          background-color: white;
          box-shadow: 0 10px 20px rgba(0,0,0,0.1);
          transform: translateY(-5px);
        } */

.ai-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.highlight {
    background: linear-gradient(
        120deg,
        rgba(58, 134, 255, 0.2) 0%,
        rgba(131, 56, 236, 0.2) 100%
    );
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 3rem 0;
    }

    .ai-image {
        margin-top: 3rem;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .feature-item {
        padding: 1rem;
    }
}

.content-section {
    width: 100%;
    height: 100%;
    background-image: url(/assets/img/sec-2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bi-lightning-charge {
    background-color: #965a0524;
    border-radius: 5px;
    margin-right: 17px;
    padding: 5px;
}

.bi-chat-left-text,
.bi-chat-dots,
.bi-graph-up {
    background-color: #965a0524;
    border-radius: 5px;
    margin-right: 17px;
    padding: 5px;
}

.feature-item:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.accordion-item {
    margin: 13px;
    /* border: 2px solid red; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.accordion-item:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    transition: 0.5s;
}

.content-section {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.content-left-1 {
    flex: 1;
    min-width: 300px;
}

.content-right-1 {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-right-1 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.accordion-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 1.5rem;
}

/* .accordion-button:not(.collapsed) {
          background-color: var(--secondary-color);
          color: white;
          box-shadow: none;
        } */

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.125);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-body {
    background-color: white;
    color: var(--dark-color);
    padding: 1.5rem;
}

.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.tick {
    width: 20px;
    margin-right: 10px;
}

.list-unstyled {
    padding-left: 0;
}

.list-unstyled li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Vision & Core Principles Section */

.vision-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-radius: 1rem;
}

.section-title-vision {
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.principle-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.principle-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.belief-statement {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .vision-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

:root {
    /* Updated to match NCR Best color scheme */
    --ailife-primary: #c0804a; /* NCR's deep blue */
    --ailife-secondary: #ff6600; /* NCR's orange */
    --ailife-accent: #ffcc00; /* NCR's gold */
    --ailife-dark: #333333; /* NCR's dark text */
    --ailife-light: #f5f5f5; /* NCR's light gray */
    --ailife-success: #009933; /* NCR's green */
    --ailife-alert: #cc0000; /* NCR's red */

    /* Updated gradients */
    --ailife-gradient: linear-gradient(
        135deg,
        var(--ailife-primary) 0%,
        #004080 100%
    );
    --ailife-accent-gradient: linear-gradient(
        to right,
        var(--ailife-secondary),
        var(--ailife-accent)
    );
}

.ailife-vision-header {
    position: relative;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

.ailife-vision-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--ailife-gradient);
    border-radius: 2px;
}

.ailife-principle-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(95, 42, 201, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.ailife-principle-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--ailife-gradient);
}

.ailife-principle-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(95, 42, 201, 0.15);
}

.ailife-card-icon-container {
    text-align: center;
    margin-bottom: 1.5rem;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ailife-card-icon {
    font-size: 2.8rem;
    background: var(--ailife-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.4s ease;
    display: inline-block;
    line-height: 1;
}

.ailife-principle-card:hover .ailife-card-icon {
    transform: rotate(5deg) scale(1.15);
    filter: drop-shadow(0 5px 10px rgba(139, 70, 255, 0.3));
}

.ailife-card-title-container {
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ailife-card-title {
    color: var(--ailife-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin: 0 auto;
}

.ailife-card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #ba7f58;
    border-radius: 3px;
}

.ailife-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ailife-card-text {
    text-align: center;
    margin: 0 auto;
    max-width: 280px;
    flex: 1;
}

.ailife-float-animation {
    animation: ailife-float 4s ease-in-out infinite;
}

@keyframes ailife-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

.ailife-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--ailife-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(95, 42, 201, 0.1);
}

.ailife-section-subtitle {
    font-size: 1.25rem;
    color: #5a5a7d;
    max-width: 700px;
    margin: 0 auto;
}

.ailife-brand-statement {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(95, 42, 201, 0.08);
    display: inline-block;
    margin-top: 4rem;
    border-left: 4px solid #ba7f58;
}

.ailife-brand-icon {
    color: var(--ailife-secondary);
    filter: drop-shadow(0 2px 4px rgba(139, 70, 255, 0.3));
}

@media (max-width: 768px) {
    .ailife-section-title {
        font-size: 2.5rem;
    }

    .ailife-card-body {
        padding: 1.75rem;
    }

    .ailife-card-title-container {
        min-height: auto;
    }
}

/* Cta Section */

.ailife-sustain-modern {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.ailife-diagonal-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: var(--ailife-light);
    transform: rotate(-15deg);
    z-index: 0;
}

.ailife-modern-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 51, 102, 0.15);
    position: relative;
    z-index: 2;
    border-top: 4px solid #ba7f58;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ailife-modern-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.ailife-pill-tag {
    display: inline-block;
    background: linear-gradient(90deg, #c5874d, #9b6976);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ailife-modern-title {
    font-weight: 800;
    background: var(--ailife-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.ailife-modern-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #ba7f58;
    border-radius: 2px;
}

.ailife-feature-blob {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.ailife-feature-blob::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--ailife-light);
    border-radius: 50%;
}
.divcenter{
  justify-content: center;
  display: flex;
}

.ailife-feature-blob i {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    color: #ba7f58;
    font-size: 1rem;
}

.ai-transformation {
    font-weight: 700;
    color: #fff;
}
.ailife-cta-modern {
    background: #c0804a;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
    padding: 6rem 0;
    margin-top: 4rem;
    position: relative;
}

.ailife-cta-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="white" fill-opacity="0.05" d="M0,100 L100,100 L100,0 Q50,30 0,0 Z"></path></svg>');
    background-size: cover;
}

.ailife-cta-btn-modern {
    background: white;
    color: var(--ailife-primary);
    border: none;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.ailife-cta-btn-modern::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 40px;
    height: 200%;
    background: rgba(255, 204, 0, 0.3);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.ailife-cta-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ailife-cta-btn-modern:hover::after {
    right: 120%;
}

@media (max-width: 992px) {
    .ailife-diagonal-bg {
        display: none;
    }

    .ailife-cta-modern {
        clip-path: none;
        padding: 4rem 0;
    }
}

.fw-bold {
    color: #000;
}

.lead {
    color: #000;
}
.lead-2 {
    color: #fff;
    font-size: 19px;
    font-weight: lighter;
}

.brand-contain {
    background: none;
}

/* Ai Agent For Customer Services */
body {
    font-family: var(--default-font);
    color: var(--ailife-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.aiServicePro-container {
    max-width: 100%;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.aiServicePro-hero {
    background: url("/assets/img/herro-bggg.jpg");
    color: white;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.aiServicePro-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg=='); */
    opacity: 0.5;
}

.aiServicePro-feature-card {
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: none;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.aiServicePro-feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ailife-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.aiServicePro-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    color: white;
}

.aiServicePro-feature-card:hover::after {
    opacity: 1;
}

.aiServicePro-feature-card:hover .aiServicePro-feature-icon,
.aiServicePro-feature-card:hover h4 {
    color: white !important;
}

.aiServicePro-feature-icon {
    font-size: 2.5rem;
    color: #bd8049;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.aiServicePro-stat-card {
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: none;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.aiServicePro-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ailife-primary);
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.aiServicePro-stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ailife-dark);
    transition: all 0.4s ease;
}

.aiServicePro-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.aiServicePro-stat-card:hover .aiServicePro-stat-number {
    color: #c0804a;
}

.aiServicePro-parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 6rem 0;
}

.aiServicePro-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 51, 102, 0.85); */
    background: url("/assets/img/Rectangle-304.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ai-avatar-vidhira {
    color: #fff;
}

.standard-ai {
    font-size: 17px;
}

.aiServicePro-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: #bd8049;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.aiServicePro-animate-on-move {
    transition: transform 0.3s ease-out;
}

@media (max-width: 992px) {
    .aiServicePro-hero {
        padding: 5rem 0;
        text-align: center;
    }

    .aiServicePro-feature-card,
    .aiServicePro-stat-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .aiServicePro-hero {
        padding: 10rem 0;
    }

    .aiServicePro-parallax-section {
        background-attachment: scroll;
    }
}

.ai-lead {
    color: #000;
}
.ai-lead-service {
    color: #000;
}
.ai-lead-service-re-d {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 500 !important;
    padding: 6px 20px !important;
    cursor: pointer;
}
.request-d {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
}

.get-started {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    color: #fff;
}
.get-started:hover {
    background: linear-gradient(90deg, #ececec, #ededed);
    /* font-weight: lighter !important; */
    transition: 0.5s;
}
.ailife-hero {
    /* background: var(--ailife-gradient); */
    color: var(--ailife-dark);
    padding: 13rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ailife-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ailife-primary);
}

.ailife-subhead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--ailife-dark);
}

.ailife-feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #c5874d;
}
.ailife-benefit-box {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.ailife-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ailife-feature-icon {
    font-size: 2.5rem;
    color: #c5874d;
    margin-bottom: 1.5rem;
}

.ailife-feature-title {
    color: var(--ailife-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ailife-stats-section {
    background: var(--ailife-light);
    padding: 4rem 0;
}

.ailife-stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ailife-stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ailife-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ailife-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.ailife-stat-label {
    color: var(--ailife-dark);
    font-size: 1.1rem;
}

.ailife-cta-section {
    background: #c5874d;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.ailife-cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ailife-btn-primary {
    background-color: var(--ailife-primary);
    border-color: var(--ailife-primary);
    color: white;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ailife-btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ailife-btn-outline {
    background-color: transparent;
    border: 2px solid var(--ailife-primary);
    color: var(--ailife-primary);
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ailife-btn-outline:hover {
    background-color: var(--ailife-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ailife-section-title {
    color: var(--ailife-primary);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.ailife-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--ailife-accent);
    border-radius: 2px;
}

.ailife-floating-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.ailife-shape-1 {
    top: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: var(--ailife-accent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
}

.ailife-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--ailife-primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.ailife-animate-delay-1 {
    animation-delay: 0.2s;
}

.ailife-animate-delay-2 {
    animation-delay: 0.4s;
}

.ailife-animate-delay-3 {
    animation-delay: 0.6s;
}

.ailife-animate-delay-4 {
    animation-delay: 0.8s;
}

/* -------------------------------------------------------------------------- */
/*                            Voice Agent Ai Avater                           */
/* -------------------------------------------------------------------------- */
.aiServicePro-container {
    color: #000 !important; /* Temporary test */
}

/* -------------------------------------------------------------------------- */
/*                                   Vidhira                                  */
/* -------------------------------------------------------------------------- */

.Vidhira {
    color: #fff !important;
}
.Vidhira-p {
    color: #fff !important;
}

/* -------------------------------------------------------------------------- */
/*                                Smart Ai Work                               */
/* -------------------------------------------------------------------------- */

.Smart-AI-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: #ba7f58;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 992px) {
    .Smart-AI-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .Smart-AI-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .Smart-AI-heading {
        font-size: 1.75rem;
    }
}

.Smart-AI-subheading {
    font-size: 1.5rem;
    /* color: #e2e8f0; */
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.Smart-AI-image {
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Smart-AI-hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: url("https://darkslategray-weasel-292671.hostingersite.com/assets/img/herobg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.Smart-AI-content-wrapper {
    padding: 2.5rem;
    border-radius: 16px;
    /* background-color: rgba(15, 23, 42, 0.6); */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Smart-AI-primary-button {
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.Smart-AI-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
    color: white;
}

.Smart-AI-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.Smart-AI-feature-pill {
    background: rgb(255 255 255 / 75%);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    /* color: #e2e8f0; */
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes Smart-AI-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.Smart-AI-animated-image {
    animation: Smart-AI-float 6s ease-in-out infinite;
}

.Smart-AI-sparkle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* footer */
.footer-section {
    color: #ffffff;
    padding: 60px 0 0px 0;
    min-height: 300px;
}

.newsletter-content {
    max-width: 500px;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #3d4348;
    text-align: left;
}

.subscription-form {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.email-input {
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 12px 20px;
    color: black;
    font-size: 0.9rem;
    flex: 1;
}

.email-input::placeholder {
    color: black;
}

.email-input:focus {
    outline: none;
    border-color: #555;
    background-color: transparent;
    color: black;
    box-shadow: none;
}

.subscribe-btn {
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 12px 25px;
    color: #3d4348;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background-color: #333;
    color: #ffffff;
    border-color: #555;
}

.certification-badges {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.badge-item {
    width: 50px;
    height: 50px;
    /* background-color: #1a1a1a; */
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* .badge-item:hover {
    background-color: #2a2a2a;
    border-color: #555;
} */

.badge-icon {
    font-size: 20px;
    color: #888;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #888;
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-text {
    color: #888;
    font-size: 0.85rem;
    margin-right: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.linkedin:hover {
    background-color: #fff;
    color: #0a66c2;
}

.social-icon.youtube:hover {
    background-color: #fff;
    color: #ff0000;
}

.social-icon.twitter:hover {
    background-color: #fff;
    color: black;
}

@media (max-width: 768px) {
    .subscription-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .certification-badges {
        justify-content: center;
    }

    .footer-nav {
        justify-content: center;
    }
}
/* certificate_img*/
.certificate_img {
    width: 80px;
    height: auto;
}
.certificate_img-partner{
    width: 150px;
    height: auto;
}

/* -------------------------------------------------------------------------- */
/*                                Resources CSS                               */
/* -------------------------------------------------------------------------- */

:stori-root {
    --primary-color: #4a00e0; /* Deep Purple */
    --secondary-color: #8e2de2; /* Lighter Purple */
    --accent-color: #00c6ff; /* Bright Blue */
    --text-dark: #2c3e50; /* Dark Grey Blue */
    --text-light: #ecf0f1; /* Light Grey */
    --bg-light: #f8f9fa; /* Off-white */
    --bg-dark: #1a1a2e; /* Dark background for contrast */
    --stori-card-bg: #ffffff;
    --border-radius: 1rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Hero stori-section Styling */
.stori-hero-stori-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    background: url("/assets/img/0009.jpg");
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Hide overflowing pseudo-elements */
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center;
}

@keyframes heroBackgroundPulse {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.stori-hero-stori-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3; /* Subtle overlay for text readability */
    z-index: 1;
    transform: translateZ(-1px) scale(2); /* Parallax effect base */
    filter: blur(2px); /* Slightly blur the background image */
}

.stori-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stori-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stori-hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.stori-btn-primary-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stori-btn-primary-custom:hover {
    background-color: #00a0d3; /* Slightly darker accent */
    border-color: #00a0d3;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* General stori-section Styling */
stori-section {
    padding: 5rem 0;
    position: relative;
    z-index: 3; /* Ensure stori-sections are above parallax */
}

.stori-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.stori-section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 5px;
}

/* stori-card Styling */
.stori-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%; /* Ensure stori-cards in a row have same height */
    overflow: hidden;
    background-color: var(--stori-card-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stori-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.stori-card-img-top {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    height: 200px; /* Fixed height for image consistency */
    object-fit: cover;
}

.stori-card-body {
    padding: 2rem;
    flex-grow: 1;
}

.stori-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stori-card-text {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Specific stori-section background colors */
.bg-light-purple {
    background: linear-gradient(to right, #f0e6fa, #e6f0fa);
}

.stori-bg-dark-blue {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1d);
    color: var(--text-light);
}

.stori-bg-dark-blue .stori-section-title,
.stori-bg-dark-blue .stori-card-title,
.stori-bg-dark-blue .stori-card-text {
    color: var(--text-light);
}

.stori-bg-dark-blue .stori-section-title::after {
    background: var(--accent-color);
}
.stori-bg-dark-blue .stori-card {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.stori-bg-dark-blue .stori-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
}

/* Image placeholders for content */
.stori-content-image {
    width: 100%;
    height: 450px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

/* Call to Action stori-section */
.cta-stori-section {
    background: linear-gradient(45deg, var(--accent-color), #00a0d3);
    color: white;
    text-align: center;
    padding: 6rem 0;
    border-radius: var(--border-radius);
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.cta-stori-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-stori-section p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.stori-btn-cta {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stori-btn-cta:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stori-hero-content {
        padding: 1.5rem;
    }
    .stori-hero-content h1 {
        font-size: 3rem;
    }
    .stori-hero-content p {
        font-size: 1.2rem;
    }
    stori-section {
        padding: 3rem 0;
    }
    .stori-section-title {
        font-size: 2.2rem;
    }
    .cta-stori-section {
        padding: 4rem 1rem;
        margin: 2rem auto;
    }
    .cta-stori-section h2 {
        font-size: 2.5rem;
    }
    .cta-stori-section p {
        font-size: 1rem;
    }
}

/* Custom animation for elements */
.stori-animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.stori-animated-element.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Specific animations for different elements */
.stori-card[data-aos] {
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out,
        opacity 0.5s ease-out;
}
.stori-card[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}
.stori-card[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}
.stori-card[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}
.stori-card[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Custom card styling with unique class names */
.vg-card-custom {
    width: 100%; /* Ensure responsiveness within grid column */
    height: 22.5em; /* Fixed height as per reference */
    background: #000000;
    transition: 1s ease-in-out;
    clip-path: polygon(
        30px 0%,
        100% 0,
        100% calc(100% - 30px),
        calc(100% - 30px) 100%,
        0 100%,
        0% 30px
    );
    /* border-top-right-radius: 20px;
            border-bottom-left-radius: 20px; */
    display: flex;
    flex-direction: column;
    border: none;
}

.vg-card-icon-wrapper {
    width: 1.5em; /* Adjusted to match original reference size */
    height: 1.5em; /* Adjusted to match original reference size */
    background: white;
    border-radius: 15px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em; /* Adjust icon size */
    color: #bc8000; /* Icon color changed to black */
}

.vg-card-title {
    font-weight: bold;
    color: white;
    text-align: center;
    display: block;
    font-size: 1.1em; /* Slightly larger for emphasis */
    margin-bottom: 0.75rem; /* Equivalent to Bootstrap's mb-3 */
}

.vg-card-info {
    font-weight: 400;
    /* color: white; */
    display: block;
    text-align: center;
    font-size: 0.85em; /* Slightly larger for readability */
    margin: 1em; /* Adjust margin as needed */
}

.vg-list-item-text {
    /* color: white; */
    font-size: 0.9em; /* Responsive font size for list items */
}

/* Custom colors for Bootstrap text classes */
.text-primary-custom {
    color: #bc8000 !important;
}
.text-info-custom {
    color: #bc8000 !important;
}
.text-success-custom {
    color: #bc8000 !important;
} /* Reusing primary color */
.text-warning-custom {
    color: #bc8000 !important;
} /* Reusing primary color */
.text-danger-custom {
    color: #bc8000 !important;
} /* Reusing info color */
.text-secondary-custom {
    color: #bc8000 !important;
} /* Reusing primary color */

/* -------------------------------------------------------------------------- */
/*                             Company menubar CSS                            */
/* -------------------------------------------------------------------------- */

.aiLifeBOT-hero {
    background: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)
        ),
        url("https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80")
            no-repeat center center;
    background-size: cover;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.aiLifeBOT-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    position: relative;
    padding: 100px 0;
}

.aiLifeBOT-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.aiLifeBOT-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
}

.aiLifeBOT-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.aiLifeBOT-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--ai-blue);
}

.aiLifeBOT-icon-gold {
    color: var(--ai-gold);
}

.aiLifeBOT-icon-black {
    color: var(--ai-black);
}

.aiLifeBOT-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 700;
}

.aiLifeBOT-heading:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #c5874d, #9b6976);
    bottom: -10px;
    left: 0;
}

.aiLifeBOT-feature-item {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--ai-blue);
}

.aiLifeBOT-feature-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Updated Expertise Section Styles */
.aiLifeBOT-expertise-container {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(188, 128, 0, 0.03),
        rgba(69, 155, 191, 0.03)
    );
    border-radius: 20px;
    overflow: hidden;
    padding: 50px 0;
}

.aiLifeBOT-expertise-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-top: 2px solid #c5874d;

    position: relative;
    overflow: hidden;
}

.aiLifeBOT-expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.aiLifeBOT-expertise-icon {
    font-size: 2.5rem;
    color: var(--ai-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.aiLifeBOT-expertise-item:hover .aiLifeBOT-expertise-icon {
    transform: scale(1.2);
    color: var(--ai-gold);
}

.aiLifeBOT-expertise-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(188, 128, 0, 0.05),
        rgba(69, 155, 191, 0.05)
    );
    z-index: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.aiLifeBOT-expertise-item:hover:after {
    opacity: 1;
}

/* Updated Carbon Emissions Section */
.aiLifeBOT-carbon-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.aiLifeBOT-carbon-header {
    text-align: center;
    margin-bottom: 40px;
}

.aiLifeBOT-carbon-chart {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.aiLifeBOT-carbon-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aiLifeBOT-carbon-bar {
    width: 60px;
    background: linear-gradient(to top, var(--ai-blue), var(--ai-gold));
    position: relative;
    border-radius: 5px 5px 0 0;
    transition: height 1s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aiLifeBOT-carbon-bar:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(69, 155, 191, 0.2);
    border-radius: 5px 5px 0 0;
}

.aiLifeBOT-carbon-label {
    margin-top: 15px;
    font-weight: 600;
    color: var(--ai-black);
    text-align: center;
}

.aiLifeBOT-carbon-value {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ai-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aiLifeBOT-carbon-total {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.aiLifeBOT-stats {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ai-blue);
    margin-bottom: 10px;
}

.aiLifeBOT-stats-label {
    color: var(--ai-black);
    font-size: 1rem;
}

.aiLifeBOT-tab-content {
    padding: 30px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.aiLifeBOT-nav-tabs .nav-link {
    border: none;
    color: var(--ai-black);
    font-weight: 600;
    padding: 15px 25px;
    position: relative;
}

.aiLifeBOT-nav-tabs .nav-link.active {
    color: var(--ai-blue);
    background: transparent;
}

.aiLifeBOT-nav-tabs .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c5874d, #9b6976);
}

.aiLifeBOT-nav-tabs .nav-link:hover {
    color: var(--ai-gold);
}

.aiLifeBOT-join-box {
    background: linear-gradient(
        135deg,
        rgba(69, 155, 191, 0.1),
        rgba(188, 128, 0, 0.1)
    );
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(69, 155, 191, 0.2);
}

.aiLifeBOT-join-box:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(69, 155, 191, 0.05) 0%,
        transparent 70%
    );
    animation: aiLifeBOT-rotate 15s linear infinite;
}

@keyframes aiLifeBOT-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.aiLifeBOT-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.aiLifeBOT-slide {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 60px;
    background-size: cover;
    background-position: center;
}

.aiLifeBOT-slide-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
}

.aiLifeBOT-btn-primary {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.aiLifeBOT-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.aiLifeBOT-btn-outline {
    border: 2px solid #c5874d;
    color: #c5874d;
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.aiLifeBOT-btn-outline:hover {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.aiLifeBOT-bg-light {
    background-color: #f9fafc !important;
}

.aiLifeBOT-text-gold {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.aiLifeBOT-text-blue {
    color: var(--ai-blue);
}

.aiLifeBOT-pulse {
    animation: aiLifeBOT-pulse 2s infinite;
}

@keyframes aiLifeBOT-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .aiLifeBOT-hero {
        min-height: 60vh;
    }

    .aiLifeBOT-parallax {
        background-attachment: scroll;
    }

    .aiLifeBOT-section {
        padding: 50px 0;
    }

    .aiLifeBOT-slide {
        padding: 30px;
        min-height: 300px;
    }

    .aiLifeBOT-slide-content {
        padding: 20px;
    }

    .aiLifeBOT-carbon-chart {
        gap: 20px;
    }

    .aiLifeBOT-carbon-bar {
        width: 40px;
    }
}

.with-ai {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.fa-check-circle {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.fa-robot,
.fa-bullseye,
.fa-cogs,
.fa-chart-line,
.fa-microphone-alt,
.fa-headset,
.fa-search,
.fa-bolt,
.fa-globe,
.fa-comments,
.fa-chart-pie,
.fa-database,
.fa-solar-panel {
    background: linear-gradient(90deg, #c5874d, #9b6976);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}


/* -------------------------------------------------------------------------- */
/*                                  Ai Agents                                 */
/* -------------------------------------------------------------------------- */

.parallax-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            z-index: 1;
        }

        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(0, 0, 0, 0.5); */
            z-index: -1;
        }

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

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

        .section-gradient-1 {
            background: var(--gradient-1);
            color: white;
        }

        .section-gradient-2 {
            background: var(--gradient-2);
            color: white;
        }

        .hero-gradient {
            background: var(--gradient-1);
            padding: 100px 0;
            color: white;
            position: relative;
        }

        .hero-gradient::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8f9fa' fill-opacity='1' d='M0,96L48,117.3C96,139,192,181,288,197.3C384,213,480,203,576,181.3C672,160,768,128,864,128C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom no-repeat;
            background-size: cover;
        }

        .stat-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            height: 100%;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(219, 167, 0, 0.1);
            font-family: Georgia, serif;
        }

        .testimonial-stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-gold);
        }

        .btn-gold {
            background-color: var(--primary-gold);
            color: #000;
            font-weight: 600;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background-color: #c69500;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-outline-gold {
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            background: transparent;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-outline-gold:hover {
            background-color: var(--primary-gold);
            color: #000;
            transform: translateY(-3px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(219, 167, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon i {
            font-size: 30px;
            color: var(--primary-gold);
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 25px 0;
        }

        .faq-question {
            font-weight: 700;
            font-size: 1.2rem;
            color: #000;
            margin-bottom: 10px;
        }

        .cta-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }

        .logo-badge {
            width: 120px;
            height: 120px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 50px;
            color: #000;
        }

        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gold);
        }



        .card-hover-effect {
            transition: all 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }

        .card-hover-effect:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        @media (max-width: 768px) {
            .parallax-section {
                background-attachment: scroll;
            }

            .hero-gradient {
                padding: 60px 0;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

/* ===== MASONRY GALLERY STYLES ===== */

/* Gallery Section Container */
.gallery-section {
  background: linear-gradient(180deg, #fff 60%, #f7fafd 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Masonry Gallery Container */
.masonry-gallery {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* Masonry Grid Layout */
.masonry-grid {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Masonry Item */
.masonry-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 340px;
  position: relative;
  transition: box-shadow 0.2s;
}

.masonry-item:hover {
  box-shadow: 0 6px 32px rgba(60,60,90,0.13);
  z-index: 2;
}

/* Image Wrapper */
.masonry-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  background: #f4f7fa;
}

.masonry-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  object-fit: cover;
  min-height: 220px;
}

.masonry-img-wrapper:hover img {
  transform: scale(1.035);
}

/* Overlay */
.masonry-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0.05) 40%,rgba(0,0,0,0.60) 100%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  border-radius: 1.2rem;
  transition: background 0.3s;
}

.masonry-overlay-content {
  color: #fff;
  width: 100%;
  padding: 1.2rem 1rem 1.1rem 1rem;
  background: linear-gradient(0deg,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.0) 100%);
  border-radius: 0 0 1.2rem 1.2rem;
}

.masonry-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.masonry-desc {
  font-size: 1.01rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
  color: #e0e0e0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}

/* Video Play Icon Styles */
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-play-icon i {
  font-size: 1.5rem;
  color: #007bff;
}

.video-play-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .masonry-grid {
    max-width: 1000px;
    gap: 1.2rem;
  }
}

@media (max-width: 991px) {
  .masonry-grid {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .masonry-item {
    min-width: 45vw;
    max-width: 100vw;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    flex-direction: column;
    gap: 0.5rem;
  }
  .masonry-item {
    min-width: 90vw;
    max-width: 100vw;
  }
  .masonry-overlay-content {
    padding: 0.7rem 0.7rem 0.6rem 0.7rem;
  }
  .masonry-title {
    font-size: 1rem;
  }
  .masonry-desc {
    font-size: 0.92rem;
  }
}

/* Lightbox overlay text (Glightbox) */
.gslide-description {
  background: linear-gradient(0deg,rgba(0,0,0,0.85) 80%,rgba(0,0,0,0.0) 100%) !important;
  color: #fff !important;
  padding: 1.2rem 1rem 1.1rem 1rem !important;
  font-size: 1.1rem !important;
  border-radius: 0 0 1rem 1rem;
}

.gslide-title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.3rem !important;
  color: #fff !important;
}

.gslide-desc {
  font-size: 1.05rem !important;
  color: #e0e0e0 !important;
}

@media (max-width: 600px) {
  .gslide-description {
    font-size: 1rem !important;
    padding: 0.7rem 0.7rem 0.6rem 0.7rem !important;
  }
  .gslide-title {
    font-size: 1.05rem !important;
  }
  .gslide-desc {
    font-size: 0.92rem !important;
  }
}

.social-icon.instagram:hover {
    background-color: #fff;
    color: #e1306c; /* Instagram Pinkish color */
}

.social-icon.facebook:hover {
    background-color: #fff;
    color: #1877f2; /* Facebook Blue */
}