/**
* Template Name: eNno
* Template URL: https://bootstrapmade.com/enno-free-simple-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# 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: "Raleway",  sans-serif;
  --nav-font: "Ubuntu",  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: #444444;*/
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    /*--default-color: #000;*/ /* Default color used for the majority of the text content across the entire website */
    --heading-color: #14151a; /* Color for headings, subheadings and title throughout the website */
    --main-theme-text-color: #1353d1; /* Color for headings, subheadings and title throughout the website */
    /*--accent-color: #1353d1;*/ /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --accent-color: #4285f4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    /*--accent-color: #10bc69;  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. */
    --gradient-start: hsl(353.21deg 86.89% 23.92%);
    --gradient-end: red;
    /*--gradient-end: hsl(221.11deg 28.72% 36.86%);*/
    --bs-white-rgb: 255, 255, 255;
    --gradient-start-reg-red: hsl(221.11deg 28.72% 36.86%);
    --gradient-reg-start: hsl(108deg 68.73% 15.4%);
    --gradient-reg-end: green;
    --gradient-reg-end-red: red;
    --bs-white-reg-rgb: 255, 255, 255;
    --blue-start: #1346B8;
    --blue-end: #306BF0;
    --green: #2BBF5A;
    --highlight-color: #2ecc71;
    /*--green: #34c759;*/
    --white: #ffffff;
}
.highlighted {
    color: var(--highlight-color) !important;
}
    /* 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: #14151a; /* #5f687b The default color of the main navmenu links */
        --nav-hover-color: #4285f4; /* 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: #5f687b; /* Used for navigation links of the dropdown items in the navigation menu. */
        --nav-dropdown-hover-color: #10bc69; /* 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: #f9f9f9;
        --surface-color: #ffffff;
    }

    .dark-background {
        --background-color: #060606;
        --default-color: #ffffff;
        --heading-color: #ffffff;
        --surface-color: #252525;
        --contrast-color: #ffffff;
    }

    .accent-background {
        --background-color: #10bc69;
        --default-color: #ffffff;
        --heading-color: #ffffff;
        --surface-color: #14eb83;
        --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(--default-font);
        font-variant-numeric: lining-nums;
    }

    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;
    }

    .hint_label {
        color: red;
        font-weight: 400;
        font-size: small;
    }

    .mr-10px {
        margin-right: 10px;
    }

    .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);
        }
    }
    /* Pulsating Play Button
------------------------------*/
    .pulsating-play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
        border-radius: 50%;
        display: block;
        position: relative;
        overflow: hidden;
    }

        .pulsating-play-btn:before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
            animation: pulsate-play-btn 2s;
            animation-direction: forwards;
            animation-iteration-count: infinite;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .pulsating-play-btn:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .pulsating-play-btn:hover:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 200;
            animation: none;
            border-radius: 0;
        }

        .pulsating-play-btn:hover:after {
            border-left: 15px solid var(--accent-color);
            transform: scale(20);
        }

    @keyframes pulsate-play-btn {
        0% {
            transform: scale(0.6, 0.6);
            opacity: 1;
        }

        100% {
            transform: scale(1, 1);
            opacity: 0;
        }
    }
    /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
    .header {
        color: var(--default-color);
        background-color: var(--background-color);
        padding: 10px 0;
        transition: all 0.5s;
        z-index: 997;
    }

        .header .logo {
            line-height: 1;
            /*box-shadow: 0 0 1px rgba(44, 49, 74, 0.6), 0 0 16px rgba(44, 49, 74, 0.5), 0 0 32px rgba(44, 49, 74, 0.4), 0 0 48px rgba(44, 49, 74, 0.3);*/
            border-radius: 1.6rem;
        }

            .header .logo img {
                max-height: 36px;
                margin-right: 8px;
                border-radius: 1rem;
            }

            .header .logo h1 {
                font-size: 30px;
                margin: 0;
                font-weight: 700;
                color: var(--heading-color);
            }

        .header .btn-getstarted,
        .header .btn-getstarted:focus {
            color: var(--contrast-color);
            background: var(--accent-color);
            font-size: 14px;
            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%);
            }

    .btn_custom .btn-getstarted,
    .btn_custom .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 25px;
        margin: 0 0 0 30px;
        border-radius: 50px;
        transition: 0.3s;
    }

        .btn_custom .btn-getstarted:hover,
        .btn_custom .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);*/
        box-shadow: 0 1.6rem 3.2rem 0 rgba(44, 49, 74, .16);
        top: .75rem;
        top: .75rem;
        left: 0px;
        right: 0px;
        margin: auto;
        /*background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    color: #fff;*/

        background: rgba(255, 255, 255, 0.18); /* white translucent */
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.45);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
        color: #1f2937; /* dark text for contrast */
    }

        .scrolled .header .reg_btn {
            display: none;
        }

    @media (min-width: 1200px) {
        .scrolled .header {
            width: 900px;
        }
    }
    /*--------------------------------------------------------------
# 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: 16px;
                    line-height: 0;
                    margin-right: 5px;
                    transition: 0.3s;
                }

            .navmenu li:last-child a {
                padding-right: 0;
            }

            .navmenu .active {
                font-family: 'Raleway';
                text-shadow: 0 0 1px rgba(44, 49, 74, 0.6), 0 0 16px rgba(44, 49, 74, 0.5), 0 0 32px rgba(44, 49, 74, 0.4), 0 0 48px rgba(44, 49, 74, 0.3);
            }

                .navmenu li:hover > a,
                .navmenu .active,
                .navmenu .active:focus {
                    color: var(--nav-hover-color);
                }

            .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 {
                    padding: 10px 20px;
                    font-size: 15px;
                    text-transform: none;
                    color: var(--nav-dropdown-color);
                }

                    .navmenu .dropdown ul a i {
                        font-size: 12px;
                    }

                    .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 - 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(--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;
                display: none;
                z-index: 99;
                padding: 10px 0;
                margin: 10px 20px;
                background-color: var(--nav-dropdown-background-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                box-shadow: none;
                transition: all 0.5s ease-in-out;
            }

                .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;
        }

            .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-newsletter {
            background-color: color-mix(in srgb, var(--default-color), transparent 97%);
            padding: 50px 0;
        }

            .footer .footer-newsletter h4 {
                font-size: 24px;
            }

            .footer .footer-newsletter .newsletter-form {
                margin-top: 30px;
                margin-bottom: 15px;
                padding: 6px 8px;
                position: relative;
                border-radius: 4px;
                background-color: var(--surface-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
                display: flex;
                transition: 0.3s;
                border-radius: 50px;
            }

                .footer .footer-newsletter .newsletter-form:focus-within {
                    border-color: var(--accent-color);
                }

                .footer .footer-newsletter .newsletter-form input[type=email] {
                    border: 0;
                    padding: 4px;
                    width: 100%;
                    background-color: var(--surface-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 -8px -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 .footer-top {
            padding-top: 50px;
        }

        .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;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-right: 10px;
            transition: 0.3s;
        }

            .footer .social-links a:hover {
                color: var(--accent-color);
                border-color: var(--accent-color);
            }

        .footer h4 {
            font-size: 16px;
            font-weight: bold;
            position: relative;
            padding-bottom: 12px;
        }

        .footer .footer-links {
            margin-bottom: 30px;
        }

            .footer .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer .footer-links ul i {
                    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 a {
            color: var(--heading-color);
            font-size: 24px;
            font-weight: 600;
            font-family: var(--heading-font);
        }

        .footer .footer-contact p {
            margin-bottom: 5px;
        }

        .footer .copyright {
            padding: 25px 0;
            border-top: 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;
        }
    /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
    /*#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;*/
    /*background: var(--background-color);*/
    /*background: unset;
    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: 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;
            font-weight: 400;
        }

            .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: 30px 0;
        margin-bottom: 30px;
        position: relative;
    }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 0;
            position: relative;
            z-index: 2;
            font-size: 30px;
            font-weight: 800;
        }
            .section-title h2 span {
                color: var(--green);
                position: static;
                font-size: inherit;
            }

        .section-title span {
            position: absolute;
            top: 4px;
            color: color-mix(in srgb, var(--heading-color), transparent 95%);
            left: 0;
            right: 0;
            z-index: 1;
            font-weight: 700;
            font-size: 52px;
            line-height: 1;
        }

        .section-title p {
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

    @media (max-width: 575px) {
        .section-title h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .section-title span {
            font-size: 38px;
        }
    }

    .shiner_animation {
        animation: shine 4s linear infinite;
        background: linear-gradient(to right, var(--heading-color) 20%, #fff 40%, var(--accent-color) 60%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .text-shadow {
        text-shadow: 0 1.6rem 3.2rem rgba(44, 49, 74, 0.16), 0 2px 4px rgba(44, 49, 74, 0.10);
    }

    p {
        text-shadow: 0 1.6rem 3.2rem rgba(44, 49, 74, 0.16), 0 2px 4px rgba(44, 49, 74, 0.10);
    }
    /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
    .hero {
        width: 100%;
        min-height: 70vh;
        position: relative;
        padding: 10px 0 60px 0;
        display: flex;
        align-items: center;
    }

        .hero h1 {
            margin: 0;
            font-size: 48px;
            font-weight: 700;
            line-height: 56px;
            color: var(--main-theme-text-color);
        }

        .hero p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 5px 0 30px 0;
            font-size: 20px;
            font-weight: 400;
        }

    .custom_button .btn-getstarted {
        border: 0px;
    }

    .call_to_action_btn {
        background: var(--main-theme-text-color) !important;
    }

    .hero .btn-get-started, .custom_button .btn-getstarted, .cta-buttons .btn-getstarted, .cta .btn-getstarted, .perm-comp-cta .btn-getstarted {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px 12px 28px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

        .hero .btn-get-started:hover, .custom_button .btn-getstarted: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%);
            }

    .hero_main_section {
        background-image: url('../../images/newpattern.png') !important;
    }

    .section_content .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: var(--default-color);
        font-weight: 600;
    }

        .section_content .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .section_content .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .section_content .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

    @media (max-width: 640px) {
        .hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        .hero p {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        .hero .btn-get-started,
        .hero .btn-watch-video {
            font-size: 13px;
        }
    }

    @keyframes up-down {
        0% {
            transform: translateY(10px);
        }

        100% {
            transform: translateY(-10px);
        }
    }
    /*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
    .featured-services {
        --surface-color: color-mix(in srgb, var(--default-color), transparent 96%);
        padding-top: 0;
    }

        .featured-services .service-item {
            background-color: var(--surface-color);
            padding: 50px 30px;
            transition: all ease-in-out 0.4s;
            height: 100%;
        }

            .featured-services .service-item .icon {
                margin-bottom: 10px;
            }

                .featured-services .service-item .icon i {
                    color: var(--accent-color);
                    font-size: 36px;
                    transition: 0.3s;
                }

            .featured-services .service-item h4 {
                font-weight: 700;
                margin-bottom: 15px;
                font-size: 20px;
            }

                .featured-services .service-item h4 a {
                    color: var(--heading-color);
                    transition: ease-in-out 0.3s;
                }

            .featured-services .service-item p {
                line-height: 24px;
                font-size: 14px;
                margin-bottom: 0;
            }

            .featured-services .service-item:hover {
                transform: translateY(-10px);
            }

                .featured-services .service-item:hover h4 a {
                    color: var(--accent-color);
                }
    /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
    .about .content h3 {
        font-size: 1.75rem;
        font-weight: 700;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            padding: 10px 0 0 0;
            display: flex;
        }

        .about .content ul i {
            color: var(--accent-color);
            margin-right: 0.5rem;
            line-height: 1.2;
            font-size: 1.25rem;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .pulsating-play-btn {
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
    }

    .video_section .pulsating-play-btn {
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
    }
    /*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
    .stats {
        padding-top: 0;
    }

        .stats .stats-item {
            padding: 30px;
            width: 100%;
        }

            .stats .stats-item span {
                font-size: 48px;
                display: block;
                color: var(--accent-color);
                font-weight: 700;
            }

            .stats .stats-item p {
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                padding: 0;
                margin: 0;
                font-family: var(--heading-font);
                font-size: 15px;
                font-weight: 600;
            }
    /*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
    .services .service-item {
        background-color: var(--surface-color);
        text-align: center;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        padding: 80px 20px;
        transition: border ease-in-out 0.3s;
        height: 100%;
    }

        .services .service-item .icon {
            margin: 0 auto;
            width: 64px;
            height: 64px;
            background: var(--accent-color);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: 0.3s;
        }

            .services .service-item .icon i {
                color: var(--contrast-color);
                font-size: 28px;
                transition: ease-in-out 0.3s;
            }

        .services .service-item h3, .step .step-content h3 {
            font-weight: 700;
            margin: 10px 0 15px 0;
            font-size: 22px;
            transition: 0.3s;
        }

        .services .service-item p {
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0;
        }

        .services .service-item:hover {
            border-color: var(--accent-color);
        }

            .services .service-item:hover h3 {
                color: var(--accent-color);
            }
    /*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
    .portfolio .portfolio-filters {
        padding: 0;
        margin: 0 auto 20px auto;
        list-style: none;
        text-align: center;
    }

        .portfolio .portfolio-filters li {
            cursor: pointer;
            display: inline-block;
            padding: 0;
            font-size: 16px;
            font-weight: 600;
            margin: 0 10px;
            line-height: 1;
            text-transform: uppercase;
            margin-bottom: 5px;
            transition: all 0.3s ease-in-out;
        }

            .portfolio .portfolio-filters li:hover,
            .portfolio .portfolio-filters li.filter-active {
                color: var(--accent-color);
            }

            .portfolio .portfolio-filters li:first-child {
                margin-left: 0;
            }

            .portfolio .portfolio-filters li:last-child {
                margin-right: 0;
            }

    @media (max-width: 575px) {
        .portfolio .portfolio-filters li {
            font-size: 14px;
            margin: 0 5px;
        }
    }

    .portfolio .portfolio-item {
        position: relative;
    }

        .portfolio .portfolio-item .portfolio-info {
            background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
            opacity: 0;
            position: absolute;
            left: 30px;
            right: 30px;
            top: 0;
            z-index: 3;
            transition: all ease-in-out 0.3s;
            padding: 15px;
        }



            .portfolio .portfolio-item .portfolio-info h4 {
                font-size: 18px;
                font-weight: 600;
                padding-right: 50px;
            }

            .portfolio .portfolio-item .portfolio-info p {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 14px;
                margin-bottom: 0;
                padding-right: 50px;
            }

            .portfolio .portfolio-item .portfolio-info .preview-link,
            .portfolio .portfolio-item .portfolio-info .details-link {
                position: absolute;
                right: 50px;
                font-size: 24px;
                top: calc(50% - 14px);
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                transition: 0.3s;
                line-height: 0;
            }

                .portfolio .portfolio-item .portfolio-info .preview-link:hover,
                .portfolio .portfolio-item .portfolio-info .details-link:hover {
                    color: var(--accent-color);
                }

            .portfolio .portfolio-item .portfolio-info .details-link {
                right: 14px;
                font-size: 28px;
            }

        .portfolio .portfolio-item:hover .portfolio-info {
            opacity: 1;
            top: 20px;
        }
    /*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        box-sizing: content-box;
        min-height: 320px;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 90px;
            border-radius: 50%;
            margin: -40px 0 0 40px;
            position: relative;
            z-index: 2;
            border: 6px solid var(--background-color);
        }

        .testimonials .testimonial-item h3 {
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0 5px 45px;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0 0 0 45px;
        }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: color-mix(in srgb, var(--accent-color), transparent 50%);
            font-size: 26px;
            line-height: 0;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
            transform: scale(-1, -1);
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 15px 0 15px;
            padding: 20px 20px 60px 20px;
            background: color-mix(in srgb, var(--default-color), transparent 97%);
            position: relative;
            border-radius: 6px;
            position: relative;
            z-index: 1;
        }

    .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: var(--background-color);
            opacity: 1;
            border: 1px solid var(--accent-color);
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
        }
    /*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
    .call-to-action {
        padding: 80px 0;
        position: relative;
        clip-path: inset(0);
    }

        .call-to-action img {
            position: fixed;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .call-to-action:before {
            content: "";
            background: color-mix(in srgb, var(--background-color), transparent 50%);
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .call-to-action .container {
            position: relative;
            z-index: 3;
        }

        .call-to-action h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--default-color);
        }

        .call-to-action p {
            color: var(--default-color);
        }

        .call-to-action .cta-btn {
            font-family: var(--heading-font);
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 12px 40px;
            border-radius: 50px;
            transition: 0.5s;
            margin: 10px;
            border: 2px solid var(--contrast-color);
            color: var(--contrast-color);
        }

            .call-to-action .cta-btn:hover {
                background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
            }
    /*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
    .team .container .row .col-lg-4 {
        margin-bottom: 8%;
    }

    .team .member {
        position: relative;
    }

        .team .member .pic {
            overflow: hidden;
            margin-bottom: 50px;
            display: none;
        }

        .team .member .member-info {
            background-color: var(--surface-color);
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            position: absolute;
            bottom: -50px;
            left: 20px;
            right: 20px;
            padding: 20px 15px;
            overflow: hidden;
            transition: 0.5s;
        }

        .team .member h4 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 16px;
            position: relative;
            padding-bottom: 10px;
        }

            .team .member h4::after {
                content: "";
                position: absolute;
                display: block;
                width: 50px;
                height: 1px;
                background: color-mix(in srgb, var(--default-color), transparent 60%);
                bottom: 0;
                left: 0;
            }

        .team .member span {
            font-style: italic;
            display: block;
            font-size: 13px;
        }

        .team .member .social {
            position: absolute;
            right: 15px;
            bottom: 15px;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

                .team .member .social a:hover {
                    color: var(--accent-color);
                }

            .team .member .social i {
                font-size: 16px;
                margin: 0 2px;
            }

    @media (max-width: 575px) {
        .team .container .row .col-lg-4 {
            margin-bottom: 15%;
        }
    }
    /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    .contact .info-wrap {
        background-color: var(--surface-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        padding: 30px;
    }

    @media (max-width: 575px) {
        .contact .info-wrap {
            padding: 20px;
        }
    }

    .contact .info-item {
        margin-bottom: 40px;
    }

        .contact .info-item i {
            font-size: 20px;
            color: var(--accent-color);
            background: color-mix(in srgb, var(--accent-color), transparent 92%);
            width: 44px;
            height: 44px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
            margin-right: 15px;
        }

        .contact .info-item h3 {
            padding: 0;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .contact .info-item p {
            padding: 0;
            margin-bottom: 0;
            font-size: 14px;
        }

    .contact_custom .info-item p {
        font-size: 16px;
    }

    .contact .info-item:hover i {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

    .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 input[type=password],
    .contact .php-email-form textarea {
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: none;
        border-radius: .75rem;
        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 input[type=password]: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 input[type=password]::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 25%);
        }
    /*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: color-mix(in srgb, var(--default-color), transparent 85%);
            opacity: 1;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
        }

    .portfolio-details .portfolio-info {
        background-color: var(--surface-color);
        padding: 30px;
        box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }
    /*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
    .starter-section {
        /* Add your styles here */
    }
    /*--------------------------------------------------------------
# Step Section
--------------------------------------------------------------*/
    .container .row_step {
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        transition: border ease-in-out 0.3s;
        border-radius: 50px;
    }

    .step {
        display: flex;
        align-items: start;
        margin-bottom: 2rem;
        position: relative;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .step-content {
        margin-left: 1rem;
    }

    .step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 25px;
        top: 55px;
        width: 2px;
        height: calc(100% - 55px);
        background: #ddd;
    }

    .calendar {
        max-width: 1200px;
    }

    .day {
        min-height: 120px;
        cursor: pointer;
        transition: transform .1s;
    }

        .day:hover {
            transform: translateY(-4px);
            box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        }

    .outside {
        color: #adb5bd !important;
    }

    .today-badge {
        position: absolute;
        top: 6px;
        right: 6px;
    }

    .calander_days {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .elegant-calencar {
        max-width: 700px;
        text-align: center;
        position: relative;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 5px;
        -webkit-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
        box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
    }

    .wrap-header {
        position: relative;
        width: 45%;
        background: var(--accent-color);
    }

    @media (max-width: 767.98px) {
        .wrap-header {
            width: 100%;
            padding: 20px 0;
        }
    }

    #header {
        width: 100%;
        position: relative;
    }

        #header .pre-button, #header .next-button {
            cursor: pointer;
            width: 1em;
            height: 1em;
            line-height: 1em;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            font-size: 18px;
        }

            #header .pre-button i, #header .next-button i {
                color: #fff;
            }

    .pre-button {
        left: 5px;
    }

    .next-button {
        right: 5px;
    }

    .head-day {
        font-size: 8em;
        line-height: 1;
        color: #fff;
    }

    .head-month {
        font-size: 2em;
        line-height: 1;
        color: #fff;
        font-size: 18px;
        text-transform: uppercase;
    }

    .calendar-wrap {
        width: 100%;
        background: #fff;
        padding: 40px 20px 20px 20px;
    }

    #calendar {
        width: 100%;
    }

        #calendar tr {
            height: 3em;
        }

    thead tr {
        color: #000;
        font-weight: 700;
    }

    tbody tr {
        color: #000;
    }

    tbody td {
        width: 14%;
        border-radius: 50%;
        cursor: pointer;
        -webkit-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        position: relative;
        z-index: 0;
    }

        tbody td:after {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            width: 44px;
            height: 44px;
            margin: 0 auto;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            border-radius: 50%;
            -webkit-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
            z-index: -1;
        }

    @media (prefers-reduced-motion: reduce) {
        tbody td:after {
            -webkit-transition: none;
            -o-transition: none;
            transition: none;
        }
    }

    tbody td:hover, .selected {
        color: #fff;
        border: none;
    }

        tbody td:hover:after, .selected:after {
            background: #2a3246;
        }

    tbody td:active {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }

    #today {
        color: #fff;
    }

        #today:after {
            background: var(--accent-color);
        }

    #disabled {
        cursor: default;
        background: #fff;
        opacity: .2;
    }

        #disabled:hover {
            background: #fff;
            color: #c9c9c9;
            opacity: .2;
        }

            #disabled:hover:after {
                /*background: transparent;*/
            }

    #reset {
        display: block;
        position: absolute;
        right: 0.5em;
        top: 0.5em;
        z-index: 999;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        padding: 1em 1.5em;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 4px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 14px;
    }

        #reset:hover {
            color: #fff;
            border-color: #fff;
        }

        #reset:active {
            -webkit-transform: scale(0.8);
            -ms-transform: scale(0.8);
            transform: scale(0.8);
        }

    .required {
        border: 2px solid red !important;
    }

    .available_demoer_div {
        display: none;
    }

    .event-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-family: 'Inter', sans-serif;
    }

    .date-box {
        background: #f5f5f5;
        border-radius: 8px;
        text-align: center;
        width: 100px;
        height: 80px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

        .date-box .month {
            background: #d9534f;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 0;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

        .date-box .day {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            padding: 6px 0;
        }

            .date-box .day:hover {
                box-shadow: unset;
                cursor: default;
            }

    .event-details {
        line-height: 1.2;
    }

        .event-details .time {
            color: #6c757d;
            font-size: 0.95rem;
        }

        .event-details .countdown {
            font-weight: 600;
            color: #000;
            font-size: 1rem;
        }

    .custom_webinar_box {
        border: 1px solid var(--accent-color);
        border-top: 0px;
        padding: 10px;
        border-bottom-left-radius: 15px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }

    .section_webinar {
        text-align: center;
        padding: 10px;
    }

    .about.section img {
        border: 1px solid transparent;
        border-radius: 1.6rem;
    }

    .hero-img img {
        border: 1px solid transparent;
        border-radius: 1.6rem;
    }
    /*registration form starts*/

    .container_index {
        /* width: 330px; */
        text-align: right;
        border-radius: 5px;
        /* padding: 10px 35px 0px; */
    }

    .progress_bar {
        display: flex;
        /* margin: 20px 0px 5px; */
        user-select: none;
    }

        .progress_bar .step_reg {
            text-align: center;
            width: 100%;
            position: relative;
            /* display: flex;
            justify-content: space-evenly; */
        }

            .progress_bar .step_reg p {
                font-weight: 500;
                font-size: 18px;
                color: var(--heading-color);
                margin-bottom: 8px;
            }

            .progress_bar .step_reg .bullet {
                height: 25px;
                width: 25px;
                border: 2px solid var(--heading-color);
                border-radius: 50%;
                position: relative;
                transition: 0.2s;
                font-weight: 500;
                font-size: 17px;
                line-height: 25px;
                background-color: white;
                color: var(--heading-color);
                display: none;
            }

                .progress_bar .step_reg .bullet.active {
                    background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
                }

                .progress_bar .step_reg .bullet span {
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .progress_bar .step_reg .bullet.active span {
                    display: none;
                }

                .progress_bar .step_reg .bullet:before,
                .progress_bar .step_reg .bullet:after {
                    position: absolute;
                    content: '';
                    bottom: 11px;
                    right: -51px;
                    height: 3px;
                    width: 44px;
                    background: #262626;
                }

                .progress_bar .step_reg .bullet.active:after {
                    background-image: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
                    transform: scaleX(0);
                    transform-origin: left;
                    animation: animate 0.3s linear forwards;
                }

    @keyframes animate {
        100% {
            transform: scaleX(1);
        }
    }

    .progress_bar .step_reg:last-child .bullet:before,
    .progress_bar .step_reg:last-child .bullet:after {
        display: none;
    }

    .progress_bar .step_reg p.active {
        color: var(--accent-color);
        transition: 0.2s linear;
    }

    .progress_bar .step_reg .check {
        position: absolute;
        left: 50%;
        top: 70%;
        font-size: 15px;
        transform: translate(-50%, -50%);
        display: none;
    }

        .progress_bar .step_reg .check.active {
            /*display: block;
      color: #fff;*/
        }

    .reg_form {
        width: 100%;
        overflow: hidden;
    }

        .reg_form .field {
            text-align: left;
            width: 60%;
        }

        .reg_form .custom_form {
            display: flex;
            width: 400%;
        }

            .reg_form .custom_form .page {
                width: 25%;
                transition: margin-left 0.3s ease-in-out;
            }

                .reg_form .custom_form .page .title {
                    font-size: 25px;
                    /* background-image: linear-gradient(to right, var(--gradient-reg-end), var(--gradient-reg-start)); */
                    font-weight: 700;
                }

            .reg_form .custom_form .slide-page {
                width: 25%;
                transition: margin-left 0.3s ease-in-out;
            }
    /* .title.custom_h3 {
        text-align: center !important;
    }
    .custom_h3 {
        background-color: rgb(170, 169, 166);
        text-align: center;
        color: white;
        opacity: 0.8;
        border-radius: 8px;
    } */
    .basic_header {
        text-align: left;
        display: flex;
        justify-content: center;
        padding: 20px;
        color: var(--accent-color);
    }

        .basic_header .title {
            margin-right: 15px;
            cursor: pointer;
        }

    .custom_row {
        justify-content: space-around;
    }

    .span_regheader {
        font-weight: 700;
        /* font-size: 25px; */
        color: var(--accent-color);
        margin-bottom: 8px;
        text-align: center;
    }

    .text-right {
        text-align: right;
    }

    .forgot a {
        text-decoration: underline;
    }

    .field_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .field_container label {
            color: var(--heading-color);
            font-weight: 500;
        }
    /*registration form ends*/
    #backAppointmentBtn {
        background: #5f687b;
    }

    .header_notice {
        padding: 0px;
    }

    .scroll-container {
        display: inline-block;
        white-space: nowrap;
        /*animation: ticker 10s linear infinite;*/
    }

        .scroll-container h5 {
            color: red;
            display: inline-block;
            background: linear-gradient(to right, red 20%, #fff 40%, red 60%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 4s linear infinite;
            font-weight: 500;
        }

    @keyframes shine {
        to {
            background-position: -200% center;
        }
    }

    @keyframes ticker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }
    /*index custom dev design*/
    .right_side_below_content {
        display: flex;
        justify-content: space-around;
        margin: 10px;
    }

    .link_span {
        color: var(--accent-color);
    }

    .sign_in_label {
        font-size: 18px;
        font-weight: 700;
    }

    .top_main_header {
        border-bottom: 1px solid #fff;
        border-bottom-left-radius: 2.6rem;
        border-bottom-right-radius: 2.6rem;
        border-top-right-radius: 2.6rem;
        border-top-left-radius: 2.6rem;
    }

    #animated-hero-text span {
        opacity: 0;
        display: inline-block;
        animation: fadeInUp 0.5s forwards;
        margin-right: 8px;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .neon {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--accent-color), 0 0 40px var(--accent-color);
    }

    .snow-area {
        position: relative;
        overflow: hidden; /* hide flakes that go out */
    }

    .header-snow-area {
        /*overflow: hidden;*/ /* hide flakes that go out */
    }
        /* Fullscreen canvas behind the page */
        .snow-area .snow-canvas, .header-snow-area .snow-canvas {
            position: absolute;
            inset: 0; /* top:0; right:0; bottom:0; left:0 */
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
    /* Make sure your content stays above the snow */
    .page-content {
        position: relative;
        z-index: 2;
    }

    .text-color-glow {
        color: #fff;
        text-shadow: 0 0 8px rgba(44, 49, 74, 0.6), 0 0 16px rgba(44, 49, 74, 0.5), 0 0 32px rgba(44, 49, 74, 0.4), 0 0 48px rgba(44, 49, 74, 0.3);
    }

    .reg_form_block {
        color: var(--accent-color);
    }
    /*Loader Style*/
    .loader {
        width: 100px;
        height: 100px;
        display: inline-block;
        position: relative;
        position: fixed;
        inset: 0;
        z-index: 999999;
        overflow: hidden;
        /*background: var(--background-color);*/
        /*background: unset;*/
        transition: all 0.6s ease-out;
    }

        .loader::after,
        .loader::before {
            content: '';
            box-sizing: border-box;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid var(--accent-color);
            position: fixed;
            top: calc(50% - 30px);
            left: calc(50% - 30px);
            animation: animloader 2s linear infinite;
        }

        .loader::after {
            animation-delay: 1s;
        }

    @keyframes animloader {
        0% {
            transform: scale(0);
            opacity: 1;
        }

        100% {
            transform: scale(1);
            opacity: 0;
        }
    }

    .hero-image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        align-items: center;
        align-items: stretch;
    }

        .hero-image-grid img {
            width: 100%;
            max-width: 350px;
            max-height: 550px;
        }
    /* Right column stacked */
    .img-right {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
    }

        .img-right img:first-child {
            width: 100%;
            height: 100%;
        }
    /* Mobile fallback */
    @media (max-width: 767px) {
        .hero-image-grid {
            grid-template-columns: 1fr;
        }

        .img-right {
            grid-template-rows: auto;
        }
    }

    .join_webinar {
        font-family: 'Raleway';
        text-shadow: 0 0 1px rgba(44, 49, 74, 0.6), 0 0 16px rgba(44, 49, 74, 0.5), 0 0 32px rgba(44, 49, 74, 0.4), 0 0 48px rgba(44, 49, 74, 0.3);
        color: var(--accent-color) !important;
    }

    .box-shadow-none {
        box-shadow: none !important;
    }

    .round_edges {
        border-radius: 1.6rem !important;
    }



    .section_hero_custom.hero {
        padding: 80px 0;
        background: #ffffff;
    }

    .section_hero_custom .hero-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
        gap: 40px;
        padding: 0 20px;
        margin-right: auto;
        /*margin-left: 20%;*/
    }
    /* LEFT CONTENT */
    .section_hero_custom .hero-content h1 {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #000000
    }

    .section_hero_custom .highlight {
        color: #2ecc71;
    }

    .hero_main_section .highlight {
        color: #2ecc71;
        font-size: 44px;
        line-height: 1.2;
        font-weight: 700;
    }

    .section_hero_custom .hero-sub {
        font-size: 16px;
        color: #555;
        max-width: 460px;
        margin-bottom: 20px;
    }

    .section_hero_custom .hero-list {
        list-style: disc;
        padding-left: 18px;
        margin-bottom: 30px;
        color: #333;
    }

        .section_hero_custom .hero-list li {
            margin-bottom: 8px;
        }

    .section_hero_custom .hero-actions {
        display: flex;
        gap: 15px;
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }
    /* BUTTONS */
    .section_hero_custom .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 22px;
        border-radius: 6px;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .section_hero_custom .btn-outline {
        border: 1px solid #d0d7ff;
        color: #333;
        background: #fff;
    }

        .section_hero_custom .btn-outline:hover {
            background: #f5f7ff;
        }

    .section_hero_custom .btn-primary {
        background: #2563eb;
        color: #fff;
    }

        .section_hero_custom .btn-primary:hover {
            background: #1e4fd8;
        }
    /* RIGHT IMAGE */
    .section_hero_custom .hero-image {
        position: relative;
        display: flex;
        top: -30px;
    }

        .section_hero_custom .hero-image img {
            position: relative;
            z-index: 2;
            max-width: 700px;
            height: auto;
        }
    /* Blue background block */
    .section_hero_custom .hero-bg {
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        width: 80%;
        height: 85%;
        /*background: #2563eb;*/
        border-radius: 0 0 0 120px;
        z-index: 1;
    }
    /* RESPONSIVE */
    @media (max-width: 991px) {
        /*.section_hero_custom .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section_hero_custom .hero-list {
        text-align: left;
        display: inline-block;
    }

    .section_hero_custom .hero-actions {
        justify-content: center;
    }

    .section_hero_custom .hero-bg {
        display: none;
    }
    .section_hero_custom .hero-image {
        position: relative;
        top:0px;
    }*/
    }

    .hero-title {
        opacity: 0;
        transform: translateY(20px);
        animation: heroFadeUp 0.9s ease-out forwards;
        font-family: var(--heading-font)
    }

        .hero-title .highlight {
            display: inline-block;
            animation: highlightPop 0.6s ease-out forwards;
            animation-delay: 0.6s;
            opacity: 0;
        }

    @keyframes heroFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes highlightPop {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .reg_btn {
        right: 0px;
        position: absolute;
    }


    .comparison-section {
        background: linear-gradient(135deg, var(--blue-start), var(--blue-end));
        color: var(--white);
        padding: 80px 20px;
        text-align: center;
        border-top-left-radius: 1.6rem;
        border-top-right-radius: 1.6rem;
        padding: 60px 0;
        scroll-margin-top: 100px;
        margin: 40px auto;
        overflow: clip;
    }

    .comparison-section-no-background-color {
        background: unset;
    }

    .comparison-section h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--white)
    }

        .comparison-section h2 span {
            color: #2BBF5A;
            font-weight: 800;
        }

    .comparison-section p.subtitle {
        opacity: 0.9;
        font-size: 15px;
        margin-bottom: 40px;
    }

    .comparison-section .cards {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .comparison-section .card-1 {
        background: #fff;
        color: #1f2937;
        border-radius: 12px;
        padding: 24px;
        width: 520px;
        text-align: left;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .comparison-section .card-header-1 {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
        align-items: flex-start;
        flex-direction: column;
    }

    .comparison-section .card-1 li {
        color: #000000;
    }

    .comparison-section .icon {
        width: 55px;
        height: 55px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
    }

        .comparison-section .icon.green {
            background: var(--green);
        }

        .comparison-section .icon.blue {
            background: var(--blue-start);
        }

    .comparison-section .card-1 h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
    }

    .comparison-section .card-1 ul {
        margin: 0;
        padding-left: 18px;
    }

    .comparison-section .card-1 li {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.5;
    }

    .comparison-section .flow {
        font-size: 14px;
        font-weight: 500;
        opacity: 0.95;
        margin-top: 20px;
    }

        .comparison-section .flow span {
            margin: 0 6px;
        }

        .comparison-section .flow .highlight {
            color: #2BBF5A;
            font-weight: 700;
        }

    @media (max-width: 768px) {
        .comparison-section .comparison-section h2 {
            font-size: 24px;
        }

        .comparison-section .card-1 {
            width: 100%;
            max-width: 360px;
        }
    }


    :root {
        --blue: #2563eb;
        --blue-dark: #1e40af;
        --green: #22c55e;
        --gray: #6b7280;
        --border: #e5e7eb;
    }


    .roles-section {
        max-width: 1100px;
        margin: 0 auto;
        padding: 80px 20px;
        text-align: center;
    }

        .roles-section h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 12px;
        }

            .roles-section h2 .green {
                color: var(--green);
            }

    .first-attorney-section h3 .green {
        color: var(--green);
    }

    .first-attorney-section ul li::before {
        content: "\f26f";
        font-family: "bootstrap-icons";
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: normal !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -.125em;
        -webkit-font-smoothing: antialiased;
        color: var(--green);
        margin-right: 0.5rem;
        line-height: 1.2;
        font-size: 1.25rem;
    }

    .roles-section p {
        max-width: 720px;
        margin: 0 auto 48px;
        font-size: 15px;
        color: var(--gray);
        line-height: 1.6;
    }

    .roles-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .role-card {
        width: 100%;
        max-width: 220px;
        height: 140px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .role-card.white {
            background: #fff;
            border: 1px solid var(--border);
            color: #111827;
        }

        .role-card.blue {
            background: linear-gradient(180deg, var(--blue), var(--blue-dark));
            color: #fff;
        }

        .role-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

    .icon-box {
        width: 55px;
        height: 55px;
        border-radius: 8px;
        background: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
    }

    .cta {
        margin-top: 50px;
    }

        .cta a {
            display: inline-block;
            padding: 14px 26px;
            border-radius: 6px;
            background: var(--blue);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.2s ease;
        }

            .cta a:hover {
                background: var(--blue-dark);
            }

    .offset-start {
        grid-column-start: 2;
    }


    @media (max-width: 992px) {
        .roles-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .roles-grid {
            grid-template-columns: 1fr;
        }
    }

    :root {
        --muted: rgba(255,255,255,0.85);
        --divider: rgba(255,255,255,0.15);
    }

    .perm-section {
        margin: 40px auto;
        border-top-left-radius: 1.6rem;
        border-top-right-radius: 1.6rem;
        /*background: linear-gradient(135deg, var(--blue-start), var(--blue-end));
    color: var(--white);*/
        padding: 70px 40px 80px;
        position: relative;
        overflow: hidden;
    }

    .perm-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
    }

        .perm-header h2 {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 12px;
        }

            .perm-header h2 span {
                color: var(--green);
            }

        .perm-header p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
    }

    .feature {
        padding: 36px 28px;
        min-height: 190px;
    }
        /* grid dividers */
        .feature:not(:nth-child(3n)) {
            border-right: 1px solid var(--divider);
        }

        .feature:nth-child(-n+3) {
            border-bottom: 1px solid var(--divider);
        }

    .feature-icon {
        width: 55px;
        height: 55px;
        border-radius: 8px;
        background: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .feature h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 8px;
    }

    .feature p {
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
    }
    /* Responsive */
    @media (max-width: 992px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .feature {
            border-right: none !important;
        }

        .feature {
            border-bottom: 1px solid var(--divider);
        }
    }

    @media (max-width: 576px) {
        .features-grid {
            grid-template-columns: 1fr;
        }

        .feature {
            border-bottom: 1px solid var(--divider);
        }

        .perm-section {
            padding: 50px 24px 60px;
        }
    }

    .steps-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 20px 90px;
        text-align: center;
    }

    .steps-header h2 {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 12px;
    }

        .steps-header h2 span {
            color: var(--green);
        }

    .steps-header p {
        max-width: 760px;
        margin: 0 auto 60px;
        font-size: 15px;
        color: var(--gray);
        line-height: 1.6;
    }

    .steps-layout {
        display: grid;
        grid-template-columns: 1fr 360px 1fr;
        align-items: center;
        gap: 40px;
    }

    .steps-column {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .step-card {
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 20px 22px;
        text-align: left;
        background: #fff;
        width: 269px;
        height: 250px;
    }

    .step-number {
        font-weight: 700;
        color: var(--green);
        margin-bottom: 6px;
        font-size: 32px;
    }

    .step-card h3 {
        margin: 0 0 6px;
        font-size: 25px;
        font-weight: 700;
    }

    .step-card p {
        margin: 0;
        font-size: 15px;
        color: var(--gray);
        line-height: 1.5;
    }

    .center-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .green-bg {
        width: 220px;
        height: 280px;
        /*background: var(--green);*/
        border-radius: 40px;
        position: absolute;
        z-index: 0;
    }

    .person-img {
        width: 260px;
        position: relative;
        z-index: 1;
    }

    .cta-buttons {
        margin-top: 60px;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--blue);
        color: #fff;
        padding: 14px 26px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-outline {
        border: 1px solid var(--blue);
        color: var(--blue);
        padding: 14px 26px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
    }
    /* Responsive */
    @media (max-width: 992px) {
        .steps-layout {
            grid-template-columns: 1fr;
        }

        .steps-column {
            align-items: center;
        }

        .step-card {
            max-width: 420px;
        }

        .center-visual {
            margin: 30px 0;
        }
    }

    @media (max-width: 992px) {
        .steps-column.align-items-end {
            align-items: stretch !important; /* or center */
        }
    }

    .container_custom_width {
        max-width: 997px;
    }

    .flexibility-section {
        padding: 70px 0;
        background: #ffffff;
    }

        .flexibility-section h2 {
            font-weight: 700;
        }

        .flexibility-section .highlight {
            color: #28c76f;
        }

        .flexibility-section p.lead {
            max-width: 720px;
            margin: 15px auto 50px;
            color: #6c757d;
        }

    .flex-card {
        border: 1px solid #e9ecef;
        border-radius: 10px;
        padding: 30px 25px;
        height: 100%;
        transition: all 0.3s ease;
        background: #fff;
    }

        .flex-card:hover {
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
            transform: translateY(-4px);
        }

    .flex-icon {
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background: #28c76f;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .flex-card h5 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .flex-card p {
        color: #6c757d;
        font-size: 15px;
        margin-bottom: 0;
    }


    .attorney-section {
        padding: 60px 0;
        /*background: linear-gradient(135deg, var(--blue-start), var(--blue-end));*/
        border-top-left-radius: 1.6rem;
        border-top-right-radius: 1.6rem;
        background: #f6f7f7;
        border-radius: 1.8rem;
        border-top-left-radius: 80px;
        border-top-right-radius: 1.6rem;
    }

    .attorney-card {
        max-width: 1100px;
        margin: auto;
        /*padding: 50px;*/
    }

    .attorney-grid {
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 45px;
        align-items: center; /* IMPORTANT */
    }
    /* Image side */
    .attorney-image {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 360px; /* controls card height */
        display: flex;
        align-items: center;
        justify-content: center;
    }
        /* Green background shape */
        .attorney-image .image-bg {
            position: absolute;
            inset: 0; /* fills the grid column */
            background: #2BBF5A;
            border-radius: 65px;
            border-top-left-radius: 0;
            border-bottom-right-radius: 10px;
            z-index: 1;
            width: 305px;
            top: 115px;
        }
        /* Actual image */
        .attorney-image img {
            width: 100%;
            height: 100%;
            max-width: 400px; /* keeps portrait proportions */
            object-fit: cover;
            border-radius: 16px;
            z-index: 2;
            border-top-left-radius: 75px;
        }
    /* Content side */
    .attorney-content h3 {
        font-weight: 700;
        margin-bottom: 15px;
    }

        .attorney-content h3 span {
            color: #2BBF5A;
            font-weight: 600;
        }

    .attorney-content p {
        /*color: #e3e9ff;*/
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .attorney-content ul {
        padding-left: 18px;
        margin-bottom: 20px;
        text-align: justify;
    }

        .attorney-content ul li {
            margin-bottom: 8px;
        }

    .attorney-content .signature {
        margin-top: 20px;
        margin-top: 20px;
        font-size: 18px;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .attorney-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .attorney-image {
            margin-bottom: 30px;
        }

            .attorney-image .image-bg {
                left: 50%;
                transform: translateX(-50%);
            }
    }


    .perm-hero {
        padding: 60px 30px;
        background: linear-gradient(135deg, var(--blue-start), var(--blue-end));
        border-top-left-radius: 1.6rem;
        border-top-right-radius: 1.6rem;
    }

    .perm-hero-inner {
        max-width: 1200px;
        margin: auto;
        border-radius: 20px;
        padding: 60px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
    }
    /* Text */
    .perm-hero-content h1 {
        font-size: 34px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.25;
        margin-bottom: 20px;
    }

        .perm-hero-content h1 span {
            color: #28c76f;
        }

    .perm-hero-content p {
        color: #e4ebff;
        max-width: 520px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    /* Buttons */
    .perm-hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }

        .perm-hero-actions .btn {
            padding: 10px 18px;
            border-radius: 6px;
            font-size: 15px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            justify-content: space-around;
            gap: 8px;
        }

        .perm-hero-actions .btn-outline {
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.6);
            background: transparent;
        }

            .perm-hero-actions .btn-outline:hover {
                background: rgba(255,255,255,0.12);
            }

        .perm-hero-actions .btn-solid {
            background: #2BBF5A;
            color: #ffffff;
        }

            .perm-hero-actions .btn-solid:hover {
                background: #2BBF5A;
            }
    /* Image */
    .perm-hero-image {
        display: flex;
        justify-content: center;
    }

        .perm-hero-image img {
            width: 100%;
            max-width: 380px;
            height: auto;
            border-radius: 0 1.6rem 1.6rem 1.6rem;
            object-fit: cover;
        }
    /* Responsive */
    @media (max-width: 900px) {
        .perm-hero-inner {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .perm-hero-content p {
            margin-left: auto;
            margin-right: auto;
        }

        .perm-hero-actions {
            justify-content: center;
        }

        .perm-hero-image img {
            max-width: 300px;
            border-radius: 0 1.6rem 1.6rem 1.6rem;
        }
    }


    .perm-journey-wrapper {
        background: #f7f9fc;
        padding: 60px 0;
        border-top-left-radius: 1.6rem;
        border-top-right-radius: 1.6rem;
    }

    .perm-journey-image {
        position: relative;
        text-align: center;
    }

    .perm-journey-bg {
        position: absolute;
        width: 290px;
        height: 365px;
        background: #2BBF5A;
        border-radius: 1.6rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .perm-journey-image img {
        position: relative;
        z-index: 1;
        max-width: 100%;
        height: auto;
    }

    .perm-journey-title {
        font-weight: 700;
        font-size: 28px;
    }

        .perm-journey-title span {
            color: #2BBF5A;
        }

    .perm-journey-list {
        padding-left: 18px;
    }

        .perm-journey-list li {
            margin-bottom: 6px;
        }

    .btn-perm-journey {
        background: #2563eb;
        border: none;
        padding: 10px 22px;
        font-weight: 600;
    }

    .transparent_btn {
        border: 1px solid #d0d7ff;
        color: #333 !important;
        background: #fff !important;
    }

    .img-fluid-custom {
        border-radius: 1.6rem;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
    }

    .img-fluid-webinar {
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
    }
    /* ===== PERM COMPLICATED SECTION ===== */
    .perm-comp-wrapper {
        padding: 80px 0;
        background: #ffffff;
    }

    .perm-comp-heading {
        text-align: center;
        margin-bottom: 50px;
    }

        .perm-comp-heading h2 {
            font-weight: 700;
            font-size: 32px;
        }

        .perm-comp-heading .highlight {
            color: #2BBF5A;
        }

    .perm-comp-card .highlight {
        color: #2BBF5A;
    }

    .span_regheader .highlight {
        color: #2BBF5A;
    }

    .perm-comp-heading p {
        max-width: 650px;
        margin: 12px auto 0;
        color: #8b8b8b;
        font-size: 15px;
    }

    .perm-comp-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 24px;
        height: 100%;
    }

        .perm-comp-card img {
            width: 100%;
            border-radius: 8px;
            margin: 12px 0 18px;
        }

        .perm-comp-card h4 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .perm-comp-card ol {
            padding-left: 18px;
        }

        .perm-comp-card li {
            margin-bottom: 16px;
            font-size: 14px;
        }

        .perm-comp-card strong {
            display: block;
            margin-bottom: 4px;
        }

    .perm-solution-card {
        background: linear-gradient(135deg, var(--blue-start), var(--blue-end));
        color: #fff;
        border-radius: 14px;
        padding: 28px;
        height: 100%;
    }

        .perm-solution-card h4 {
            font-weight: 700;
            margin-bottom: 14px;
            color: #fff;
        }

        .perm-solution-card .brand {
            color: #2BBF5A;
        }

        .perm-solution-card img {
            width: 100%;
            border-radius: 10px;
            margin: 16px 0;
            background: #fff;
            padding: 8px;
        }

        .perm-solution-card ul {
            padding-left: 18px;
        }

        .perm-solution-card li {
            margin-bottom: 6px;
            font-size: 14px;
        }

    .perm-comp-cta {
        text-align: center;
        margin-top: 45px;
    }

        .perm-comp-cta a {
            background: #2563eb;
            color: #fff;
            padding: 12px 26px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
        }

    .section_bg {
        background-image: url('../../images/newfolder/service-list-bg-shape.svg');
    }

    :root {
        --custom-animation-primary-color: #B68C5A;
        --custom-animation-primary-shadow: 0px 4px 30px -1px #CBA6724D;
    }

    .banner-img {
        position: relative;
        padding-top: 49px;
    }

    .right-animation {
        -webkit-animation-name: right-animation;
        animation-name: right-animation;
        transform-style: preserve-3d;
    }

    .banner-img:before {
        content: '';
        position: absolute;
        top: 88px;
        left: -18%;
        transform: translate(-50%);
        width: 81.134%;
        aspect-ratio: 1 / 1.1163;
        background: var(--custom-animation-primary-color);
        opacity: 0.1;
        border-radius: 59% 41% 35% 65% / 53% 36% 64% 47%;
        animation: right-animation 8s linear infinite alternate;
        z-index: 0;
    }

    .banner-img:after {
        content: '';
        position: absolute;
        top: 88px;
        left: -18%;
        transform: translate(-50%);
        width: 100%;
        aspect-ratio: 1 / 0.87108;
        background: transparent;
        border: 1px solid var(--custom-animation-primary-color);
        border-radius: 71% 29% 34% 66% / 33% 36% 64% 67%;
        animation: right-animation 5s linear infinite alternate;
        z-index: 2;
    }

    .banner-img img {
        position: relative;
        z-index: 5;
    }

    @keyframes right-animation {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(5vw, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
            transform: translate3d(5vw, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        }

        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }

    @-webkit-keyframes right-animation {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(5vw, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
            transform: translate3d(5vw, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        }

        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }

    .section_custom_img img {
        border-radius: 2.6rem !important;
        border-top-left-radius: 5.6rem !important;
        width: 488px;
        height: 371px;
    }
    /*.section_hero_custom .hero-image {
    width: 100%;
    height: 500px;*/ /* REQUIRED */
    /*position: relative;
    left: 10%;
    top: -100px;
    overflow: hidden;
}

    .section_hero_custom .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/

    .scrolled .header .logo {
        margin-right: 20% !important;
    }