/* ========= Css Table of Contents ========== */

/** 
 * ================================
 * CSS TABLE OF CONTENTS
 * ================================
 * 
 * 01. Import Vendor
 * 02. Root Variable
 * 03. Keyframes Animation
 * 04. Typography
 * 05. Reset & Base
 * 06. Container
 * 07. Grid System
 * 08. Header
 * 09. Navigation
 * 10. Hero Section
 * 11. Banner
 * 12. About Section
 * 13. Services Section
 * 14. Features Section
 * 15. Portfolio Section
 * 16. Gallery
 * 17. Team Section
 * 18. Testimonials
 * 19. Pricing Table
 * 20. FAQ Section
 * 21. Blog Section
 * 22. Single Blog
 * 23. Contact Section
 * 24. Newsletter
 * 25. Call To Action
 * 26. Footer
 * 27. Copyright
 * 28. Button Styles
 * 29. Form Styles
 * 30. Card Styles
 * 31. Modal & Popup
 * 32. Tabs
 * 33. Accordion
 * 34. Progress Bar
 * 35. Pagination
 * 36. Breadcrumb
 * 37. Sidebar
 * 38. Scroll To Top
 * 39. Preloader
 * 40. Mobile Responsive
 */

/* 01. Import Vendor */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('vendor/font-family-instrument-sans.css');
@import url('vendor/font-family-inter.css');
@import url('vendor/bootstrap.min.css');
@import url('vendor/fontawesome.css');
@import url('vendor/brands.css');
@import url('vendor/regular.css');
@import url('vendor/solid.css');
@import url('vendor/swiper-bundle.min.css');
@import url('vendor/odometer-theme-default.css');
@import url('vendor/animate.min.css');


/* 02. Root Variable */
:root{
    --primary: #141414;
    --secondary: #FFFFFF;
    --text-color: #2F2F2F;
    --accent-color: #A293FF; 
    --accent-color-2: #3280CF;
    --accent-color-3: #FAFAFA;
    --accent-color-4: #F1F3FD;
    --accent-color-5: #BDBDBD69;
    --accent-color-6: #1414149C;
    --accent-color-transparent: #FFFFFF00;
    --font-1: "Space Grotesk", "Instrument Sans", sans-serif;
    --font-2: "Inter", sans-serif; 
    --global-border-radius: 20px 20px 20px 20px;
    --animation-normal: 1.25s;
    --animation-slow: 2s;
    --animation-fast: 0.75s;
}

/* 03. Keyframes Animation */
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(var(--value))
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInNav {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 04. Base Elements */
html {
    scroll-behavior: smooth;
}

body{
    font-family: var(--font-2);
    color: var(--primary);
    
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15em;
}

h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15em;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
}

h4 {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2em;
}

h5{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3em;
}

h6 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3em;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-1);
}

button, a{
    font-size: 15.008px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-1);
}

p {
    font-size: 15px;
    font-family: var(--font-2);
    margin-bottom: 0;
    line-height: 1.6em;
}

ul{
    list-style: none;
}

/* 05. Container Elements */

.section {
    padding: 2.5em 1em 2.5em 1em;
    background-position: center;
}
.section-banner-home{
    padding: 8em 1em 0em 1em;
    margin-top: 80px;
}
.section-banner-inner{
    padding: 7em 1em 2.5em 1em;
}
.section-banner-404{
    padding: 10em 1em 6em 1em;
}
.section-partner{
    padding: 10em 1em 1.5em 1em;
}

.section-footer{
    padding: 2em 1em 1em 1em;
}

.hero-container {
    max-width: 1140px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}


/* 06. Navbar Components */

