/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

: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: "Ubuntu", sans-serif;
    --nav-font: "Rubik", sans-serif;
}

:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #3b5353;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #193838;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0077b6;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #3b5353;
    /* The default color of the main navmenu links */
    --nav-hover-color: #0077b6;
    /* 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: #3b5353;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #00a19e;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

body {
    background: #f9f9f9;
}

/* Global Style */
.section-title {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header .subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.section-header .intro-text {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.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;
    text-transform: uppercase;
    line-height: 1;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* End Global Style */


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .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;
    }
}

a {
    text-decoration: none !important;
}


.btn-getstarted {
    text-decoration: none;
}

.btn-getstarted,
.btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
    font-size: 12px;
}

.dropdown ul {
    margin: 0;
    list-style: none;
    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);
}

.dropdown ul li {
    min-width: 200px;
}

.dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
}

.dropdown ul a i {
    font-size: 12px;
}

.dropdown ul a:hover,
.dropdown ul .active:hover,
.dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
}

.dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
}

.dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
}

@media (max-width: 1199px) {

    .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;
    }

    .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--surface-color) 0%,
            color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    position: relative;
    overflow: hidden;
}
.hero-section .hero-content {
    margin-top: 120px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--heading-color);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 48px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    .hero-section {
        margin-top: 120px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
}

.hero-stats {
    display: flex;
    gap: 48px;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.hero-stats .stat-item .stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    color: #555;
    margin-top: 15px;
    margin-bottom: 30px;
}

.hero-buttons .btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
}

.hero-buttons .btn-outline-secondary {
    margin-left: 15px;
    padding: 12px 25px;
    border-radius: 8px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 100%;
}

/* Floating boxes */
.floating-box {
    position: absolute;
    background: var(--surface-color);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.box-1 {
    top: 5%;
    left: 40%;
}

.box-2 {
    bottom: 40%;
    left: 0;
}

.box-3 {
    bottom: 34%;
    right: -5%;
}

/* End Hero Section */


/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section p {
    color: #555;
}

.stats-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.stats-box h3 {
    color: var(--accent-color);
    font-weight: 700;
}

.about-images {
    position: relative;
}

.about-images img {
    border-radius: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.overlay-card {
    position: absolute;
    bottom: 34%;
    left: 0%;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


@media (max-width: 992px) {
    .overlay-card {
        position: static;
        margin-top: 2rem;
        max-width: none;
    }
}

.overlay-card .card-content {
    position: relative;
}

.overlay-card .card-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: var(--heading-color);
}

.overlay-card .card-content p {
    margin: 0;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.5;
}

.overlay-card .card-content .card-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-card .card-content .card-icon i {
    font-size: 1.125rem;
}

.floating-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #555;
}

.features-section {
    padding: 3rem 0;
    background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
    border-radius: 12px;
    margin-top: 2rem;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-box .feature-icon:hover {
    transform: translateY(-5px);
}

.feature-box h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 600;
}

.feature-box p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
    margin: 0;
}

/* End About Section */

/* Feature Section */
#features {
    padding: 60px 0;
}

.features .tabs-wrapper {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-tabs {
    border: 0;
    gap: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .features .nav-tabs {
        flex-direction: column;
        gap: 15px;
    }
}

.features .nav-item {
    flex: 1;
    min-width: 0;
}

@media (max-width: 992px) {
    .features .nav-item {
        flex: none;
    }
}

.features .nav-link {
    background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 80px;
    cursor: pointer;
}

.features .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

@media (max-width: 768px) {
    .features .nav-link {
        padding: 20px 15px;
        min-height: 70px;
    }
}

.features .nav-link .tab-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features .nav-link .tab-icon i {
    font-size: 24px;
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .features .nav-link .tab-icon {
        width: 40px;
        height: 40px;
    }

    .features .nav-link .tab-icon i {
        font-size: 20px;
    }
}

.features .nav-link .tab-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.features .nav-link .tab-content h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .features .nav-link .tab-content h5 {
        font-size: 14px;
    }
}

.features .nav-link .tab-content span {
    font-size: 11px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .features .nav-link .tab-content span {
        font-size: 12px;
    }
}

