﻿/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", 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: "Segoe UI";
    --nav-font: "Segoe UI";
}

/* 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: #0E1113; /* Background color for the entire website, including individual sections */
    --default-color: #BCBCBC; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #707070; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4F7335; /* 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: #131825; /* 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: #919191; /* The default color of the main navmenu links */
    --nav-hover-color: #4F7335; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: rgba(22, 29, 44, 0.95); /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: rgba(23, 30, 47, 0.95); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: rgba(215, 226, 235, 0.645); /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ffffff; /* 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: #111623;
    --surface-color: #161c2a;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff; 
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--heading-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 {
    --background-color: rgba(14, 17, 19, 1);
    --heading-color: #ffffff;
    --contrast-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 3px 10px #000;
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 32px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
        }

        .header .logo span {
            color: var(--accent-color);
            font-size: 32px;
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--accent-color);
        font-weight: 600;
        font-size: 14px;
        padding: 8px 30px;
        margin: 0 0 0 30px;
        border-radius: 20px;
        transition: 0.3s;
        border: 2px solid var(--accent-color);
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--default-color);
            background: var(--accent-color);
        }

@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(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        /* underline effect */
        .navmenu ul li a {
            position: relative;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .navmenu ul li a::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 50%;
                width: 0;
                height: 2px;
                background-color: var(--accent-color);
                transition: all 0.3s ease;
                transform: translateX(-50%);
            }

            .navmenu ul li a:hover::after {
                width: 30%;
            }

            .navmenu ul li a.active::after {
                width: 30%;
                background-color: var(--accent-color);
            }
}

    /* Navmenu - Mobile */
    @media (max-width: 1199px) {
        .mobile-nav-toggle {
            color: var(--nav-color);
            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(--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), white 90%);
                }

                    .navmenu a i:hover,
                    .navmenu a:focus i:hover {
                        background-color: color-mix(in srgb, var(--accent-color), white 90%);
                    }

                .navmenu a:hover,
                .navmenu .active,
                .navmenu .active:focus {
                    background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 20%);
                }

                    .navmenu .active i,
                    .navmenu .active:focus i {
                        transform: rotate(180deg);
                    }



        .mobile-nav-active {
            overflow: hidden;
        }

            .mobile-nav-active .mobile-nav-toggle {
                color: #fff;
                position: absolute;
                font-size: 32px;
                top: 15px;
                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 .social-links {
        margin-top: 20px;
    }

        .footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: rgba(79, 115, 53, 0.2);
            font-size: 16px;
            color: var(--accent-color) !important;
            margin-right: 10px;
            transition: 0.3s;
        }

            .footer .social-links a:hover {
                transform: scale(1.1);
            }

    .footer h4 {
        font-size: 16px;
        font-weight: 400;
        position: relative;
        padding-bottom: 12px;
        color: var(--accent-color);
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                margin-right: 3px;
                font-size: 12px;
                line-height: 0;
                color: var(--accent-color);
            }

            .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 {
                display: inline-block;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: var(--accent-color);
    
                    
                    }
    .footer .footer-about img {
        width: 100%;
        max-width: 120px;
    }

    .footer .footer-about a {
        color: var(--heading-color);
        font-size: 24px;
        font-weight: 600;
        font-family: var(--heading-font);
    }

    .footer .footer-contact p {
        margin-bottom: 5px;
        padding-right: 70px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.footer .footer-cta-buttons {
    text-align: right;
}

.footer .standard-button .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    background-color: var(--background-color);
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    padding: 5px 00px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 10px 10px 30px #000;
}

    .footer .standard-button .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0px 0px 10px var(--accent-color);
    }