.navbar-layout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75em 1em 0.75em 1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInNav 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    padding: 0.75em 1.75em;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: solid 1px rgba(189, 189, 189, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.navbar:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

.navbar-layout.scrolled .navbar {
    padding: 0.6em 1.75em;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.nav-btn{
    display: none;
    padding: 12px 12px 12px 12px;
    width: 45px;
    height: auto;
    line-height: 1em;
    background-color: transparent;
    color: var(--secondary);
    background-image: linear-gradient(135deg, #8B7AE8 0%, #6B5AE6 50%, #4A3D9E 100%);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 5px 5px 5px 5px;
    margin-left: auto;
}

.nav-btn:hover, 
.nav-btn:focus{
    background-color: transparent;
    color: var(--secondary);
    background-image: linear-gradient(135deg, #9D88FF 0%, #7C6AE8 50%, #5A4DB8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 122, 232, 0.3);
}

.navbar-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px 30px;
    width: 100%;
}

.navbar-nav .nav-link:focus {
    color: var(--accent-color-2);
}

.nav-link {
    font-size: 16px;
    font-family: var(--font-1);
    font-weight: 500;
    color: var(--primary);
    line-height: 1em;
    padding: 0px 8px 0px 8px !important;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-link:nth-child(1) { animation-delay: 0.3s; }
.nav-link:nth-child(2) { animation-delay: 0.35s; }
.nav-link:nth-child(3) { animation-delay: 0.4s; }
.nav-link:nth-child(4) { animation-delay: 0.45s; }
.nav-link:nth-child(5) { animation-delay: 0.5s; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B7AE8 0%, #6B5AE6 50%, #4A3D9E 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover{
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: calc(100% - 20px);
}

.nav-link.active,
.nav-link:focus{
    color: var(--accent-color) !important;
}

.nav-link.active::after,
.nav-link:focus::after {
    width: calc(100% - 20px);
}

.navbar-collapse-wrapper{
    display: flex;
    flex-direction: row;
    width: 60%;
    height: 100%;
}

.navbar-collapse{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 1em 0em;
    min-width: 220px;
    border-radius: 15px 15px 15px 15px;
}

.dropdown-item {
    padding-block: 0.75rem;
    color: var(--primary);
    font-family: var(--font-1);
    font-size: 18px;
    font-weight: 600;
    padding-inline: 0.75rem;
}

.dropdown-item.active {
    color: var(--accent-color);
    background-color: transparent;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.dropdown-item:focus {
    color: var(--accent-color-1);
}

.dropdown-toggle::after {
    display: none !important;
}

.navbar-button-container {
    display: flex;
    align-items: center;
}


/* 07. Sidebar Components */

.sidebar-overlay{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    transition: left 0.4s ease-in-out;
    z-index: 4;
}

.sidebar-overlay.active{
    left: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--secondary);
    color: var(--primary);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    max-height: 100vh;
    padding: 0px 16px 0px 5px;
}

.sidebar.active{
    transform: translateX(300px);
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 20px 20px 20px;
}

.sidebar-header .logo {
    width: 75%;
}

.close-btn {
    display: inline-block;
    justify-content: center;
    border: none;
    border-radius: 5px 5px 5px 5px !important;
    font-size: 21.008px;
    font-weight: 500;
    line-height: 1.125em;
    position: relative;
    cursor: pointer;
    padding: 12px 12px 12px 12px;
    width: 45px;
    transition: all 0.4s;
}

.menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.menu li {
    margin-bottom: 10px;
}

.menu a {
    color: var(--primary);
    text-decoration: none;
    padding: 10px 10px 10px 10px;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 18px;
    line-height: 1em;
    font-family: var(--font-1);
    font-weight: 600;
    text-transform: capitalize;
}

.menu a:hover,
.menu a.active,
.menu a.focus {
    color: var(--accent-color-2);
}

.sidebar-dropdown .dropdown-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sidebar-dropdown-btn {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    padding: 0px 15px;
    border-radius: 24px;
    transition: transform 0.3s ease;

}
.sidebar-dropdown-btn:hover {
    color: var(--accent-color-2);
    border: 1px solid var(--accent-color-2)
}

.sidebar-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

.sidebar-dropdown-menu.active {
    max-height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.below-dropdown {
    transition: margin-top 0.1s ease-in-out;
    margin-top: 0px;
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 5px;
}

/* 08. Bredcrumb components */

.breadcrumb{
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
}

.breadcrumb a{
    font-size: 16px;
    font-family: var(--font-2);
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary);
    transition: color 0.3s;
}

.breadcrumb a:hover{
    color: var(--accent-color);
}

.breadcrumb i{
    font-size: 16px;
    color: var(--accent-color);
}

/* 10. Button Components */

.btn{
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px 12px 24px;
    border-radius: 30px 30px 30px 30px;
    transition: all 0.15s ease-in-out;
    line-height: 1em;
    font-family: var(--font-1);
}

.btn-accent{
    background-color: transparent;
    color: var(--secondary);
    background-image: linear-gradient(180deg, #2b5dbb 0%, #534195 100%);
}

.btn-accent:hover{
    background-color: transparent;
    color: var(--secondary);
    background-image: linear-gradient(135deg, #9D88FF 0%, #7C6AE8 50%, #5A4DB8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 122, 232, 0.3);
}

.btn-accent-outline{
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-accent-outline:hover{
    background: linear-gradient(135deg, #9D88FF 0%, #5A4DB8 100%);
    border-color: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 122, 232, 0.3);
}

.logo-container {
    max-width: 130px;
    opacity: 0;
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px) scale(1.02);
}

.logo-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}


.logo-container.footer-logo{
    width: 20%;
}

.bg-accent-color-3 {
    background-color: var(--accent-color-3);
}

.bg-accent-color-4{
    background-color: var(--accent-color-4);
}

/* 11. Wrapper */

.link-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all 0.3s ease;
    gap: 10px 10px;
}

.link-wrapper a{
    color: var(--accent-color);
    transition: all 0.3s ease;
}
.link-wrapper i{
    color: var(--accent-color);
    transition: all 0.3s ease;
    transform: rotate(315deg);
}

.link-wrapper:hover a,
.link-wrapper:hover i{
    color: var(--accent-color-2);
}

.heading-wrapper-title{
    width: 75%;
}
.heading-wrapper-link{
    display: flex;
    width: 25%;
    height: 100%;
    align-self: center;
    justify-content: end;  
}
.heading-wrapper-text{
    display: flex;
    width: 25%;
    height: 100%;
    align-self: center;
    justify-content: end;  
}

/* 12. Heading Wrapper */

.heading-wrapper{
    background-color: transparent;
    background-image: linear-gradient(135deg, #8B7AE8 0%, #6B5AE6 50%, #4A3D9E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 13. Custom Spacing */

.gspace-0 { 
    gap: 0px 0px; 
}
.gspace-1 { 
    gap: 8px 8px; 
}
.gspace-2 { 
    gap: 16px 16px; 
}
.gspace-3 { 
    gap: 24px 24px; 
}
.gspace-4 { 
    gap: 32px 32px; 
}
.gspace-5 { 
    gap: 40px 40px; 
}
.gspace-x-0 { 
    column-gap: 0px;
}
.gspace-x-1 { 
    column-gap: 8px;
}
.gspace-x-2 { 
    column-gap: 16px; 
}
.gspace-x-3 { 
    column-gap: 24px; }
.gspace-x-4 { column-gap: 32px; 
}
.gspace-x-5 { 
    column-gap: 40px; 
}

.gspace-y-0 { 
    row-gap: 0px; 
}
.gspace-y-1 { 
    row-gap: 8px; 
}
.gspace-y-2 { 
    row-gap: 16px; 
}
.gspace-y-3 { 
    row-gap: 24px; 
}
.gspace-y-4 { 
    row-gap: 32px; 
}
.gspace-y-5 { 
    row-gap: 40px; 
}

.grid-spacer-1{
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.grid-spacer-2{
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.grid-spacer-3{
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.grid-spacer-4{
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.grid-spacer-5{
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
}

.grid-spacer-x-1 {
    --bs-gutter-x: 10px;
}
.grid-spacer-x-2 {
    --bs-gutter-x: 20px;
}
.grid-spacer-x-3 {
    --bs-gutter-x: 30px;
}
.grid-spacer-x-4 {
    --bs-gutter-x: 40px;
}
.grid-spacer-x-5 {
    --bs-gutter-x: 50px;
}

.grid-spacer-y-1 {
    --bs-gutter-y: 10px;
}
.grid-spacer-y-2 {
    --bs-gutter-y: 20px;
}
.grid-spacer-y-3 {
    --bs-gutter-y: 30px;
}
.grid-spacer-y-4 {
    --bs-gutter-y: 40px;
}
.grid-spacer-y-5 {
    --bs-gutter-y: 50px;
}

/* 14. Banner Components */

.banner-home{
    border-radius: var(--global-border-radius);
    padding: 0px 0px 0px 0px;
    margin-bottom: -10em;
    position: relative;
    overflow: hidden;
}

.banner-home-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2em 3em;
    gap: 20px;
    pointer-events: none;
}

.banner-home-content h2{
    color: var(--secondary);
    max-width: 450px;
    font-size: 36px;
    line-height: 1.2;
}

.banner-home-content .btn{
    pointer-events: all;
}

.banner-home{
    height: 350px;
    position: relative;
    z-index: 1;
}
.spacer{
    height: 0px;
    position: relative;
    z-index: 1;
}

.inner-background{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.inner-background::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../image/banner-overlay.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: -1;
}

.background-404{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px 30px;
    background-color: var(--accent-color-4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.background-404 p{
    max-width: 50%;
    align-self: center;
}

.background-404::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../image/banner-overlay.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: -1;
}

.whychoose-banner{
    background-color: transparent;
    background-image: radial-gradient(at center center, var(--accent-color) 0%, var(--primary) 60%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.whychoose-banner::before{
    content: '';
    position: absolute;
    background-image: url('../image/Galaxy-Background.jpg');
    background-size: auto;
    background-position: center center;
    background-repeat: repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}


.join-us-banner{
    background-image: url('../image/transfrom1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    align-self: center;
    justify-content: center;
    padding: 8em 1em 8em 1em;
    position: relative;
    z-index: 1;
}

.join-us-banner::before{
    content: '';
    position: absolute;
    background-color: var(--primary);
    opacity: 0.7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.join-us-content{
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
}

/* 15. Swiper */

.swiperPartner{
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
    padding-bottom: 3em;
    border-bottom: 1px solid var(--accent-color-5);
}

.swiperPartner .swiper-slide img{
    width: 80%;
    height: auto;
}

/* 16. Fonts */

.font-1{
    font-family: var(--font-1);
}

.font-2{
    font-family: var(--font-2);
}

/* 17. Accent Color */

.accent-color{
    color: var(--accent-color);
}

.accent-color-2{
    color: var(--accent-color-2);
}

.accent-color-3{
    color: var(--accent-color-3);
}

/* 18. Image */

.image-container{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img{
    border-radius: var(--global-border-radius);
    max-width: 100%;
    height: auto;
}

/* 19. Card */

.card{
    border: none;
    border-radius: var(--global-border-radius);
    background-color: transparent;
}

.card-accent{
    background-color: transparent;
    background-image: linear-gradient(180deg, #7a7693 0%, #5d0977 100%);
}

.card-counter{
    padding: 1em 1em 1em 1em;
    display: flex;
    flex-direction: column;
    gap: 10px 10px;
    color: var(--accent-color-3);
    width: 100%;
    height: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* 20. About Components */

.about-qoute{
    display: flex;
    padding: 0em 0em 0em 1em;
    border-left: solid 2px var(--accent-color);
}

.about-qoute p{
    font-style: italic;
    font-weight: 600;
}

/* 21. Counter Component */

.counter, .counter-detail{
    font-size: 64px;
    font-weight: 700;
    line-height: 1.25em;
}

.odometer{
    font-size: 64px;
    font-weight: 700;
    line-height: 1.25em !important;
    color: var(--primary);
}

.odometer-suffix {
    font-size: 64px;
    font-weight: 700;
    margin-left: 2px;
    line-height: 1.25em;
    margin-left: 6px;
}
.odometer-detail {
    font-size: 24.008px;
    font-weight: 700;
    margin-left: 1px;
    color: var(--accent-color);
    align-self: start;
}

.odometer, .odometer-suffix, .odometer-detail {
    display: inline-block;
    vertical-align: baseline;
}

.counter-box{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-left: 8px;
    gap: 15px 15px;
}

/* 22. Progress Bar Components */

.progress-container {
    position: relative;
    width: 100%;
}

.progress-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--accent-color-3);
}
.progress-bar-container {
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--accent-color-5);
  border-radius: var(--global-border-radius);
  overflow: visible;
}

.progress-bar {
  height: 100%;
  background: var(--accent-color-2);
  width: 0;
  transition: width 0.2s;
  border-radius: var(--global-border-radius);
  position: absolute;
  left: 0;
  top: 0;
}

.progress-message {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-100%);
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: left 0.2s;
}
.progress-message i {
    font-size: 36px;
    color: var(--accent-color);
    position: relative;
}

.progress-message span {
    position: absolute;
    font-weight: bold;
    font-size: 14px;
    color: var(--accent-color-3);
}

/* 23. Video Components */

.bg-video-container{
    background-image: url('../image/home/liba2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--global-border-radius);
    max-width: 100%;
    height: 100%;
    padding: 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-video-container::before{
    content: '';
    position: absolute;
    background-color: var(--primary);
    opacity: 0.3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.request-loader {
    position: relative;
    height: 70px;
    border-radius: 50% !important;
    border: none;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 25px;
    aspect-ratio: 1/1;
    transition: all 0.3s ease-in-out;
}

.request-loader:hover {
    border: none;
    color: var(--primary);
    background-color: var(--accent-color);
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color-6);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.modal-video {
    background-color: var(--secondary);
    padding: 0;
    border-radius: none;
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}

.modal-video iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 80vh;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    color: var(--accent-color-4);
}

/* 23. Service Components */
.card-service{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 1em 1em 1em 1em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-service-wrapper{
    border: solid 2px var(--accent-color-5);
    border-radius: var(--global-border-radius);
    background-image: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Background image now set dynamically from database */
.card-service.talent-management{
    width: 100%;
    height: 100%;
}

.card-service.talent-management .spacer{
    height: 0;
    flex-grow: 1;
}

/* Service card background icons - no images */
.card-service-icon {
    position: absolute;
    right: 1em;
    bottom: 1em;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.25;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-service.talent-management .card-service-icon {
    font-size: 7rem;
}

.card-service:hover .card-service-icon {
    opacity: 0.4;
    transform: scale(1.05);
}

.card-service.talent-management {
    background: linear-gradient(135deg, var(--primary) 0%, #2f0e51 100%);
}

.card-service.talent-management::before {
    display: none;
}

.card-service.influencer-marketing {
    background: linear-gradient(135deg, var(--primary) 0%, #2f0e51 100%);
}

.card-service.influencer-marketing::before {
    display: none;
}

.card-service.brand-partnership {
    background: linear-gradient(135deg, var(--primary) 0%, #2f0e51 100%);
}

.card-service.brand-partnership::before {
    display: none;
}

.card-service.content-strategy {
    background: linear-gradient(135deg, var(--primary) 0%, #2f0e51 100%);
}

.card-service.content-strategy::before {
    display: none;
}

.service-cta{
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    border-radius: var(--global-border-radius);
}

.service-cta .icon-circle{
    align-self: flex-end;
}

.service-cta i{
    transform: rotate(-45deg);
}

.card-service-content{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 1.5em 1.5em 1.5em 1.5em;
    border-radius: var(--global-border-radius);
    width: 100%;
    height: 100%;
    transform: translateY(0);
    /* background-color: var(--accent-color-6); */
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.card-service-content:hover{
    background-color: rgba(20, 20, 20, 0.75);
}

.card-service.talent-management .card-service-content{
    transform: translateY(0);
}

.card-service.talent-management .card-service-content:hover{
    transform: translateY(0);
}

.other-service-banner{
    display: flex;
    flex-direction: column;
    background-color: transparent;
    background-image: radial-gradient(at center center, var(--accent-color) 0%, var(--primary) 70%);
    gap: 15px 15px;
    border-radius: var(--global-border-radius);
    padding: 1.75em 1.75em 1.75em 1.75em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.other-service-banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../image/Galaxy-Background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}


.other-service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.other-service-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--accent-color-5);
}

.other-service-list li:last-child{
    margin-bottom: 0px;
    border-bottom: none;
}

.other-service-list a {
    color: var(--accent-color-3);
    font-size: 16.8px;
    transition: all 0.3;
}

.other-service-list a:hover{
    color: var(--accent-color);
}

.other-service-list li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 16px;
}

/* 24. Social Media Components */

.social-media-cta{
    display: flex;
    flex-direction: column;
    background-color: transparent;
    background-image: radial-gradient(at center center, var(--accent-color) 0%, var(--primary) 70%);
    gap: 15px 15px;
    border-radius: var(--global-border-radius);
    padding: 1.75em 1.75em 1.75em 1.75em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-media-cta::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../image/Galaxy-Background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}

/* 25. Talent Components */

.card-talent{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 1.5em 1.5em 1.5em 1.5em;
    border-radius: var(--global-border-radius);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-talent.talent-cta{
    background-color: transparent;
    background-image: radial-gradient(at center center, var(--accent-color) 0%, var(--primary) 70%);
    padding: 2em 2em 2em 2em;
    position: relative;
    z-index: 1;
}

.card-talent.talent-cta::before{
    content: '';
    position: absolute;
    background-image: url('../image/Galaxy-Background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-talent.talent-model{
    background-image: url('../image/studio-fashion-portrait-of-pretty-cute-blonde-wom-2024-12-04-12-45-11-utc.jpg');
}

.card-talent.talent-musician{
    background-image: url('../image/young-man-playing-on-an-acoustic-guitar-in-a-moder-2024-10-18-05-55-15-utc.jpg');
}

.card-talent.talent-beauty-vlogger{
    background-image: url('../image/beauty-blogger-girl-is-broadcasting-live-from-her-2024-09-23-00-08-47-utc.jpg');
}
.card-talent.talent-digital-creator{
    background-image: url('../image/man-with-headphones-in-sweatshirt-enjoying-favorit-2024-10-19-09-10-46-utc.jpg');
}
.card-talent.talent-public-speaker{
    background-image: url('../image/teenage-girl-listening-to-music-2025-02-11-14-00-14-utc.jpg');
}
.card-talent.talent-fashion-vlogger{
    background-image: url('../image/man-singer-wearing-headphones-listening-to-music-a-2025-03-10-21-29-58-utc.jpg');
}
.card-talent.talent-actor{
    background-image: url('../image/blithesome-man-in-vintage-jeans-posing-in-studio-2024-09-24-02-36-10-utc.jpg');
}

.card-talent-wrapper{
    border: solid 2px var(--accent-color-5);
    border-radius: var(--global-border-radius);
    background-image: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.talent-cta .card-talent-content{
    transform: translateY(0);
    background-color: transparent;
    justify-content: center;
    gap: 20px 20px;
    padding: 0;
}

.talent-cta .card-talent-content::before{
    content: '';
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.talent-cta .card-talent-content:hover{
    background-color: transparent;
}

.card-talent-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px 10px;
    padding: 1.5em 1.5em 1.5em 1.5em;
    border-radius: var(--global-border-radius);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    transform: translateY(290px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-talent-content::before{
    content: '';
    position: absolute;
    background-color: var(--primary);
    opacity: 0.5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.card-talent-content:hover{
    background-color: var(--accent-color-6);
    transform: translateY(0px);
}


.talent-detail-photo{
    width: 75%;
    height: 100%;
}

.talent-social-icon{
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 14px 14px 14px;
    font-size: 35px;
    border-radius: 10px 10px 10px 10px;
    background-color: var(--accent-color);
    color: var(--accent-color-3);
}

.talent-spacer{
    height: 230px;
}

/* 26. Contact Us Components */

.contactus-cta{
    position: relative;
    background-image: url('../image/joyful-team-celebrating-success-in-office-2024-12-04-21-58-05-utc.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    border-radius: var(--global-border-radius);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2em 2em 2em 2em;
    overflow: hidden;
    z-index: 1;
}

.contactus-cta::before{
    content: '';
    position: absolute;
    background-color: var(--primary);
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.contactus-cta.single-post{
    background-image: url('../image/portrait-of-a-multi-ethnic-and-young-members-of-a-2024-12-09-02-52-13-utc.jpg');
}

/* 27. Pricing Components */

.card-pricing{
    background-color: var(--accent-color-4);
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
    padding: 2em 2em 2em 2em;
    overflow: hidden;
}

.pricing-hightlight{
    position: relative;
    background-color: transparent;
    background-image: radial-gradient(at center center, var(--accent-color) 0%, var(--primary) 70%);
    overflow: hidden;
    z-index: 1;
}

.pricing-hightlight::before{
    content: '';
    position: absolute;
    background-image: url('../image/Galaxy-Background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: -1;
}

.price-container{
    border-radius: 10px 10px 10px 10px;
    background-color: var(--accent-color);
    color: var(--accent-color-3);
    display: flex;
    flex-direction: row;
    gap: 5px 5px;
    padding: 1.5em 1.5em 1.5em 1.5em;
}

.pricing{
    color: var(--accent-color-3);
    font-size: 64px;
    line-height: 1.25em;
    font-weight: 700;
}

.price-container h6{
    align-self: flex-end;
}

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

/* 28. Testimonial Components */

.card-testimonial{
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    background-color: var(--secondary);
    padding: 2em 2em 2em 2em;
    border-radius: var(--global-border-radius);
    border: solid 1px var(--accent-color-5);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-testimonial-rating{
    display: flex;
    flex-direction: column;
    gap: 25px 25px;
    background-color: transparent;
    background-image: radial-gradient(at center center, var(--accent-color) 0%, var(--primary) 70%);
    padding: 2em 2em 2em 2em;
    border-radius: var(--global-border-radius);
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.card-testimonial-rating::before{
    content: '';
    position: absolute;
    background-image: url('../image/Galaxy-Background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.card-testimonial-rating .counter,
.card-testimonial-rating .counter-detail{
    color: var(--accent-color-3);
}

.testimonial-image{
    width: 20%;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-video{
    background-image: url('../image/home/liba3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
    padding: 2em 2em 2em 2em;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.testimonial-video-spacer{
    height: 100px;
}

.testimonial-video::before{
    content: '';
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--accent-color-transparent) 30%, var(--primary) 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.testimonial-quote{
    font-style: italic;
}

.stars{
    display: flex;
    flex-direction: row;
    gap: 5px 5px;
}

.stars i{
    color: var(--accent-color);
}

/* 29. Underline Components */

.underline-1{
    border-bottom: solid 1px var(--accent-color);
    width: 40%;
    padding: 5px 0px 5px 0px;
}

.underline-2{
    border-bottom: solid 1px var(--accent-color-5);
    width: 100%;
}

.underline-3{
    border-bottom: solid 1px var(--text-color);
    width: 100%;
}

/* 30. Icon Compoents */

.social-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px 10px;
}

.social-container-footer{
    display: flex;
    flex-direction: row;
    gap: 10px 10px;
    justify-content: flex-start;
}

.icon-circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color-3);
    font-size: 32px;
    color: var(--accent-color);
    transition: all 0.3s;
}

.icon-circle:hover{
    background-color: var(--primary);
    color: var(--accent-color-3);
}

.icon-circle.invert-color{
    background-color: var(--accent-color);
    color: var(--accent-color-3);
    transform: rotate(325deg);
}

.icon-circle.invert-color:hover{
    background-color: var(--accent-color-3);
    color: var(--accent-color);
}

.social-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 10% 10% 10% 10%;
    background-color: #371344;
    color: var(--accent-color-3);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover{
    background-color: var(--accent-color-2);
}

/* 31. Animate Compoents */

.animate-box {
    opacity: 0;
}

.animated{
    animation-duration: var(--animation-normal);
}

.animated.fast{
    animation-duration: var(--animation-fast);
}

.animated.slow{
    animation-duration: var(--animation-slow);
}

/* 32.Faq Accordion Banner Components */

.accordion .accordion-item {
    background-color: transparent;
    border: none;
    color: var(--primary);
    outline: none;
}

.accordion .accordion-item .accordion-body {
    color: var(--primary);
    font-family: var(--font-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    padding: 2em 3em 2em 3em;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: var(--secondary);
    border-radius: 30px 30px 30px 30px !important;
    font-weight: 600;
    font-family: var(--font-1);
    font-size: 16.8px;
    line-height: 1.25em;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 15px 25px 15px 25px;
    margin-bottom: 10px;
    border: none;
    color: var(--primary);
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23414260" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23414260" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
    font-weight: 600;
    box-shadow: none;
    border-bottom: 3px solid var(--accent-color);
    color: var(--accent-color);
    outline: none;
}


.tab-btn{
    border: solid 1px var(--accent-color-5);
    background-color: var(--accent-color-transparent);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.25em;
    padding: 15px 30px 15px 30px;
    transition: all 0.3s ease
}

.tab-btn:hover{
    background-color: var(--accent-color);
    border: solid 1px var(--accent-color);
    color: var(--accent-color-3);
}

.tab-btn.active{
    background-color: var(--accent-color);
    border: solid 1px var(--accent-color);
    color: var(--accent-color-3);
}

.tab-content {
    display: block;
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.show {
    display: block;
}

.tab-pane.active {
    display: block;
}

.faq-cta-banner{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px 15px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: var(--accent-color-3);
    padding: 2em 2em 2em 2em;
    position: relative;
    z-index: 1;
}

.faq-cta-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.faq-cta-banner::before{
    content: '';
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--accent-color-transparent) 20%, var(--primary) 70%);
    opacity: 0.7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.faq-cta-banner .spacer{
    height: 50px;
}

/* 33. List Components */

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.check-list a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.check-list a:hover {
    color: var(--primary);
}

.check-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 16px;
}

.chevron-list {
    list-style: none;
    padding: 0;
}

.chevron-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    transition: all 0.2s;
}
.chevron-list a {
    color: var(--accent-color-3);
    font-size: 16px;
}

.chevron-list a:hover{
    color: #DEAEFF;
}

.chevron-list li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #868686;
    font-size: 14px;
}

.checkbox-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;
}

.checkbox-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    transition: all 0.2s;
}

.checkbox-list li:last-child{
    margin-bottom: 0px;
}

.checkbox-list a {
    color: var(--accent-color-3);
    font-size: 16px;
}

.checkbox-list a:hover{
    color: var(--accent-color);
}

.checkbox-list li::before {
    content: "\f14a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 14px;
}

/* 34. Blog Post Components */

.card-blog{
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #eaeaeb;
    background-position: 50%;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.card-blog img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-blog::before{
    content: '';
    position: absolute;
    background-color: var(--accent-color-6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-blog .card-body{
    padding: 2em;
    border-radius: 25px;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    bottom: 1em;
    right: 1em;
    left: 1em;
    z-index: 2;
}

.blog-link{
    font-size: 20px;
    color: var(--accent-color-3);
    transition: all 0.3s ease;
}

.blog-link:hover{
    color: var(--accent-color);
}

.blog-link.other-post{
    font-size: 16.8px;
}

/* Portfolio Works - Image-dominant overlay layout */
.portfolio-works-header{
    margin-bottom: 2.5em;
}

.portfolio-archive{
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75em;
    color: var(--accent-color);
    font-weight: 500;
}

.portfolio-works-title{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.6em;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.portfolio-works-subtitle{
    font-size: 0.95rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    opacity: 0.75;
    line-height: 1.6;
}

.portfolio-grid{
    margin-top: 2em;
}

.portfolio-grid .col{
    margin-bottom: 2rem;
}

.portfolio-grid .card-portfolio-overlay{
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.portfolio-grid .card-portfolio-overlay:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-grid .card-portfolio-overlay .card-portfolio-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.portfolio-grid .card-portfolio-overlay .card-portfolio-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-grid .card-portfolio-overlay:hover .card-portfolio-image img{
    transform: scale(1.08);
}

.portfolio-grid .card-portfolio-overlay::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.portfolio-grid .card-portfolio-overlay:hover::after{
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.portfolio-grid .card-portfolio-overlay .card-portfolio-overlay-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5em 2em;
    z-index: 3;
    color: #ffffff;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-grid .card-portfolio-overlay:hover .card-portfolio-overlay-content{
    transform: translateY(-4px);
}

.portfolio-grid .card-portfolio-overlay .card-portfolio-overlay-content h3{
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.portfolio-grid .card-portfolio-overlay .card-portfolio-overlay-content p{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25em;
    line-height: 1.5;
    font-weight: 400;
}

.portfolio-grid .card-portfolio-overlay .btn-portfolio{
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.portfolio-grid .card-portfolio-overlay .btn-portfolio::after{
    content: '→';
    font-size: 14px;
    transition: transform 0.3s ease;
}

.portfolio-grid .card-portfolio-overlay:hover .btn-portfolio{
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.portfolio-grid .card-portfolio-overlay:hover .btn-portfolio::after{
    transform: translateX(4px);
}

/* Portfolio Responsive Styles */
@media screen and (max-width: 1024px){
    .portfolio-works-title{
        font-size: 2.25rem;
    }
    
    .portfolio-grid .card-portfolio-overlay .card-portfolio-overlay-content{
        padding: 2em 1.75em;
    }
    
    .portfolio-grid .card-portfolio-overlay .card-portfolio-overlay-content h3{
        font-size: 1.35rem;
    }
}

@media screen and (max-width: 767px){
    .portfolio-works-header{
        margin-bottom: 2.5em;
    }
    
    .portfolio-works-title{
        font-size: 1.875rem;
    }
    
    .portfolio-works-subtitle{
        font-size: 0.95rem;
    }
    
    .portfolio-grid .card-portfolio-overlay .card-portfolio-overlay-content{
        padding: 1.75em 1.5em;
    }
    
    .portfolio-grid .card-portfolio-overlay .card-portfolio-overlay-content h3{
        font-size: 1.25rem;
    }
    
    .portfolio-grid .card-portfolio-overlay:hover{
        transform: translateY(-4px);
    }
}

.meta-data{
    font-size: 14px;
    color: var(--accent-color-3);
    display: flex;
    flex-direction: row;
    gap: 10px 10px;
    align-items: center;
}

.post-details{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

.post-details span{
    font-size: 16px;
    color: var(--primary);
}

.post-details span:nth-child(2){
    border-left: 1px solid var(--accent-color-2);
    border-right: 1px solid var(--accent-color-2);
    padding: 0em 1em;
}

.other-post-banner{
    display: flex;
    flex-direction: column;
    background-color: transparent;
    background-image: radial-gradient(at center center, var(--accent-color) 0%, var(--primary) 70%);
    gap: 15px 15px;
    border-radius: var(--global-border-radius);
    padding: 1.75em 1.75em 1.75em 1.75em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.other-post-banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../image/Galaxy-Background.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}

.other-post-img{
    position: relative;
    overflow: hidden;
    display: block;
    max-width: 40%;
    max-height: 100%;
    border-radius: var(--global-border-radius);
    height: auto;
}

.other-post-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* 35. Footer Components */

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

.quick-link{
    font-size: 20px;
    color: var(--accent-color-3);
    transition: all 0.3s ease;
}

.quick-link:hover{
    color: var(--accent-color);
}

.footer-list{
    list-style: none;
    padding-left: 0;
}

.footer-list li{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    margin-bottom: 0.5em;
    color: var(--accent-color-3);
    transition: all 0.2s;
}

.footer-list li i{
    font-size: 16px;
    color: #FFFFFFA3;
}

.footer-list li:hover{
    color: var(--accent-color);
}

.footer-list a{
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color-3);
    transition: all 0.2s;
    font-family: var(--font-2);
}

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

/* 36. Maps */

.maps{
    border-radius: var(--global-border-radius);
    width: 100%;
    min-height: 350px;
    overflow: hidden;
}

/* 37. Form Components */

.form{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    background-color: var(--accent-color-4);
    padding: 2em 2em 2em 2em;
    border-radius: var(--global-border-radius);
}

.form input,
.form textarea,
.form select {
    background-color: var(--accent-color-3);
    border: solid 1px var(--accent-color-5);
    border-radius: 10px 10px 10px 10px;
    color: var(--text-color);
    outline: none;
    line-height: 1.5em;
    padding: 1em 1em 1em 1em;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    color: var(--text-color);
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--text-color);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--text-color);
    font-family: var(--font-2);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color);
    font-family: var(--font-2);
    font-size: 16px;
    font-weight: 500;
}

.form label{
    font-size: 16.8px;
    font-weight: 600;
    font-family: var(--font-1);
    color: var(--primary);
}

.form .form-select {
    color: var(--text-color-2);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

input.error-border,
textarea.error-border{
    border-color: var(--accent-color);
}

.error-text {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 10px;
  }

.form .submit_form {
    display: inline-block;
    padding-inline: 2rem;
    padding-block: 0.7rem;
    padding: 1em 1em;
    line-height: 1.5em;
    text-decoration: none;
    border: none;
    transition: all 0.5s;
    background-color: var(--accent-color-1);
    color: white;
    border-radius: 5px;
}

.form .submit_form:hover {
    background-color: var(--accent-color-2);
    color: var(--accent-color-1);
}

.success {
    color: var(--accent-color-3);
}
  
.error {
    color: var(--accent-color-3);
}  
  
.check-icon,
.cross-icon {
    font-size: 20px;
    margin-right: 10px;
}


.alert {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: var(--primary);
}

.hidden{
    display: none;
}

/* Contact Form Loading Overlay */
.contact-form-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--global-border-radius);
}

.contact-form-loading.hidden {
    display: none;
}

.contact-form-loading-content {
    text-align: center;
}

.contact-form-loading-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 1em;
    border: 4px solid var(--accent-color-5);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: contactFormSpin 0.8s linear infinite;
}

@keyframes contactFormSpin {
    to { transform: rotate(360deg); }
}

.contact-form-loading-text {
    font-family: var(--font-1);
    color: var(--primary);
    font-size: 1rem;
}

/* Contact Success Page */
.contact-success-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-success-icon i {
    color: var(--accent-color);
}

/* 38. Newsletter */

#newsletterForm {
    display: flex;
    gap: 8px;
    width: 100%;
}

#newsletterForm input {
    flex: 1;
    padding: 1em 1em 1em 1em;
    background-color: var(--accent-color-3);
    color: var(--primary);
    border-radius: 10px 10px 10px 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    width: 100%;
    height: 100%;
    border: none;
}

#newsletterForm input::placeholder
{
    color: #ccc;
}

#newsletterForm .error-text {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 4px;
}

#newsletterForm .hidden {
    display: none;
}

#newsletterForm button {
    padding: 21px 30px 21px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
    background-image: linear-gradient(135deg, #182C9D 0%, #3D1873 50%, #4A3D9E 100%);
    color: var(--secondary);
    font-weight: 600;
}

#newsletterForm button:hover {
    background-image: linear-gradient(135deg, #9D88FF 0%, #7C6AE8 50%, #5A4DB8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 122, 232, 0.3);
}

/* 39. Tablet Responsive */

@media screen and (min-width: 1024px){
    /* Flex spacing (gap) */
    .gspace-md-0 { 
        gap: 0px 0px; 
    }
    .gspace-md-1 { 
        gap: 10px 10px; 
    }
    .gspace-md-2 { 
        gap: 20px 20px; 
    }
    .gspace-md-3 { 
        gap: 30px 30px; 
    }
    .gspace-md-4 { 
        gap: 40px 40px; 
    }
    .gspace-md-5 { 
        gap: 50px 50px; 
    }

    /* Grid spacing (column-gap) */

    .gspace-x-md-0 { 
        column-gap: 0px;
    }
    .gspace-x-md-1 { 
        column-gap: 10px; 
    }
    .gspace-x-md-2 {
         column-gap: 20px; 
    }
    .gspace-x-md-3 { 
        column-gap: 30px; 
    }
    .gspace-x-md-4 { 
        column-gap: 40px; 
    }
    .gspace-x-md-5 { 
        column-gap: 50px; 
    }

    /* Grid spacing (row-gap) */

    .gspace-y-md-0 { 
        row-gap: 0px; 
    }
    .gspace-y-md-1 { 
        row-gap: 10px; 
    }
    .gspace-y-md-2 { 
        row-gap: 20px; 
    }
    .gspace-y-md-3 { 
        row-gap: 30px; 
    }
    .gspace-y-md-4 { 
        row-gap: 40px; 
    }
    .gspace-y-md-5 { 
        row-gap: 50px; 
    }

    /* Grid spacing (row-gap & column-gap) */

    .grid-spacer-md-0 { 
        --bs-gutter-x: 0px; 
        --bs-gutter-y: 0px; 
    }
    .grid-spacer-md-1 { 
        --bs-gutter-x: 10px; 
        --bs-gutter-y: 10px; 
    }
    .grid-spacer-md-2 { 
        --bs-gutter-x: 20px; 
        --bs-gutter-y: 20px; 
    }
    .grid-spacer-md-3 { 
        --bs-gutter-x: 30px; 
        --bs-gutter-y: 30px; 
    }
    .grid-spacer-md-4 { 
        --bs-gutter-x: 40px; 
        --bs-gutter-y: 40px; 
    }
    .grid-spacer-md-5 { 
        --bs-gutter-x: 50px; 
        --bs-gutter-y: 50px; 
    }

    /* Grid spacing (column-gap) */

    .grid-spacer-x-md-0 { 
        --bs-gutter-x: 0px; 
    }
    .grid-spacer-x-md-1 { 
        --bs-gutter-x: 10px; 
    }
    .grid-spacer-x-md-1 { 
        --bs-gutter-x: 10px; 
    }
    .grid-spacer-x-md-2 { 
        --bs-gutter-x: 20px;
    }
    .grid-spacer-x-md-3 { 
        --bs-gutter-x: 30px; 
    }
    .grid-spacer-x-md-4 { 
        --bs-gutter-x: 40px; 
    }
    .grid-spacer-x-md-5 { 
        --bs-gutter-x: 50px; 
    }

    /* Grid spacing (row-gap) */

    .grid-spacer-y-md-0 { 
        --bs-gutter-y: 0px; 
    }
    .grid-spacer-y-md-1 { 
        --bs-gutter-y: 10px; 
    }
    .grid-spacer-y-md-1 { 
        --bs-gutter-y: 10px; 
    }
    .grid-spacer-y-md-2 { 
        --bs-gutter-y: 20px; 
    }
    .grid-spacer-y-md-3 { 
        --bs-gutter-y: 30px; 
    }
    .grid-spacer-y-md-4 { 
        --bs-gutter-y: 40px; 
    }
    .grid-spacer-y-md-5 { 
        --bs-gutter-y: 50px; 
    }
}

@media screen and (max-width: 1024px){
    h1{
        font-size: 68px;
        line-height: 1.05em;
    }
    h2{
        font-size: 40px;
    }
    h3{
        font-size: 21.008px;
        line-height: 1.1255em;
    }
    h4{
        font-size: 20px;
    }
    h5{
        font-size: 16.8px;
    }
    h6{
        font-size: 16px;
    }
    p{
        font-size: 14px;
    }
    button, a{
        font-size: 14px;
    }
    .navbar-collapse{
        display: none !important;
    }
    .nav-btn{
        display: block;
    }
    .heading-wrapper-title{
        width: 70%;
    }
    .heading-wrapper-link{
        width: 30%;
    }
    .heading-wrapper-text{
        width: 30%;
    }
    .banner-home {
        height: 400px;
    }
    .spacer{
        height: 0px;
    }
    .card-service{
        padding: 2em 2em 2em 2em;
    }
    .card-service.talent-management .card-service-content{
        transform: translateY(0);
    }
    .card-service-content{
        transform: translateY(0);
    }
    .other-service-list a{
        font-size: 16px;
    }
    .bg-video-container{
        padding: 10em 10em 10em 10em;
    }
    .blog-link.other-post{
        font-size: 16px;
    }
    .join-us-content{
        width: 90%;   
    }
    .faq-cta-banner .spacer{
        height: 300px;
    }
    .background-404 p{
        max-width: 70%;
    }
    .quick-link{
        font-size: 16.8px;
    }
    .other-post-img{
        max-width: 50%;
    }
    .talent-detail-photo{
        width: 100%;
    }
    .odometer, .odometer-suffix{
        font-size: 60px;
    }
    .odometer-detail{
        font-size: 21.008px;
    }
}

/* 40. Mobile Responsive */

@media screen and (min-width: 767px){

    /* Flex spacing (gap) */

    .gspace-sm-0 { 
        gap: 0px 0px; 
    }
    .gspace-sm-1 { 
        gap: 10px 10px; 
    }
    .gspace-sm-2 { 
        gap: 20px 20px; 
    }
    .gspace-sm-3 { 
        gap: 30px 30px; 
    }
    .gspace-sm-4 { 
        gap: 40px 40px; 
    }
    .gspace-sm-5 { 
        gap: 50px 50px; 
    }

    /* Grid spacing (column-gap) */

    .gspace-x-sm-0 { 
        column-gap: 0px; 
    }
    .gspace-x-sm-0 { 
        column-gap: 0px; 
    }
    .gspace-x-sm-1 { 
        column-gap: 10px; 
    }
    .gspace-x-sm-2 { 
        column-gap: 20px; 
    }
    .gspace-x-sm-3 { 
        column-gap: 30px; 
    }
    .gspace-x-sm-4 { 
        column-gap: 40px; 
    }
    .gspace-x-sm-5 { 
        column-gap: 50px; 
    }

    /* Grid spacing (row-gap) */

    .gspace-y-sm-0 { 
        row-gap: 0px; 
    }
    .gspace-y-sm-1 { 
        row-gap: 10px; 
    }
    .gspace-y-sm-2 { 
        row-gap: 20px; 
    }
    .gspace-y-sm-3 { 
        row-gap: 30px; 
    }
    .gspace-y-sm-4 { 
        row-gap: 40px; 
    }
    .gspace-y-sm-5 { 
        row-gap: 50px; 
    }

    /* Grid spacing (row-gap & column-gap) */

    .grid-spacer-sm-1 { 
        --bs-gutter-x: 10px; 
        --bs-gutter-y: 10px; 
    }
    .grid-spacer-sm-2 { 
        --bs-gutter-x: 20px; 
        --bs-gutter-y: 20px; 
    }
    .grid-spacer-sm-3 { 
        --bs-gutter-x: 30px; 
        --bs-gutter-y: 30px; 
    }
    .grid-spacer-sm-4 { 
        --bs-gutter-x: 40px; 
        --bs-gutter-y: 40px; 
    }
    .grid-spacer-sm-5 { 
        --bs-gutter-x: 50px; 
        --bs-gutter-y: 50px; 
    }

    /* Grid spacing (column-gap) */

    .grid-spacer-x-sm-0 { 
        --bs-gutter-x: 0px; 
    }
    .grid-spacer-x-sm-1 { 
        --bs-gutter-x: 10px; 
    }
    .grid-spacer-x-sm-2 { 
        --bs-gutter-x: 20px; 
    }
    .grid-spacer-x-sm-3 { 
        --bs-gutter-x: 30px; 
    }
    .grid-spacer-x-sm-4 { 
        --bs-gutter-x: 40px; 
    }

    /* Grid spacing (row-gap) */

    .grid-spacer-y-sm-0 { 
        --bs-gutter-y: 0px; 
    }
    .grid-spacer-y-sm-1 { 
        --bs-gutter-y: 10px; 
    }
    .grid-spacer-y-sm-2 { 
        --bs-gutter-y: 20px; 
    }
    .grid-spacer-y-sm-3 { 
        --bs-gutter-y: 30px; 
    }
    .grid-spacer-y-sm-4 { 
        --bs-gutter-y: 40px; 
    }
    .grid-spacer-y-sm-5 { 
        --bs-gutter-y: 50px; 
    }
}

@media screen and (max-width: 767px){
    h1{
        font-size: 64px;
    }
    h2{
        font-size: 36px;
    }
    h6{
        font-size: 14px;
    }
    .navbar-button-container{
        display: none;
    }
    .heading-wrapper-title{
        width: 100%;
    }
    .heading-wrapper-link{
        width: 100%;
        align-self: flex-start;
        justify-content: start
    }
    .heading-wrapper-text{
        width: 100%;
        align-self: flex-start;
        justify-content: start
    }
    .card-service.talent-management .card-service-content{
        transform: translateY(0);
    }
    .card-service-content{
        transform: translateY(0);
    }
    .other-service-list a{
        font-size: 14px;
    }
    .other-post-img{
        height: 100%;
    }
    .blog-link.other-post{
        font-size: 14px;
    }
    .join-us-content{
        width: 100%;
    }
    .background-404 p{
        max-width: 100%;
    }
    .tab-content{
        display: none;
    }
    .odometer, .odometer-suffix{
        font-size: 56px;
    }
    .odometer-detail{
        font-size: 14px;
    }
}

/* Digital Marketing Page */
.dm-intro-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.dm-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 140px;
}
.dm-stat-icon {
    position: absolute;
    right: 1em;
    bottom: 1em;
    font-size: 2.5rem;
    opacity: 0.15;
    color: var(--accent-color);
}

.dm-chart-card {
    padding: 2em;
    border-radius: var(--global-border-radius);
    border: 1px solid rgba(162, 147, 255, 0.2);
    background: var(--secondary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dm-chart-title {
    font-family: var(--font-1);
    color: var(--primary);
    margin-bottom: 1.5em;
    font-size: 1.1rem;
}
.dm-chart-wrapper {
    position: relative;
    height: 280px;
    max-width: 100%;
}

.dm-service-block {
    background: var(--secondary);
    border-radius: var(--global-border-radius);
    padding: 2.5em;
    margin-bottom: 2em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(162, 147, 255, 0.1);
}
.dm-service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25em;
    margin-bottom: 1.5em;
}
.dm-service-icon-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
}
.dm-service-icon-2 {
    background: linear-gradient(135deg, var(--accent-color-2) 0%, #5B9BD5 100%);
}
.dm-service-header h3 {
    margin-bottom: 0.25em;
}
.dm-service-header h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color) !important;
}
.dm-overview {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5em;
}
.dm-subtitle {
    font-family: var(--font-1);
    color: var(--primary);
    margin-bottom: 1em;
    font-size: 1rem;
}
.dm-service-block .progress-container .progress-title {
    color: var(--primary);
    font-weight: 600;
}
.dm-feature-card {
    display: flex;
    align-items: center;
    gap: 1.25em;
    padding: 1.25em 1.5em;
    background: var(--accent-color-4);
    border-radius: 12px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.dm-feature-card:hover {
    background: rgba(162, 147, 255, 0.15);
    border-color: rgba(162, 147, 255, 0.3);
    transform: translateY(-2px);
}
.dm-feature-card i {
    color: var(--accent-color) !important;
    font-size: 1.35rem;
    min-width: 2em;
    text-align: center;
    flex-shrink: 0;
}
.dm-accordion .accordion-button {
    font-family: var(--font-1);
    background: var(--accent-color-4);
    color: var(--primary);
    border: none;
}
.dm-accordion .accordion-button:not(.collapsed) {
    background: rgba(162, 147, 255, 0.2);
    color: var(--accent-color);
}
.dm-accordion .accordion-item {
    border: 1px solid rgba(162, 147, 255, 0.15);
    border-radius: 12px !important;
    margin-bottom: 0.5em;
    overflow: hidden;
}
.dm-accordion .accordion-body {
    background: var(--secondary);
    padding: 1.5em 2em;
}

@media (max-width: 768px) {
    .dm-service-block {
        padding: 1.5em;
    }
    .dm-service-header {
        flex-direction: column;
    }
    .dm-chart-wrapper {
        height: 240px;
    }
}

/* Systems Page */
.sys-intro-text {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0.5em;
}

.sys-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 140px;
}
.sys-stat-icon {
    position: absolute;
    right: 1.25em;
    bottom: 1.25em;
    font-size: 2.5rem;
    opacity: 0.15;
    color: var(--accent-color);
}

.sys-chart-card {
    padding: 2.5em;
    border-radius: var(--global-border-radius);
    border: 1px solid rgba(162, 147, 255, 0.2);
    background: var(--secondary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sys-chart-title {
    font-family: var(--font-1);
    color: var(--primary);
    margin-bottom: 1.75em;
    font-size: 1.1rem;
}
.sys-chart-wrapper {
    position: relative;
    height: 280px;
    max-width: 100%;
}

.sys-service-block {
    background: var(--secondary);
    border-radius: var(--global-border-radius);
    padding: 3em;
    margin-bottom: 2.5em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(162, 147, 255, 0.1);
}
.sys-service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5em;
    margin-bottom: 2em;
}
.sys-service-icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.75rem;
}
.sys-service-icon-2 {
    background: linear-gradient(135deg, var(--accent-color-2) 0%, #5B9BD5 100%);
}
.sys-service-icon-3 {
    background: linear-gradient(135deg, #6B5B95 0%, var(--accent-color-2) 100%);
}
.sys-service-icon-4 {
    background: linear-gradient(135deg, #4A90A4 0%, var(--accent-color) 100%);
}
.sys-service-header h3 {
    margin-bottom: 0.35em;
}
.sys-service-header h4 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color) !important;
}
.sys-overview {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2em;
    font-size: 1.05rem;
}
.sys-subtitle {
    font-family: var(--font-1);
    color: var(--primary);
    margin-bottom: 1.25em;
    margin-top: 0.5em;
    font-size: 1.05rem;
}
.sys-feature-card {
    display: flex;
    align-items: center;
    gap: 1.25em;
    padding: 1.25em 1.5em;
    background: var(--accent-color-4);
    border-radius: 12px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.sys-feature-card:hover {
    background: rgba(162, 147, 255, 0.15);
    border-color: rgba(162, 147, 255, 0.3);
    transform: translateY(-2px);
}
.sys-feature-card i {
    color: var(--accent-color) !important;
    font-size: 1.35rem;
    min-width: 2em;
    text-align: center;
    flex-shrink: 0;
}
.sys-accordion .accordion-button {
    font-family: var(--font-1);
    background: var(--accent-color-4);
    color: var(--primary);
    border: none;
    padding: 1.25em 1.5em;
}
.sys-accordion .accordion-button:not(.collapsed) {
    background: rgba(162, 147, 255, 0.2);
    color: var(--accent-color);
}
.sys-accordion .accordion-item {
    border: 1px solid rgba(162, 147, 255, 0.15);
    border-radius: 12px !important;
    margin-bottom: 0.75em;
    overflow: hidden;
}
.sys-accordion .accordion-body {
    background: var(--secondary);
    padding: 2em 2.5em;
}
.sys-feature-list {
    margin: 0;
    padding-left: 1.5em;
}
.sys-feature-list li {
    margin-bottom: 1em;
    line-height: 1.7;
    padding-left: 0.5em;
}
.sys-service-block .progress-container {
    margin-bottom: 1.5em;
}
.sys-service-block .progress-container .progress-title {
    margin-bottom: 0.5em;
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .sys-service-block {
        padding: 2em;
    }
    .sys-service-header {
        flex-direction: column;
        gap: 1.25em;
    }
    .sys-chart-wrapper {
        height: 240px;
    }
    .sys-feature-card {
        padding: 1em 1.25em;
    }
}

/* Healthcare Page */
.hc-intro-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.hc-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 140px;
}
.hc-stat-icon {
    position: absolute;
    right: 1.25em;
    bottom: 1.25em;
    font-size: 2.5rem;
    opacity: 0.15;
    color: var(--accent-color);
}

/* Healthcare Dashboard Mockup */
.hc-dashboard-mockup {
    background: #f8f9fc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
}
.hc-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 1.5em;
    background: var(--primary);
    color: var(--secondary);
}
.hc-dashboard-logo {
    font-weight: 600;
    font-size: 1.1rem;
}
.hc-dashboard-logo i {
    margin-right: 0.5em;
    color: var(--accent-color);
}
.hc-dashboard-nav {
    display: flex;
    gap: 1.5em;
}
.hc-nav-item {
    font-size: 0.9rem;
    opacity: 0.8;
    cursor: pointer;
}
.hc-nav-item.active {
    opacity: 1;
    font-weight: 600;
    color: var(--accent-color);
}
.hc-dashboard-user {
    font-size: 0.9rem;
}
.hc-dashboard-user i {
    margin-right: 0.4em;
}
.hc-dashboard-body {
    display: flex;
    min-height: 380px;
}
.hc-dashboard-sidebar {
    width: 200px;
    background: #eef0f7;
    padding: 1.5em 0;
    border-right: 1px solid #e0e3ed;
}
.hc-sidebar-item {
    padding: 0.75em 1.5em;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75em;
}
.hc-sidebar-item i {
    color: var(--accent-color);
    width: 1.2em;
}
.hc-dashboard-content {
    flex: 1;
    padding: 1.5em 2em;
    background: var(--secondary);
}
.hc-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    margin-bottom: 1.5em;
}
.hc-stat-box {
    background: linear-gradient(135deg, #f1f3fd 0%, #e8ebf9 100%);
    padding: 1em 1.25em;
    border-radius: 10px;
    border: 1px solid rgba(162, 147, 255, 0.2);
}
.hc-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}
.hc-stat-label {
    font-size: 0.8rem;
    color: var(--text-color);
    margin-top: 0.25em;
}
.hc-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5em;
}
.hc-dashboard-card {
    background: #fafbff;
    border-radius: 10px;
    padding: 1.25em;
    border: 1px solid #e8ebf5;
}
.hc-dashboard-card h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 1em;
    font-weight: 600;
}
.hc-appointment-list {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.hc-appt-row {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 0.75em;
    padding: 0.5em 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}
.hc-appt-row:last-child { border-bottom: none; }
.hc-appt-time {
    font-weight: 600;
    color: var(--accent-color-2);
}
.hc-appt-name { color: var(--text-color); }
.hc-appt-type {
    font-size: 0.8rem;
    color: #888;
}
.hc-chart-placeholder {
    height: 180px;
    position: relative;
}
.hc-dashboard-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1em;
}

@media (max-width: 992px) {
    .hc-dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .hc-dashboard-grid { grid-template-columns: 1fr; }
    .hc-dashboard-sidebar { width: 160px; }
}
@media (max-width: 768px) {
    .hc-dashboard-body { flex-direction: column; }
    .hc-dashboard-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5em;
        padding: 1em;
    }
    .hc-sidebar-item { padding: 0.5em 0.75em; }
    .hc-dashboard-header { flex-wrap: wrap; gap: 0.5em; }
    .hc-dashboard-nav { display: none; }
}

/* Healthcare Service Blocks */
.hc-service-block {
    background: var(--secondary);
    border-radius: var(--global-border-radius);
    padding: 3em;
    margin-bottom: 2.5em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(162, 147, 255, 0.1);
}
.hc-service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5em;
    margin-bottom: 2em;
}
.hc-service-icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color-2) 0%, #5B9BD5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.75rem;
}
.hc-icon-2 { background: linear-gradient(135deg, #4A90A4 0%, #6B9BB5 100%); }
.hc-icon-3 { background: linear-gradient(135deg, #6B5B95 0%, #8B7BA5 100%); }
.hc-icon-4 { background: linear-gradient(135deg, var(--accent-color) 0%, #7B6BCF 100%); }
.hc-service-header h3 { margin-bottom: 0.35em; }
.hc-service-header h4 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color) !important;
}
.hc-overview {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2em;
    font-size: 1.05rem;
}
.hc-subtitle {
    font-family: var(--font-1);
    color: var(--primary);
    margin-bottom: 1.25em;
    margin-top: 0.5em;
    font-size: 1.05rem;
}
.hc-feature-card {
    display: flex;
    align-items: center;
    gap: 1.25em;
    padding: 1.25em 1.5em;
    background: var(--accent-color-4);
    border-radius: 12px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.hc-feature-card:hover {
    background: rgba(162, 147, 255, 0.15);
    border-color: rgba(162, 147, 255, 0.3);
    transform: translateY(-2px);
}
.hc-feature-card i {
    color: var(--accent-color) !important;
    font-size: 1.35rem;
    min-width: 2em;
    text-align: center;
    flex-shrink: 0;
}
.hc-service-block .progress-container .progress-title {
    color: var(--primary);
    font-weight: 600;
}
.hc-accordion .accordion-button {
    font-family: var(--font-1);
    background: var(--accent-color-4);
    color: var(--primary);
    border: none;
    padding: 1.25em 1.5em;
}
.hc-accordion .accordion-button:not(.collapsed) {
    background: rgba(162, 147, 255, 0.2);
    color: var(--accent-color);
}
.hc-accordion .accordion-item {
    border: 1px solid rgba(162, 147, 255, 0.15);
    border-radius: 12px !important;
    margin-bottom: 0.75em;
    overflow: hidden;
}
.hc-accordion .accordion-body {
    background: var(--secondary);
    padding: 2em 2.5em;
}
.hc-feature-list {
    margin: 0;
    padding-left: 1.5em;
}
.hc-feature-list li {
    margin-bottom: 1em;
    line-height: 1.7;
    padding-left: 0.5em;
}

/* Why Choose Cards */
.hc-why-card {
    background: var(--secondary);
    padding: 2em;
    border-radius: var(--global-border-radius);
    text-align: center;
    border: 1px solid rgba(162, 147, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}
.hc-why-card:hover {
    border-color: rgba(162, 147, 255, 0.4);
    transform: translateY(-4px);
}
.hc-why-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1em;
}
.hc-why-card h5 {
    font-family: var(--font-1);
    color: var(--primary);
    margin-bottom: 0.75em;
}
.hc-why-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}