.features .nav-link:hover {
    transform: translateY(-3px);
    border-color: transparent;
    border-radius: 20px;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link:hover::before {
    opacity: 1;
}

.features .nav-link:hover .tab-icon {
    background: var(--contrast-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover .tab-icon i {
    color: var(--accent-color);
}

.features .nav-link:hover .tab-content h5,
.features .nav-link:hover .tab-content span {
    color: var(--contrast-color);
}

.features .nav-link.active {
    border-color: var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link.active::before {
    opacity: 1;
}

.features .nav-link.active .tab-icon {
    background: var(--contrast-color);
}

.features .nav-link.active .tab-icon i {
    color: var(--accent-color);
}

.features .nav-link.active .tab-content h5,
.features .nav-link.active .tab-content span {
    color: var(--contrast-color);
}

.features .tab-content .tab-pane {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .features .tab-content .tab-pane {
        padding: 20px 0;
    }
}

.features .content-wrapper {
    padding-right: 40px;
}

@media (max-width: 992px) {
    .features .content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.features .content-wrapper .icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .icon-badge i {
    font-size: 30px;
    color: var(--contrast-color);
}

.features .content-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .features .content-wrapper h3 {
        font-size: 24px;
    }
}

.features .content-wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
}

.features .content-wrapper .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .features .content-wrapper .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.features .content-wrapper .feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.features .content-wrapper .feature-grid .feature-item i {
    font-size: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.features .content-wrapper .feature-grid .feature-item span {
    font-size: 14px;
    color: var(--default-color);
    line-height: 1.4;
}

.features .content-wrapper .stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .features .content-wrapper .stats-row {
        gap: 20px;
    }
}

.features .content-wrapper .stats-row .stat-item {
    text-align: center;
}

.features .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

@media (max-width: 576px) {
    .features .content-wrapper .stats-row .stat-item .stat-number {
        font-size: 20px;
    }
}

.features .content-wrapper .stats-row .stat-item .stat-label {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features .content-wrapper .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    color: var(--contrast-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.features .content-wrapper .btn-primary:hover i {
    transform: translateX(5px);
}

.features .content-wrapper .btn-primary i {
    transition: transform 0.3s ease;
}

.features .visual-content {
    position: relative;
}

.features .visual-content .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.feature-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features .visual-content .main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.features .visual-content .main-image:hover img {
    transform: scale(1.05);
}

.features .visual-content .floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--surface-color);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
    .features .visual-content .floating-card {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
        gap: 10px;
    }
}

.features .visual-content .floating-card i {
    font-size: 28px;
    color: var(--accent-color);
}

@media (max-width: 576px) {
    .features .visual-content .floating-card i {
        font-size: 24px;
    }
}

.features .visual-content .floating-card .card-content span {
    display: block;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.features .visual-content .floating-card .card-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 576px) {
    .features .visual-content .floating-card .card-content strong {
        font-size: 14px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End Feature Section */

/* Security Section */
.security-section {
    padding: 60px 0;
    background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
}

.feature-card .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color:
        color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-bottom: 20px;
}

.feature-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 30px !important;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.features-2 .feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-2 .feature-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.features-2 .feature-image img:hover {
    transform: scale(1.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.feature-card .icon-box i {
    font-size: 28px;
    color: var(--accent-color);
}

.feature-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.feature-card .feature-list li i {
    color: var(--accent-color);
}

.feature-card .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 15px;
}

.feature-card .feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.compliance-cards {
    padding-top: 30px !important;
}

.compliance-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.feature-card .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-bottom: 20px;
}

.compliance-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.compliance-card .status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.compliance-card .status.in-progress {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.compliance-card .status.compliant {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.compliance-card .status.planned {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* End Security Section */

/* Single Testimonial */
.single-testimonial-container {
    padding: 60px 0;
}

.single-testimonial-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 12px;
    padding: 0px 60px !important;
}

.quote-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 1.75rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.testimonial-author {
    margin-top: 15px;
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.testimonial-author small {
    color: #777;
}

.single-testimonial-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.single-testimonial-image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* End Single Testimonial */

/* Call to Action */
/* CTA Section */
.cta-section {
    background: linear-gradient(120deg, var(--surface-color) 0%, var(--accent-color) 12%, var(--surface-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* Image + Floating Card */
.cta-visual {
    flex: 1 1 45%;
    position: relative;
}

.cta-main-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease;
}

.cta-main-img:hover {
    transform: translateY(-6px);
}

.cta-float-box {
    position: absolute;
    bottom: 10%;
    left: -25px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-float-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.cta-float-box h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cta-float-box p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Content */
.cta-content {
    flex: 1 1 50%;
}

.cta-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.cta-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.cta-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    background: var(--accent-color-dark, #444);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-row {
        flex-direction: column;
        text-align: center;
    }

    .cta-visual,
    .cta-content {
        flex: 1 1 100%;
    }

    .cta-float-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}
/* 
@media (max-width: 768px) {
    .single-testimonial-content {
        margin-top: 20px !important;
    }
} */
@media (max-width: 576px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* End Call to Action */

/* Partners */
#clients {
    padding: 60px 0;
}
.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/* End Partners */

/* Testimonial Section */
.reviews-section {
    background: linear-gradient(180deg, #fafafa, #fff);
    padding: 80px 0;
    text-align: center;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-card.highlight {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fff, rgba(0, 0, 0, 0.02));
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* End Testimonial Secton */

/* Stats */
.main-headline {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.main-description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-badge {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
    border-radius: 2rem;
    padding: 1.25rem 2rem;
    display: inline-block;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.achievement-badge .achievement-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.achievement-badge .achievement-icon {
    background: var(--contrast-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-badge .achievement-icon i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.achievement-badge .achievement-details {
    color: var(--contrast-color);
}

.achievement-badge .achievement-title {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 0.25rem;
}

.achievement-badge .achievement-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.counter-section {
    background: linear-gradient(135deg, var(--surface-color) 0%,
            color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 60px 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.counter-section .main-title {
    color: #555;
    margin-bottom: 100px;
    text-align: center;
}

.counter-count {
    text-align: center;
}

.counter-count .stat-label {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.counter-count .stat-label {
    color: var(--heading-color);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 1rem;
}

.counter-count .count {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #6366f1;
    border-radius: 100%;
    color: var(--accent-color);
    display: flex;
    flex-direction: column;
    font-size: 60px;
    font-weight: 700;
    justify-content: center;
    height: 180px;
    margin: 0 auto 20px;
    width: 220px;
}

.counter-count h3 {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .counter-count .count {
        height: 120px;
        font-size: 40px;
        width: 120px;
    }
}

/* End Stats */
/* Service Section */
/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
}

.services-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-section .section-header .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.services-section .section-header .intro-text {
    font-size: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.service-box .icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.service-box p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
}

/* CTA */
.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-color), #6c63ff);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }

    .services-section .section-header h2 {
        font-size: 2rem;
    }
}

/* End Service Section */
/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

/* Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.pricing-toggle span {
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: var(--default-color);
    opacity: 0.6;
}

.pricing-toggle span.active {
    color: var(--heading-color);
    opacity: 1;
}

.pricing-toggle .save-tag {
    background: var(--accent-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 4px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    display: none;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--accent-color);
    opacity: 0.3;
    border-radius: 30px;
    transition: 0.3s;
}

.switch .slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked+.slider {
    opacity: 1;
}

.switch input:checked+.slider::before {
    transform: translateX(24px);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pricing-card .icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pricing-card .plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.pricing-card .plan-subtitle {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 1.5rem;
}

.pricing-card .price-wrap {
    margin-bottom: 1.5rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading-color);
    display: none;
}

.pricing-card .price sup {
    font-size: 1rem;
    top: -0.4em;
    position: relative;
}

.pricing-card .price .period {
    font-size: 14px;
    color: var(--muted, #888);
    margin-left: 4px;
}

/* Features */
.pricing-card .features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    text-align: left;
}

.pricing-card .features li {
    font-size: 0.95rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .features i {
    color: var(--accent-color);
}

/* Button */
.pricing-card .btn-choose {
    display: block;
    padding: 12px 18px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

.pricing-card .btn-choose:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Featured Plan */
.pricing-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(160deg, #ffffff 0%, #f3f0ff 100%);
}

.pricing-card.featured .btn-choose {
    background: var(--accent-color);
    color: #fff;
}

.pricing-card.featured .btn-choose:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
}

.pricing-card .badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 8px;
    border-radius: 8px;
}

/* End Pricing */
/* FAQ */
.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px 20px 20px 24px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    margin: 0 35px 0 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
    padding-right: 28px;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 22px;
    right: 20px;
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
}
#faq {
    padding: 60px 0 !important;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

/* Active State */
.faq .faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    border-color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    margin-top: 8px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/* Contact */
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact .content h2 {
    font-weight: 700;
    line-height: 1.2;
}

.contact .content .lead {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
    font-size: 1.1rem;
}

.contact .contact-info .info-item i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.contact .contact-info .map-link {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
    transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
    color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
    transform: translateX(5px);
}

.contact .contact-form {
    background-color: var(--surface-color);
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.75rem 1.25rem;
    border-color: #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn-submit {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
    transform: translateY(0);
}

#contact {
    color: var(--default-color);
    background-color: #F0F6F5;
    padding: 60px 0 !important;
    scroll-margin-top: 90px;
    overflow: clip;
}

/* End Contact Us */
/* Footer */
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    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 {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/* End Footer */