.footer .standard-button .secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: #B5B5B5;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 00px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 10px 10px 30px #000;
}

 .footer   .standard-button .secondary-btn:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
    }


    .footer .copyright {
        color: #707070;
        padding: 25px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .footer .copyright p {
            margin-bottom: 0;
        }

    .footer .credits {
        margin-top: 6px;
        font-size: 13px;
    }

    .footer .footer-logo-animation {
       
        bottom: 10px;
        left: 0;
        right: 0;
        z-index: 1;
        background: var(--background-color); /* or your background color */
        padding: 10px 0; /* adjust as needed */

    }
  
    .footer .footer-logo-animation .footer_logo_left {
        width: 100%;
        max-width: 300px;
    }

    .footer .footer-logo-animation .footer_logo_right {
        width: 100%;
        max-width: 600px;
    }


@media (max-width: 768px) {
    .footer .footer-logo-animation .footer_logo_left {
        width: 100%;
        max-width: 100px;
    }

    .footer .footer-logo-animation .footer_logo_right {
        width: 100%;
     
        max-width: 250px;
    }

}

@media (max-width: 480px) {
    .footer .footer-top {
        padding-top: 0px;
    }
    .footer .footer-links {
        margin-top: 30px;
    }
    .footer .footer-cta-buttons {
        text-align: left;
    }
    .footer .footer-logo-animation .footer_logo_left {
        width: 100%;
        max-width: 80px;
    }

    .footer .footer-logo-animation .footer_logo_right {
        width: 100%;
        max-width: 180px;
    }


}

    /*     Container B is revealed as you scroll into it  alternative   */
    /*
footer {
    position: relative;
}


.container-b {
    height: 100vh;   
      position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: white;
    text-align: center;
 
    background-image: url('/assets/img/Insure Platform Logo - Dark_left.png'), 
    url('/assets/img/Insure Platform Logo - Dark_right.png'); 
    background-attachment: fixed, fixed;
    background-size: 25% auto, 60% auto; 
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
 
}

.container-b::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        
    }

  
.container-b-content {
    position: relative;
    z-index: 2;
}*/



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    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;
    }




    /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
    section,
    .section {
        color: var(--default-color);
        background-color: var(--background-color);
        padding: 150px 0;
        scroll-margin-top: 87px;
        overflow: clip;
    }

    @media (max-width: 1199px) {
        section,
        .section {
            scroll-margin-top: 66px;
        }
    }


    .section-title {
        padding-bottom: 60px;
        position: relative;
    }

        .section-title h2 {
            font-size: 14px;
            font-weight: 500;
            padding: 0;
            line-height: 1px;
            margin-bottom: 10px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-color);
            position: relative;
        }

        /*  .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: var(--accent-color);
            margin: 4px 10px;
        }*/

        .section-title p {
            color: var(--heading-color);
            margin: 0;
            font-size: 36px;
            font-weight: 100;
        }

    .section-title-2 h2 {
        font-size: 14px;
        font-weight: 100 !important;
        padding: 0;
        line-height: 1px;
        margin-bottom: 10px;
        letter-spacing: 1.5px;
        position: relative;
        font-family: var(--heading-font);
    }



    /*--------------------------------------------------------------
# Buttons 
--------------------------------------------------------------*/
    @media (max-width: 991px) {
        .standard-button {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .standard-button {
            flex-direction: column;
            gap: 1rem;
        }
    }

    .standard-button .primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--accent-color);
        background-color: var(--background-color);
        color: var(--accent-color);
        font-size: 18px;
        font-weight: 700;
        padding: 0.875rem 2rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 10px 10px 30px #000;
    }

        .standard-button .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0px 0px 10px var(--accent-color);
        }


    .standard-button .secondary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--accent-color);
        color: #B5B5B5;
        font-size: 18px;
        font-weight: 700;
        padding: 0.875rem 2rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 10px 10px 30px #000;
    }

        .standard-button .secondary-btn:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
        }



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
    .hero {
        width: 100%;
        min-height: 100vh;
        position: relative;
        padding: 0px 0 80px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--background-color) !important;
    }

        .hero .background_image {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            overflow-y: auto;
            background-size: cover;
            background-position: center;
            background-color: var(--background-color) !important;
            overflow: hidden;
        }

        .hero:before {
            content: "";
            background: color-mix(in srgb, var(--background-color), transparent 3%);
            /*background: color-mix(in srgb, #0E1113, transparent 2%);*/
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .hero .hero-container {
            position: relative;
            z-index: 3;
        }

        .hero h2 {
            margin: 0;
            font-size: 43px;
            font-weight: 400;
            font-family: var(--nav-font);
            color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
        }

            .hero h2 span {
                color: var(--accent-color);
            }

        .hero p {
            margin: 10px 0 0 0;
            font-size: 16px;
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }



        .hero .icon-box {
            padding: 10px 10px;
            transition: ease-in-out 0.3s;
            background: linear-gradient(150deg, #3C3C3C, #000 70%);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            border-radius: 10px;
            height: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 0px 30px #000!important;
        }

            .hero .icon-box i {
                font-size: 32px;
                line-height: 1;
                color: var(--accent-color);
            }

            .hero .icon-box h3 {
                font-weight: 700;
                margin: 0px 0 0 0;
                padding: 0;
                line-height: 1;
                font-size: 30px;
                line-height: 26px;
                background: linear-gradient(to bottom, #9B9B9B, #212121);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
            }

                .hero .icon-box h3 a {
                    color: color-mix(in srgb, var(--default-color), transparent 20%);
                    transition: ease-in-out 0.3s;
                }

    .plus-sup {
        vertical-align: super;
        font-size: smaller; /* optional: makes + slightly smaller */
    }


.hero .icon-box p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

    .hero .icon-box:hover {
        border-color: var(--accent-color);
    }

        .hero .icon-box:hover h3 a {
            color: var(--accent-color);
        }



    .hero .hero-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
    }

    @media (max-width: 991px) {
        .hero .hero-buttons {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .hero {
            min-height: 70vh;
          
            padding: 0px 0 30px 0;
        }

            .hero .hero-buttons {
            flex-direction: column;
            gap: 1rem;
        }

        .icon-box-container {
            display: flex;
            justify-content: center;
            padding: 5px 5px;
            width: 100%;
            max-width: 120px;
        }

        .hero .hero-container {
          margin-top: 40px;
        }

        .hero .icon-box h3 {
            font-weight: 700;
            margin: 0px 0 0 0;
            padding: 0;
            line-height: 1;
            font-size: 25px;
            line-height: 26px;
            background: linear-gradient(to bottom, #9B9B9B, #212121);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero .icon-box p {
            font-size: 14px;
        }

        .hero_section_image {
            margin-top: 110px;
        }
        .hero .icon-box {
            padding: 8px 5px 8px 5px;
            box-shadow: 0px 0px 20px #000 !important;
        }

       
    }

    .hero .hero-buttons .primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--accent-color);
        background-color: transparent;
        color: var(--accent-color);
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .hero .hero-buttons .primary-btn:hover {
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0px 0px 10px var(--accent-color);
        }

    .hero .hero-buttons .secondary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .hero .hero-buttons .secondary-btn i {
            margin-left: 8px;
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .hero .hero-buttons .secondary-btn:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
        }

            .hero .hero-buttons .secondary-btn:hover i {
                transform: translateX(4px);
            }

    .hero_section_image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main_hero_image {
        position: relative;
        margin-top: -180px;
        max-width: 1100px;
        width: 100%;
        z-index: 3;
    }

    @media (max-width: 768px) {
        .hero h2 {
            font-size: 32px;
        }

        .hero p {
            font-size: 18px;
        }
    }


    /*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/


    .clients {
        padding-top: 60px;
        padding-bottom: 60px;
    }



        .clients .client-item {
            padding: 1.5rem 1.75rem;
            text-align: center;
            height: 100%;
            background-color: var(--background-color);
            border-radius: 8px;
            transition: all 0.3s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 12px 24px 56px #000;
        }

            .clients .client-item img {
                max-width: 100%;
                transition: all 0.3s ease-in-out;
                /*   filter: grayscale(100);  */
                opacity: 0.8;
            }

            .clients .client-item:hover {
                transform: translateY(-5px);
                border-color: var(--accent-color);
            }

        /* .clients .client-item:hover img {
                filter: grayscale(0);
                opacity: 1;
            }*/


        .clients .bottom-hover-effect {
            margin-top: 80px;
            width: 100%;
            max-width: 500px;
        }

    @media (max-width: 1199px) {
        .clients .client-item {
            padding: 1.25rem;
        }
    }

    @media (max-width: 767px) {
        .clients .client-item {
            padding: 1rem;
        }

        .clients .bottom-hover-effect {
            margin-top: 40px;
            width: 100%;
            max-width: 150px;
        }
    }

    @media (max-width: 480px) {
        .client-item-container {
            margin-bottom: 20px;
        }

        .clients .client-item img {
            max-width: 80px;
            width: 100%
        }
    }



    /*--------------------------------------------------------------
# Problem and Solution Section
--------------------------------------------------------------*/


    /* main sections layout */
    .section-a {
        position: relative;
        padding-top: 60px;
        min-height: 50vh;
        width: 100%;
        overflow: visible;
    }

    .problem-section {
        padding-top: 60px;
    }

    .section-b .solution-logo {
        position: relative;
        width: 100%;
        max-width: 200px;
        z-index: 100;
        background-color: var(--background-color);
        padding: 10px;
    }

    .solution-group {
        position: relative;
        z-index: 25;
    }

    /* Section B - Container */
    .section-b {
        position: relative;
        min-height: 50vh;
        overflow: visible;
        padding: 40px;
    }


        .section-b .section-title {
            padding: 40px 40px;
            background: rgba(14,17,19, 0.9);
            z-index: 30;
            box-shadow: 0 0 30px #000;
            margin-bottom: 40px;
            border-radius: 20px;
        }


    /* Inverse half-moon list container */
    .halfmoon-list {
        position: relative;
        width: 550px;
        height: 450px;
    }

    /* Individual list items positioned in an inverse arc (concave) */
    .list-item {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 15px;
        width: 350px;
        padding: 12px 20px;
        /*  background: rgba(134, 194, 50, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(134, 194, 50, 0.3);
    backdrop-filter: blur(5px);*/
        transition: all 0.3s ease;
        opacity: 0;
        /* animation: fadeInItem 0.6s ease-out forwards;*/
    }


    /* The items curve INWARD toward the bubble */
    .item-1 {
        top: 5%;
        right: 20%;
        /* animation: fadeInItem 0.6s ease-out forwards;
    animation-delay: 0.2s;*/
    }

    .item-2 {
        top: 30%;
        right: 0%;
        /*  animation: fadeInItem 0.6s ease-out forwards;
    animation-delay: 0.4s;
    */
    }

    .item-3 {
        top: 55%;
        right: 0%;
        /* animation: fadeInItem 0.6s ease-out forwards;
    animation-delay: 0.6s;
    */
    }

    .item-4 {
        top: 80%;
        right: 20%;
        /*   animation: fadeInItem 0.6s ease-out forwards;
    animation-delay: 0.8s;
    */
    }

    .section-b .halfmoon-list .green-circle-shape {
        width: 50px;
        height: 50px;
        max-width: 50px;
        min-width: 50px;
        object-fit: contain;
        display: block;
    }

    .item-text {
        font-size: 1rem;
        font-weight: 400;
        color: #BCBCBC;
        letter-spacing: 0.3px;
    }

    /* Hover effects */
    /*.list-item:hover {
    background: rgba(134, 194, 50, 0.2);
    transform: translateX(-5px) scale(1.02);
    border-color: #86c232;
    box-shadow: 0 0 15px rgba(134, 194, 50, 0.3);
}*/

    /* Fade-in animation */
    @keyframes fadeInItem {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Add inverse half-moon connecting line */
    .halfmoon-list::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -10%;
        width: 280px;
        height: 450px;
        border-top: none;
        border-left: none;
        border-radius: 0 0 280px 0;
        pointer-events: none;
        z-index: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 900px) {
        .halfmoon-list {
            width: 400px;
            height: 380px;
            margin-left: 60px;
        }

        .list-item {
            width: 220px;
            padding: 10px 16px;
        }

        .item-text {
            font-size: 0.85rem;
        }

        .bullet-point {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 768px) {
        .section-b {
            flex-direction: column;
            padding: 60px 20px;
        }

        .halfmoon-list {
            margin-left: 0;
            margin-top: 60px;
            width: 320px;
            height: 350px;
        }

        .list-item {
            width: 200px;
            padding: 8px 12px;
        }

        .item-1 {
            top: 5%;
            right: 15%;
        }

        .item-2 {
            top: 35%;
            right: 0%;
        }

        .item-3 {
            top: 60%;
            right: 0%;
        }

        .item-4 {
            top: 85%;
            right: 15%;
        }

    }

    @media (max-width: 480px) {
        .section-b {
            flex-direction: column;
            padding: 60px 20px;
        }

        .problem-section h2 {
            font-size: 20px !important;
        }

        .section-b h2 {
            font-size: 20px !important;
        }

        .halfmoon-list {
            margin-left: 30px;
            margin-top: 0px;
            width: 250px;
            height: 400px;
        }

        .list-item {
            width: 200px;
            padding: 0px 0px;
            margin-bottom: 10px;
        }

        .item-1 {
            top: 3%;
           left: 0%;
        }

        .item-2 {
            top: 30%;
            left: 0%;
        }

        .item-3 {
            top: 57%;
            left: 0%;
        }

        .item-4 {
            top: 80%;
            left: 0%;
        }

        .section-b .solution-logo {
            width: 100%;
            max-width: 100px;
            padding: 0px;
     
        }

        .section-b .halfmoon-list .green-circle-shape {
            width: 25px;
            height: 25px;
            max-width: 25px;
            min-width: 25px;
        }

        .bubble {
            max-width: 120px !important;
            max-height: 120px !important;
            border-radius: 50%;
        }

        .item-text {
            font-size: 16px;
         
        }

        .solution-section .halfmoon-list,
        .solution-section [class*="halfmoon"],
        .solution-section [class*="moon"] {
            overflow-x: hidden;
            max-width: 100%;
        }

  

    }

    /* floating word styling - premium & dynamic */
    .word {
        position: absolute;
        opacity: 0;
        font-size: 16px;
        font-weight: 400;
        color: #919191;
        text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        background: #1E1E1E;
        backdrop-filter: blur(6px);
        padding: 0.4rem 1.2rem;
        border-radius: 60px;
        border-left: 3px solid #4F7335;
        letter-spacing: -0.2px;
        white-space: nowrap;
        transform: translateY(30px);
        transition: box-shadow 0.2s ease;
        cursor: default;
        z-index: 40;
    }

        /* individual word positions - refined for aesthetic flow and avoid overlap */

        .word:nth-child(1) {
            top: 8%;
            left: 12%;
        }

        .word:nth-child(2) {
            top: 22%;
            left: 68%;
        }

        .word:nth-child(3) {
            top: 38%;
            left: 18%;
        }

        .word:nth-child(4) {
            top: 52%;
            left: 74%;
        }

        .word:nth-child(5) {
            top: 70%;
            left: 28%;
        }

        .word:nth-child(6) {
            top: 88%;
            left: 9%;
        }

        /* ADD THESE FOR THE REMAINING WORDS */
        .word:nth-child(7) {
            top: 12%;
            left: 45%;
        }

        .word:nth-child(8) {
            top: 28%;
            left: 85%;
        }

        .word:nth-child(9) {
            top: 45%;
            left: 8%;
        }

        .word:nth-child(10) {
            top: 62%;
            left: 55%;
        }

        .word:nth-child(11) {
            top: 78%;
            left: 82%;
        }

        .word:nth-child(12) {
            top: 15%;
            left: 88%;
        }

        .word:nth-child(13) {
            top: 48%;
            left: 38%;
        }

        .word:nth-child(14) {
            top: 82%;
            left: 48%;
        }

    /* responsive fine-tuning: adjust positions on tablet/mobile to avoid collision but keep connections alive */
    @media (max-width: 900px) {
        .word {
            font-size: 1rem;
            padding: 0.4rem 1rem;
            white-space: nowrap;
        }

            .word:nth-child(1) {
                top: 6%;
                left: 5%;
            }

            .word:nth-child(2) {
                top: 20%;
                left: 62%;
            }

            .word:nth-child(3) {
                top: 36%;
                left: 8%;
            }

            .word:nth-child(4) {
                top: 52%;
                left: 66%;
            }

            .word:nth-child(5) {
                top: 72%;
                left: 15%;
            }

            .word:nth-child(6) {
                top: 90%;
                left: 4%;
            }
    }

    @media (max-width: 650px) {
        .word {
            font-size: 0.85rem;
            padding: 0.3rem 0.9rem;
        }
    }

    /* central hub bubble - glowing & prominent */
    .bubble {
        position: relative;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 1px solid var(--accent-color);
        box-shadow: 10px 10px 40px #000;
        display: flex;
        align-items: center;
        justify-content: center;
         color: white;
        letter-spacing: 2px;
        text-shadow: 0 2px 5px rgba(0,0,0,0.4);
        transition: transform 0.2s ease, box-shadow 0.2s;
        z-index: 26;
        /* backdrop-filter: blur(2px);*/
        cursor: default;
        background: var(--background-color);
    }

        .bubble:hover {
            transform: scale(1.02);
        }

    /* SVG canvas - overlays everything but stays behind content */
    svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 12;
    }

    /* dynamic line styles: vibrant green with glow effect */
    line {
        stroke: rgba(112,112,112,0.5);
        stroke-width: 0.5;
        stroke-dasharray: none;
        opacity: 0.85;
       /* filter: drop-shadow(0 0 2px #a8e063);*/
        transition: stroke-width 0.1s ease;
    }

    /* additional effect for lines when word is visible (just style) */
    .word-visible line {
        stroke-width: 3.8;
        opacity: 1;
    }

    /* subtle section spacer to make scroll feel natural */
    .section-a, .section-b {
        scroll-snap-align: start;
    }

    /* help text for UX */
    .scroll-hint {
        position: fixed;
        bottom: 18px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0.8rem;
        color: #8f9bb5;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(5px);
        width: fit-content;
        margin: 0 auto;
        padding: 6px 16px;
        border-radius: 40px;
        pointer-events: none;
        z-index: 30;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    #connections {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1000px; /* large enough for testing */
        pointer-events: none;
        z-index: 999;
    }

@media (max-width: 480px) {
    .section-a {
        width: 100%;
        max-width: 340px;
        margin: 0px;
        padding-top: 0px;
        
    }
    .problem-section {
        padding-bottom: 30px;
    }

}
 /*--------------------------------------------------------------
# client-profile Section
--------------------------------------------------------------*/
    .client-profile {
        padding-top: 100px;
        padding-bottom: 100px;
    }

        .client-profile .client-profile-item {
            padding: 60px 30px;
            /*  background: linear-gradient(145deg, #313131, var(--background-color) 40%);*/
            background: linear-gradient(145deg, #313131, #000 60%);
            border-radius: 30px;
            transition: all 0.4s ease-in-out;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            justify-content: center;
            align-items: center;
            text-align: center;
            border: 1px solid var(--accent-color);
        }

            .client-profile .client-profile-item:hover {
                transform: translateY(-8px);
                box-shadow: 10px 10px 40px color-mix(in srgb, #000, transparent 20%);
            }

                .client-profile .client-profile-item:hover::before {
                    transform: scaleX(1);
                }

                .client-profile .client-profile-item:hover .client-profile-icon {
                    transform: scale(1.1);
                }


            .client-profile .client-profile-item .gradient-icon {
                margin-bottom: 20px;
                width: 60px;
            }

            .client-profile .client-profile-item h3 {
                font-size: 24px;
                font-weight: 500;
                margin-bottom: 10px;
                line-height: 1.3;
                color: color-mix(in srgb, var(--default-color), transparent 10%);
            }

/* subtle underline effect after heading (optional) */
                .client-profile .client-profile-item h3::after {
                    content: '';
                    display: block;
                    width: 45px;
                    height: 3px;
                    background: rgba(79, 115, 53, 0.5);
                    margin: 0.8rem auto 0;
                    border-radius: 4px;
                    transition: width 0.25s ease;
                }

            .client-profile .client-profile-item:hover h3::after {
                width: 70px;
                background: rgba(79, 115, 53, 0.9);
            }

            .client-profile .client-profile-item p {
                font-size: 16px;
                line-height: 1.7;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                flex-grow: 1;
            }


    @media (max-width: 768px) {
        .client-profile .client-profile-item {
            padding: 40px 24px;
        }

            .client-profile .client-profile-item .client-profile-icon {
                width: 64px;
                height: 64px;
                margin-bottom: 24px;
            }

                .client-profile .client-profile-item .client-profile-icon i {
                    font-size: 28px;
                }

            .client-profile .client-profile-item h3 {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .client-profile .client-profile-item p {
                font-size: 15px;
                margin-bottom: 24px;
            }
    }

    @media (max-width: 480px) {
        .client-profile {
            padding-bottom: 30px;
            padding-top: 30px;
        }

            .client-profile h2 {
                font-size: 20px !important;
            }

            .client-profile .client-profile-item {
                padding: 30px 20px 30px 20px;
            }

            .client-profile .client-profile-container {
                margin-bottom: 25px;
                padding: 0px 10px;
                height: 100%;
            }

                .client-profile .client-profile-container h3 {
                    font-size: 24px !important;
                }
    }



    /*--------------------------------------------------------------
# Why go digital Section
--------------------------------------------------------------*/
    .digital {
        padding-top: 60px;
        padding-bottom: 30px;
    }

        .digital .digital-overview {
            display: flex;
            margin-bottom: 60px;
            gap: 40px;
        }

    @media (max-width: 991px) {
        .digital .digital-overview {
            flex-direction: column;
        }
    }

    .digital .digital-overview .main-heading {
        flex: 1;
        padding-right: 20px;
    }

        .digital .digital-overview .main-heading h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .digital .digital-overview .main-heading p {
            font-size: 17px;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 30px;
        }

    .digital .digital-overview .digital-card-wrapper {
        flex: 1.2;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .digital .digital-overview .digital-card-wrapper .digital-row {
            display: inline-flex;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }



        .digital .digital-overview .digital-card-wrapper .digital-card {
            padding: 40px; /* controls the size of card  */
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            max-width: 250px; /* controls the size of card  */
            justify-content: center; /* Centers both cards together */
        }

    @media (max-width: 480px) {


        .digital .digital-overview .digital-card-wrapper .digital-card {
            padding: 30px;
        }

        .digital {
            padding: 0px;
        }
    }

    @media (max-width: 767px) {
        .digital .digital-overview .digital-card-wrapper .digital-row {
            grid-template-columns: 1fr;
        }

        .digital .digital-overview .digital-card-wrapper .digital-card {
            padding: 30px;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            max-width: 270px;
        }
    }

    .digital .digital-overview .digital-card-wrapper #digital-card-1 {
        border-radius: 0px 60px 60px 60px;
        background-color: var(--accent-color);
        box-shadow: 10px 10px 20px #000;
    }

    .digital .digital-overview .digital-card-wrapper #digital-card-2 {
        border-radius: 60px 0px 60px 60px;
        border: 2px solid #2E2E2E;
        box-shadow: 10px 10px 20px #000;
    }

    .digital .digital-overview .digital-card-wrapper #digital-card-4 {
        border-radius: 60px 60px 0px 60px;
        background-color: var(--accent-color);
        box-shadow: 10px 10px 20px #000;
    }

    .digital .digital-overview .digital-card-wrapper #digital-card-3 {
        border-radius: 60px 60px 60px 0px;
        border: 2px solid #2E2E2E;
        box-shadow: 10px 10px 20px #000;
    }

    .digitals .digital-overview .digital-card-wrapper #digital-card-1:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .digital .digital-overview .digital-card-wrapper .digital-card .digital-primary {
        border-left: 4px solid var(--accent-color);
    }

    .digital .digital-overview .digital-card-wrapper .digital-card .digital-icon {
        margin-bottom: 20px;
    }

        .digital .digital-overview .digital-card-wrapper .digital-card .digital-icon img {
            width: 40px;
        }



    .digital .digital-overview .digital-card-wrapper .digital-card .digital-details p {
        font-size: 15px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 20px;
    }



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
    .features {
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .features .feature-item {
            padding: 30px 30px;
            background: linear-gradient(145deg, #313131, #000 60%);
            border-radius: 30px;
            transition: all 0.4s ease-in-out;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            justify-content: center;
            align-items: center;
            text-align: center;
            border: 1px solid var(--accent-color);
        }

    .feature-item-container {
        margin-bottom: 30px;
    }

    .features .feature-item:hover {
        transform: translateY(-8px);
        box-shadow: 10px 10px 40px color-mix(in srgb, #000, transparent 20%);
    }

        .features .feature-item:hover::before {
            transform: scaleX(1);
        }

        .features .feature-item:hover .feature-icon {
            transform: scale(1.1);
        }

.features .feature-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}


    .features .feature-item .gradient-icon {
        display: block;
        width: 80px;
    }

.features .feature-item .item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Adjust size as needed */
    width: 50%;
    height: auto;
}

    .features .feature-item .enlarge-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Adjust size as needed */
        width: 60%;
        height: auto;
    }

    .features .feature-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #B5B5B5 !important;
    }

    .features .feature-item p {
        font-size: 16px;
        line-height: 1.7;
        color: #919191;
        flex-grow: 1;
    }



    .features .standard-button .primary-btn {
        margin-top: 80px;
    }



    @media (max-width: 768px) {
        .features .feature-item {
            padding: 40px 24px;
        }

            .features .feature-item .feature-icon {
                width: 64px;
                height: 64px;
                margin-bottom: 24px;
            }

                .features .feature-item .feature-icon i {
                    font-size: 28px;
                }

            .features .feature-item h3 {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .features .feature-item p {
                font-size: 15px;
                margin-bottom: 24px;
            }
    }



    @media (max-width: 480px) {
        .features h2 {
            font-size: 20px !important;
        }

        .features .standard-button .primary-btn {
            margin-top: 0px;
        }

        .features {
            padding-bottom: 0px;
        }
    }



    /*--------------------------------------------------------------
# AI Feature Section
--------------------------------------------------------------*/

    .ai-feature {
        padding-top: 60px;
        padding-bottom: 60px;
    }

        .ai-feature .dave-heading h2 {
            font-size: 170px;
            font-weight: 100;
            background: linear-gradient( #9C9C9C 10%, #000 80%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }


        .ai-feature .dave-heading p {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 20px;
        }


        .ai-feature .dave-image-section {
            margin-top: 60px;
        }



        .ai-feature .image-section {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .ai-feature .image-section .main-image-wrapper {
                position: relative;
                max-width: 250px;
            }

                .ai-feature .image-section .main-image-wrapper .main-img {
                    border-radius: 20px;
                    position: relative;
                    z-index: 2;
                }



            .ai-feature .image-section .content-card {
                position: absolute;
                background: color-mix(in srgb, var(--background-color), transparent 25%);
                border-radius: 16px;
                padding: 1rem 1.25rem;
                display: flex;
                align-items: center;
                gap: 0.75rem;
                z-index: 3;
                width: 100%;
                max-width: 250px;
            }

                .ai-feature .image-section .content-card .content-details i {
                    color: var(--accent-color);
                    font-size: 20px;
                }

                .ai-feature .image-section .content-card .content-details h6 {
                    font-size: 1.25rem;
                    font-weight: 700;
                    color: #B5B5B5;
                    margin: 0;
                    line-height: 1;
                }

                .ai-feature .image-section .content-card .content-details span {
                    font-size: 16px;
                    color: var(--accent-color);
                    font-weight: 500;
                }

                .ai-feature .image-section .content-card .content-details p {
                    font-size: 16px;
                    color: var(--accent-color);
                    font-weight: 500;
                    margin-top: 5px;
                }



                .ai-feature .image-section .content-card.card-1 {
                    top: 20%;
                    right: -220px;
                    animation: float1 6s ease-in-out infinite;
                }

                .ai-feature .image-section .content-card.card-2 {
                    top: 40%;
                    left: -210px;
                    animation: float2 6s ease-in-out infinite;
                }

                .ai-feature .image-section .content-card.card-3 {
                    bottom: 10%;
                    right: -180px;
                    animation: float3 5s ease-in-out infinite;
                }

    @keyframes floatRotate {

        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-15px) rotate(180deg);
        }
    }

    @keyframes pulse {

        0%, 100% {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.4;
        }
    }

    @keyframes float1 {

        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    @keyframes float2 {

        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(8px);
        }
    }

    @keyframes float3 {

        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }


    @media (max-width: 991.98px) {
        .ai-feature {
            padding: 80px 0;
        }

            .ai-feature .dave-heading h2 {
                font-size: 80px;
            }


            .ai-feature .dave-heading p {
                padding: 0px 50px;
            }


            .ai-feature .dave-image-section {
                margin-top: 0px;
            }


            .ai-feature .image-section .content-card {
                position: absolute;
                border-radius: 16px;
                padding: 1rem 1.25rem;
                display: flex;
                align-items: center;
                gap: 0.75rem;
                z-index: 3;
                width: 100%;
                max-width: 180px;
            }




            .ai-feature .image-section {
                margin-top: 3rem;
            }

                .ai-feature .image-section .content-card.card-1 {
                    top: 30%;
                    right: -60px;
                }

                .ai-feature .image-section .content-card.card-2 {
                    top: 50%;
                    left: -50px;
                }

                .ai-feature .image-section .content-card.card-3 {
                    bottom: 1%;
                    right: -50px;
                }
    }

    @media (max-width: 768px) {
        .ai-feature {
            padding: 60px 0;
        }

            .ai-feature .cta-wrapper {
                padding: 2rem 1.5rem;
            }

            .ai-feature .content-section h2 {
                font-size: 1.875rem;
            }

            .ai-feature .content-section .label-badge {
                padding: 0.6rem 1.25rem;
                font-size: 0.85rem;
            }

            .ai-feature .content-card {
                padding: 0.75rem 1rem;
            }



                .ai-feature .content-card .content-details h6 {
                    font-size: 1.1rem;
                }

                .ai-feature .content-card .content-details span {
                    font-size: 0.8rem;
                }

            .ai-feature .overlay-circle {
                transform: scale(0.8);
            }
    }



    /*--------------------------------------------------------------
# Mobile Section
--------------------------------------------------------------*/
    .mobile-section {
        padding: 120px 0;
    }

        .mobile-section .mobile-container {
            position: relative;
            background-image: url('/assets/img/mobile-section-background_v2.png');
            overflow: visible;
            background-size: contain; /* Shows full image without cropping */
            background-position: center;
            background-repeat: no-repeat;
            background-size: 150% auto; /* 150% width, auto height */
            border-radius: 20px;
        }


        .mobile-section .content-section {
            position: relative;
            z-index: 2;
            padding: 2rem 1rem;
        }

            .mobile-section .content-section .label-badge i {
                font-size: 1.1rem;
            }

            .mobile-section .content-section h2 {
                font-size: 2.75rem;
                font-weight: 800;
                color: var(--accent-color);
                line-height: 1.1;
                margin-bottom: 1.5rem;
            }

        .mobile-section .features-grid .feature-item h6 {
            font-size: 1.1rem;
            color: var(--accent-color);
            font-weight: 600;
        }

        .mobile-section .content-section p {
            font-size: 1rem;
            color: #BCBCBC;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

        .mobile-section .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

            .mobile-section .features-grid .feature-item {
                display: flex;
                align-items: flex-start; /* Changed from 'center' to align top of icon with text */
                gap: 0.75rem;
            }

                .mobile-section .features-grid .feature-item .feature-icon {
                    color: var(--accent-color);
                    font-size: 1.25rem;
                }



                .mobile-section .features-grid .feature-item span {
                    font-weight: 500;
                    color: var(--heading-color);
                    font-size: 0.95rem;
                }

        .mobile-section .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }


        .mobile-section .image-section {
            position: absolute;
            margin-top: -310px; /* Spills out the top */
            z-index: 2;
        }


            .mobile-section .image-section .main-image-wrapper {
                position: relative;
                width: 100%; /* Make larger */
                max-width: 300px;
            }

                .mobile-section .image-section .main-image-wrapper .main-img {
                    border-radius: 20px;
                    position: relative;
                    z-index: 2;
                }



    @media (max-width: 991.98px) {
        .mobile-section {
            padding: 80px 0;
        }

            .mobile-section .cta-wrapper {
                padding: 3rem 2rem;
            }

            .mobile-section .content-section h2 {
                font-size: 2.25rem;
            }

            .mobile-section .content-section p {
                font-size: 1rem;
            }

            .mobile-section .features-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .mobile-section .cta-actions .btn.btn-cta-primary {
                width: 100%;
            }

            .mobile-section .cta-actions .secondary-action {
                justify-content: center;
                flex-direction: column;
                gap: 0.5rem;
            }

            .mobile-section .image-section {
                margin-top: 3rem;
            }

                .mobile-section .image-section .stats-card.card-1 {
                    top: 10%;
                    left: 0;
                }

                .mobile-section .image-section .stats-card.card-2 {
                    bottom: 10%;
                    right: 0;
                }
    }

    @media (max-width: 768px) {
        .mobile-section {
            padding: 60px 0;
        }

            .mobile-section .cta-wrapper {
                padding: 2rem 1.5rem;
            }

            .mobile-section .content-section h2 {
                font-size: 1.875rem;
            }

            .mobile-section .content-section .label-badge {
                padding: 0.6rem 1.25rem;
                font-size: 0.85rem;
            }

            .mobile-section .stats-card {
                padding: 0.75rem 1rem;
            }

                .mobile-section .stats-card .stat-icon {
                    width: 35px;
                    height: 35px;
                    font-size: 1rem;
                }

                .mobile-section .stats-card .stat-content h6 {
                    font-size: 1.1rem;
                }

                .mobile-section .stats-card .stat-content span {
                    font-size: 0.8rem;
                }

            .mobile-section .overlay-circle {
                transform: scale(0.8);
            }
    }

    @media (max-width: 480px) {
        .mobile-section {
            padding-bottom: 0px;
        }

            .mobile-section .features-grid {
                /* Adds space below content before image appears */
            }

            /* OR add space above the image */
            .mobile-section .image-section {
                position: relative;
                margin-top: 0px;
            }

                .mobile-section .image-section .main-image-wrapper {
                    position: relative;
                    width: 100%; /* Make larger */
                    max-width: 150px;
                }

            .mobile-section .mobile-container {
                position: relative;
                background-image: url('/assets/img/mobile-section-background_v2.png');
                overflow: visible;
                background-size: cover; /* Shows full image without cropping */
                background-position: center;
                background-repeat: no-repeat;
                background-size: auto; /* 150% width, auto height */
                border-radius: 20px;
              
            }

            .mobile-section .mobile-container .standard-button {
                display: flex;
                justify-content: center;
                align-items: center;
            }
              
         
    }

/*--------------------------------------------------------------
# Compliance & Security Section
--------------------------------------------------------------*/

    .compliance-security {
        padding-top: 60px;
        padding-bottom: 0px;
    }

        .compliance-security .compliance-security-image-wrapper {
            position: relative;
        }

            .compliance-security .compliance-security-image-wrapper img {
                width: 100%;
                max-width: 500px;
            }

        .compliance-security .compliance-security-content .tag-badge {
            color: var(--accent-color);
            text-transform: uppercase;
            font-weight: 500;
        }

        .compliance-security .compliance-security-content h2 {
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-size: 36px;
            font-weight: 100;
        }

    @media (max-width: 991px) {
        .compliance-security .compliance-security-content h2 {
            font-size: 1.75rem;
        }
    }

    .compliance-security .compliance-security-content .compliance-security-info p {
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.7;
    }

        .compliance-security .compliance-security-content .compliance-security-info p:last-child {
            margin-bottom: 0;
        }


    @media (max-width: 991px) {
        .compliance-security .compliance-security-content {
            margin-top: 3rem;
        }
    }

    @media (max-width: 480px) {
        .compliance-security {
            padding-top: 0px;
            padding-bottom: 0px;
        }

         
    }



/*--------------------------------------------------------------
#  Achievements Section
--------------------------------------------------------------*/
    .achievements {
        padding-bottom: 10px;
    }

        .achievements .achievements-item {
            height: 100%;
            padding: 80px 50px 60px 50px;
            border-radius: 8px;
            transition: all 0.4s ease !important;
            background-color: var(--background-color);
            position: relative;
            overflow: hidden;
            box-shadow: 0px 0px 30px #000;
            width: 320px;
        }

            .achievements .achievements-item:hover {
                transform: translateY(-12px) !important;
            }

                .achievements .achievements-item:hover::before {
                    transform: scaleX(1);
                }

    @media (max-width: 768px) {
        .achievements .achievements-item {
            padding: 40px 30px;
        }
    }

    .achievements .achievements-item img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 150px;
        transition: all 0.4s ease;
    }



    .achievements .achievements-item .achievements-stats-number-3 {
        font-size: 2rem;
        font-weight: 500;
        color: #ffffffc7;
    }

    .achievements .achievements-item .achievements-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        height: 130px;
    }

    .achievements .achievements-item #achievements-image-1 img {
        width: 100%;
        max-width: 140px;
    }

    .achievements .achievements-item .achievements-stats-number-2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        font-weight: 500;
        color: #ffffffc7;
        margin: 0;
        z-index: 1;
    }


    .achievements .achievements-item .achievements-stats-number-1 {
        position: absolute;
        top: 0%;
        left: 0%;
        transform: translate(-0%, -50%);
        font-size: 2rem;
        font-weight: 500;
        color: #ffffffc7;
        margin: 0;
        z-index: 1;
    }


    .achievements .achievements-item #achievements-image-3 {
        flex-direction: column !important;
    }



    .achievements h3 {
        font-size: 24px;
        font-weight: 300;
        margin-bottom: 20px;
        text-align: center;
        color: var(--heading-color);
        line-height: 1.3;
    }

    .achievements p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        text-align: center;
        line-height: 1.7;
        font-size: 15px;
    }


    .col-lg-4 {
        display: flex;
        flex-direction: column;
    }

    /* Hide the hover image by default */
    .hover_shade_image {
        display: block;
        width: 100%;
        max-width: 300px; /* Adjust as needed */
        height: auto;
        margin-top: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        align-self: center; /* Center the image */
    }

    /* Show the image when hovering over the column */
    .col-lg-4:hover .hover_shade_image {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }



    /* Initial staggered offset */
    .col-lg-4:nth-child(1) [data-aos="fade-up"] {
        transform: translateY(0);
    }

    .col-lg-4:nth-child(2) [data-aos="fade-up"] {
        transform: translateY(100px); /* 40px lower */
    }

    .col-lg-4:nth-child(3) [data-aos="fade-up"] {
        transform: translateY(200px); /* 80px lower */
    }

    /* On scroll/fade-up animation, they move to their final positions */
    [data-aos="fade-up"] {
        transition: all 0.6s ease-out;
    }

        /* Final position - all aligned */
        [data-aos="fade-up"].aos-animate {
            transform: translateY(0);
        }

    @media (max-width: 480px) {
        .achievements {
            padding-top: 120px;
            padding-bottom: 60px;
        }

        .hover_shade_image {
            display: none;
        }

        .achievements .achievements-item {
            margin-top: 5px;
        }
    }


    /*--------------------------------------------------------------
# Create Your Own Demo Instance Section
--------------------------------------------------------------*/


    .demo-instance .demo-instance-video-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
    }


    .demo-instance .demo-instance-content {
        padding-right: 30px !important;
    }

        .demo-instance .demo-instance-content h2 {
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-size: 36px;
            font-weight: 100;
        }


    @media (max-width: 991px) {
        .demo-instance .demo-instance-content h2 {
            font-size: 1.75rem;
        }
    }

    .demo-instance .demo-instance-content .demo-instance-info p {
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.7;
    }

        .demo-instance .demo-instance-content .demo-instance-info p:last-child {
            margin-bottom: 0;
        }


    @media (max-width: 991px) {
        .demo-instance .demo-instance-content {
            margin-top: 3rem;
        }
    }


    .demo-instance-video-wrapper .video-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

        .demo-instance-video-wrapper .video-content video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* or 'contain' depending on your preference */
            border-radius: 8px;
        }

    /* Make the video container take full width */
    /*.demo-instance-video-wrapper {
    width: 100%;
}

    .demo-instance-video-wrapper .video-responsive {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    /*      height: 0;
        overflow: hidden;
        border-radius: 12px;
    }

        .demo-instance-video-wrapper .video-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }*/

    @media (max-width: 480px) {
        .demo-instance {
            padding-top: 30px;
            padding-bottom: 60px;
        }

            .demo-instance img {
                margin-top: 30px;
            }
    }

    /*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
    .cta-section {
        position: relative;
        padding-top: 60px;
        padding-bottom: 60px;
        background-image: url("../img/cta_background.png");
        background-clip: content-box !important;
    }

        .cta-section .cta-container {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 60px;
        }

            .cta-section .cta-container .cta-content {
                position: relative;
                z-index: 2;
            }

                .cta-section .cta-container .cta-content p {
                    padding: 0 200px;
                    color: #9B9B9B
                }

                .cta-section .cta-container .cta-content h3 {
                    color: #C9C9C9;
                    margin: 0;
                    font-size: 36px;
                    font-weight: 100;
                }


        .cta-section .cta-content .standard-button {
            margin-top: 30px;
        }


    @media (max-width: 480px) {
        .cta-section {
            padding-top: 0px;
            padding-bottom: 0px;
        }

            .cta-section .cta-container .cta-content p {
                padding: 0 0px;
            }
    }
    /*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
    .benefits {
        padding-top: 60px;
        padding-bottom: 60px;
    }

        .benefits .benefit-item {
            position: relative;
            padding: 40px 60px;
            border-radius: 30px;
            transition: all 0.4s ease-in-out;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0px 0px 40px #000;
        }

    .benefit-item-container {
        margin-bottom: 30px;
    }

    .benefits .benefit-item:hover {
        transform: translateY(-8px);
        box-shadow: 10px 10px 40px color-mix(in srgb, #000, transparent 20%);
    }

        .benefits .benefit-item:hover::before {
            transform: scaleX(1);
        }

        .benefits .benefit-item:hover .benefit-icon {
            transform: scale(1.1);
        }

    .benefit-icon {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }


    .benefits #benefit-details h3 {
        margin-bottom: 1.5rem;
        line-height: 1.3;
        font-size: 32px;
        font-weight: 100;
    }

    .benefits #benefit-details .check-icon {
        font-size: 18px;
        font-weight: 100;
        color: var(--accent-color);
        padding-right: 5px;
    }

    .benefit-item div p {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .check-icon {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
    }

    .benefits p {
        font-size: 16px;
        line-height: 1.7;
        color: #919191;
        flex-grow: 1;
    }

    #ai-benefit {
        gap: 20px; /* Space between image and speech bubble */
    }

    .benefit-item .speech-bubble {
        position: absolute;
        top: 40px;
        right: 60px;
        border: 2px solid var(--accent-color);
        border-radius: 30px 30px 30px 0px;
        padding: 10px;
        width: 300px;
        margin-bottom: 50px;
    }

    .benefits .speech-bubble p {
        margin: 0;
        color: var(--accent-color);
        padding: 5px;
    }

    .ai-benefits-text {
    }

    .benefits #ai-benefit {
        padding: 40px 60px 0px 60px;
    }

        .benefits #ai-benefit img {
            margin-top: 120px;
            flex-shrink: 0;
            width: 100%;
            max-width: 200px;
        }

    .benefits #platform-screens-benefit {
        padding: 40px 60px 40px 60px;
    }

        .benefits #platform-screens-benefit p {
            font-weight: 100;
            color: var(--default-color);
            font-size: 25px;
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .benefits #platform-screens-benefit .text-highlight {
            display: block;
            color: #919191;
            padding-left: 80px;
        }


    .benefits #mobile-benefit {
        padding: 40px 60px 0px 60px;
    }


        .benefits #mobile-benefit p {
            font-weight: 100;
            color: var(--default-color);
            font-size: 25px;
        }

        .benefits #mobile-benefit .text-highlight {
            color: var(--accent-color)
        }


        .benefits #mobile-benefit img {
            margin-top: 0px;
            width: 100%;
            max-width: 250px;
        }


    @media (max-width: 768px) {
        .benefits .benefit-item {
            padding: 40px 24px;
        }


            .benefits .benefit-item .benefit-icon i {
                font-size: 28px;
            }

            .benefits .benefit-item h3 {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .benefits .benefit-item p {
                font-size: 15px;
                margin-bottom: 24px;
            }
    }

    .benefits .standard-button .primary-btn {
        margin-top: 80px;
    }

    @media (max-width: 768px) {
        .benefits {
            padding-bottom: 30px;
        }
    }


    /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/


    .contact-section {
        position: relative;
        background-image: url('/assets/img/contact_backgound_image.png');
        /*  background-size: auto 100%;*/
        background-size: cover;
        background-position: center 100%;
        background-repeat: no-repeat;
        /*background-attachment: fixed;*/
        background-color: var(--background-color);
        color: #ffffff;
        overflow-x: visible;
    }




        .contact-section .container {
            position: relative;
            z-index: 2;
        }


        .contact-section .contact-area {
            background: rgba(14, 17, 19, 1);
            border-radius: 24px;
            padding: 45px 35px;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
        }


        .contact-section .heading-content h2 {
            font-size: 17px;
            line-height: 1.7;
            color: var(--accent-color);
            margin-bottom: 0px;
        }

        .contact-section .heading-content .heading-text {
            font-size: 36px;
            font-weight: 100;
            margin-bottom: 10px;
            line-height: 1.2;
            color: #707070;
        }

        .contact-section .heading-content .contact-description {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

    /* Form Group Styles */
    .form_group {
        margin-bottom: 25px;
    }



    .form_control {
        width: 100%;
        height: 54px;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 400;
        color: #757575;
        background: rgba(14, 17, 19, 1);
        border: 2px solid rgba(25, 25, 25, 1);
        border-radius: 12px;
        transition: all 0.3s ease;
        outline: none;
        font-family: inherit;
        box-shadow: inset 3px 3px 10px #000;
    }

    textarea.form_control {
        height: 140px;
        resize: vertical;
        padding-top: 15px;
    }

    .form_control:focus {
        border-color: #ffd700;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    }

    .form_control::placeholder {
        color: #757575;
    }



    /* Information List Dark Style */
    .text-wrapper {
        background: rgba(14, 17, 19, 0.6);
        border-radius: 24px;
        padding: 40px 30px;
    }

    .information-item {
        align-items: center;
        gap: 20px;
    }

        .information-item .icon {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(79, 115, 53, 0.1);
            border-radius: 50%;
            font-size: 24px;
            color: var(--accent-color);
        }

        .information-item .text h5 {
            font-size: 18px;
            font-weight: 400;
            color: color-mix(in srgb, var(--default-color), transparent 70%);
            margin-bottom: 8px;
        }

        .information-item .text p {
            margin-bottom: 0;
        }

        .information-item .text a {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            text-decoration: none;
            transition: color 0.3s;
        }

            .information-item .text a:hover {
                color: var(--accent-color);
            }

    /* Status Messages */
    #sendingLabel, #errorLabel, #thankyouLabel {
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 500;
    }

    #sendingLabel {
        background: rgba(52, 152, 219, 0.2);
        color: #3498db;
        border: 1px solid rgba(52, 152, 219, 0.3);
    }

    #errorLabel {
        background: rgba(231, 76, 60, 0.2);
        color: #e74c3c;
        border: 1px solid rgba(231, 76, 60, 0.3);
    }

    #thankyouLabel {
        background: rgba(46, 204, 113, 0.2);
        color: #2ecc71;
        border: 1px solid rgba(46, 204, 113, 0.3);
    }

    /* Animation Classes */
    .animated-hover-icon {
        transition: transform 0.3s ease;
    }

        .animated-hover-icon:hover {
            transform: translateX(5px);
        }

    .shape-icon {
        position: absolute;
        bottom: 20px;
        right: 20px;
        opacity: 0.5;
        max-width: 50px;
    }


    @keyframes floatX {
        0%, 100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(10px);
        }
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .contact-area {
            padding: 30px 25px;
        }

        .section-title h2 {
            font-size: 28px;
        }

        .text-wrapper {
            margin-top: 30px;
        }
    }

    @media (max-width: 768px) {
        .contact-area {
            padding: 25px 20px;
        }

        .form_control {
            height: 48px;
        }

        .main-btn {
            padding: 12px 28px;
            font-size: 14px;
        }
    }

    /* Custom Scrollbar for textarea */
    textarea.form_control::-webkit-scrollbar {
        width: 6px;
    }

    textarea.form_control::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }

    textarea.form_control::-webkit-scrollbar-thumb {
        background: rgba(255, 215, 0, 0.5);
        border-radius: 3px;
    }

    @media (max-width: 480px) {
        .contact-section {
            padding-top: 0px;
            padding-bottom: 30px;
        }
    }

