:root {
    --cm-blue-50: #E9EDF4;
    --cm-blue-100: #C8D1E3;
    --cm-blue-200: #A4B3D1;
    --cm-blue-300: #7F95BE;
    --cm-blue-400: #5D79AD;
    --cm-blue-500: #243457;
    --cm-blue-600: #1E2C4A;
    --cm-blue-700: #18243D;
    --cm-blue-800: #121C30;
    --cm-blue-900: #0C1423;


    --cm-orange-50: #FFF3E9;
    --cm-orange-100: #FFE1C7;
    --cm-orange-200: #FFCBA2;
    --cm-orange-300: #FFB57D;
    --cm-orange-400: #FFA05C;
    --cm-orange-500: #F48120;
    --cm-orange-600: #D96F1A;
    --cm-orange-700: #B85D14;
    --cm-orange-800: #94490F;
    --cm-orange-900: #70360A;


    --cm-dark-50: #F2F2F2;
    --cm-dark-100: #D9D9D9;
    --cm-dark-200: #BFBFBF;
    --cm-dark-300: #A6A6A6;
    --cm-dark-400: #8C8C8C;
    --cm-dark-500: #1C1C1C;
    --cm-dark-600: #161616;
    --cm-dark-700: #111111;
    --cm-dark-800: #0B0B0B;
    --cm-dark-900: #060606;


    --cm-white: #FFFFFF;
    --cm-gray-50: #FAFAFA;
    --cm-gray-100: #F5F5F5;
    --cm-gray-200: #EEEEEE;
    --cm-gray-300: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    background: var(--cm-gray-100);
    color: var(--cm-white);
    overflow-x: hidden;
}

/* Floating Vertical Brochure Button */
.brochure-btn {
    position: fixed;
    right: -10px;
    /* Hidden initially */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 14px 18px 10px;
    background: linear-gradient(135deg, #0b2c4d, #0f3b66);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9999;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Icon Style */
.brochure-btn .icon {
    font-size: 20px;
    color: #ff7a00;
}

/* Slide Out Effect */
.brochure-btn:hover {
    right: 0;
    background: linear-gradient(135deg, #0f3b66, #144b82);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Smooth hover scale */
.brochure-btn:hover .icon {
    transform: scale(1.15);
    transition: 0.3s ease;
}


/* ========================================================== WEBKIT SCROLLBAR =========================== */
::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cm-blue-900);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            var(--cm-orange-400),
            var(--cm-orange-600));
    border-radius: 20px;
    border: 2px solid var(--cm-blue-900);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            var(--cm-orange-300),
            var(--cm-orange-500));
    box-shadow: 0 0 8px var(--cm-orange-500);
}

::-webkit-scrollbar-thumb:active {
    background: var(--cm-orange-500);
}

::-webkit-scrollbar-corner {
    background: var(--cm-blue-900);
}


/* ================================================================================================================== NAVBAR */
.lux-navbar {
    /* overflow: hidden !important; */
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

.lux-nav-wrapper {
    /* overflow: hidden !important; */
    position: relative;
    border-radius: 70px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

.nav-left {
    z-index: 2;
}

.navbar-nav {
    padding: 8px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.nav-link {
    color: var(--cm-gray-100) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-link.active {
    background: var(--cm-white);
    color: var(--cm-blue-800) !important;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

.brand-logo img {
    width: 120px;
    transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

.nav-right {
    margin-left: auto;
    z-index: 2;
}

.nav-cta {
    background: var(--cm-orange-500);
    color: var(--cm-white);
    border-radius: 40px;
    padding: 12px 26px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 129, 32, 0.4);
}

.navbar-scrolled {
    top: 12px;
}

.navbar-scrolled .lux-nav-wrapper {
    padding: 10px 15px;
    border-radius: 50px;
    backdrop-filter: blur(25px);
    background: rgba(18, 28, 48, 0.75);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.navbar-scrolled .brand-logo img {
    width: 120px;
}

.navbar-scrolled .nav-link {
    padding: 8px 14px !important;
    font-size: 14px;
}

.navbar-scrolled .nav-cta {
    padding: 8px 20px;
    font-size: 14px;
}

.navbar-scrolled .navbar-nav {
    padding: 5px;
}

.navbar-scrolled::after {
    opacity: 1;
}

.dropdown-hover {
    position: relative;
}

.lux-dropdown {
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    background: var(--cm-white);
    border-radius: 16px;
    padding: 18px;
    min-width: 240px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--cm-gray-200);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.dropdown-hover:hover>.lux-dropdown {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-hover:hover .lux-dropdown,
.dropdown-hover .lux-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-dropdown {
    width: 580px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: all .3s ease;
}

.mega-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--cm-gray-200);
}

.mega-item span {
    font-weight: 600;
    font-size: 12px;
    color: var(--cm-blue-600);
}

.mega-item:hover {
    background: var(--cm-orange-50);
    transform: translateX(6px);
}

.mega-item:hover span {
    color: var(--cm-orange-600);
}

.lux-toggler {
    border: none;
    font-size: 28px;
    color: var(--cm-white);
}

.lux-offcanvas {
    width: 280px;
    background: var(--cm-white);
}

.lux-offcanvas .nav-link {
    color: var(--cm-blue-800) !important;
    padding: 10px 0 !important;
    font-weight: 500;
}

.mobile-submenu {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-submenu a {
    text-decoration: none;
    color: var(--cm-blue-600);
    font-size: 14px;
}


/* ================= PREMIUM SECTION HEADING ================= */
.section-heading {
    position: relative;
    margin-bottom: 80px;
}

.section-tag {
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cm-dark-400);
    padding-bottom: 14px;
}

.section-tag::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 1px;
    background: linear-gradient(to right,
            var(--cm-orange-500),
            transparent);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 28px;
    color: var(--cm-blue-600);
    letter-spacing: -1px;
}

.section-title span {
    position: relative;
    color: var(--cm-orange-500);
}


/* ================================================================================================ HERO SECTION */
.hero-wrapper {
    padding: 10px;
    overflow: hidden !important;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    border-radius: 40px;
    overflow: hidden !important;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(12, 20, 35, 0.9) 0%,
            rgba(12, 20, 35, 0.6) 40%,
            rgba(12, 20, 35, 0.2) 70%,
            rgba(12, 20, 35, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.05;
    /* background: linear-gradient(to right, #ffffff, #c8d1e3); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.hero-sub {
    color: #ddd;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    font-size: 18px;
}

.hero-btn {
    border-radius: 40px;
    padding: 14px 28px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.hero-btn:hover {
    background: var(--cm-orange-500);
    border-color: var(--cm-orange-500);
}

.hero-thumbs {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.thumb {
    width: 90px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s ease;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ==================================================================================== ABOUT US SECTION */
.lux-section {
    background: var(--cm-gray-100);
    padding-top: 80px;
    padding-bottom: 60px;
    overflow: hidden !important;
}

.award-box h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--cm-dark-700);
}

.award-box span {
    font-size: 32px;
}

.award-box p {
    color: var(--cm-dark-400);
    font-size: 15px;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.img-overlay {
    position: absolute;
    /* left: -80px; */
    bottom: -40px;
    width: 60%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.content-box h2 {
    font-size: 34px;
    font-weight: 500;
    color: var(--cm-dark-700);
    line-height: 1.4;
}

.content-box p {
    margin-top: 20px;
    margin-bottom: 40px;
    color: var(--cm-dark-400);
    font-size: 15px;
    line-height: 1.7;
}

.lux-btn {
    margin-top: 25px;
    background: #d6a25a;
    color: var(--cm-white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.lux-btn:hover {
    background: var(--cm-orange-500);
    transform: translateY(-3px);
}

.lux-stats {
    margin-top: 70px;
    background: transparent;
}

.stat-item {
    padding: 30px 40px;
}

.stat-item h3 {
    font-size: 52px;
    font-weight: 700;
    color: var(--cm-dark-700);
}

.stat-item h6 {
    font-weight: 600;
    margin-top: 10px;
    color: var(--cm-dark-600);
}

.stat-item p {
    font-size: 14px;
    margin-top: 10px;
    color: var(--cm-dark-400);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.border-start,
.border-end {
    border-color: #ddd !important;
}

/* ===================================================================================== WHAT WE DO SECTION ================= */
.what-we-do-section {
    border-radius: 40px;
    overflow: hidden !important;
    background: linear-gradient(145deg,
            var(--cm-blue-900),
            var(--cm-blue-500));
    padding: 80px 0;
}

.what-we-do-title {
    font-weight: 600;
    color: var(--cm-dark-200);
    line-height: 1.2;
}

.what-we-do-desc {
    color: var(--cm-dark-400);
    margin: 25px 0 35px;
    font-size: 15px;
    max-width: 420px;
}

.what-we-do-btn {
    background: var(--cm-orange-500);
    color: var(--cm-white);
    padding: 13px 30px;
    border-radius: 10px;
    font-weight: 500;
    border: none;
    transition: all 0.35s ease;
}

.what-we-do-btn:hover {
    background: var(--cm-blue-500);
    transform: translateY(-2px);
}

.what-we-do-img-wrapper {
    height: 100%;
    min-height: 520px;
    position: relative;
    /* max-width: 390px; */
    margin: auto;
}

.what-we-do-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
    transition: opacity 0.6s cubic-bezier(.4, 0, .2, 1),
        transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.what-we-do-img-hide {
    opacity: 0;
    transform: scale(1.05);
}

.what-we-do-img-show {
    opacity: 1;
    transform: scale(1);
}

.what-we-do-pointer-item {
    border-bottom: 1px solid var(--cm-dark-400);
    padding: 22px 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.what-we-do-pointer-title {
    font-weight: 500;
    font-size: 20px;
    color: var(--cm-dark-200);
    transition: color 0.4s ease;
}

.what-we-do-what-we-do-pointer-content-wrapper {
    overflow: hidden;
    transition: height 0.6s cubic-bezier(.4, 0, .2, 1),
        opacity 0.5s ease;
    height: 0;
    opacity: 0;
}

.what-we-do-pointer-content {
    padding-top: 12px;
    font-size: 18px;
    color: var(--cm-dark-400);
    line-height: 1.6;
}

.what-we-do-pointer-item.active .what-we-do-pointer-title {
    color: var(--cm-dark-200);
}

.what-we-do-pointer-item:hover {
    padding-left: 10px;
}

/* ==================================================================================== GSAP STACK SECTION */
.stack-section {
    padding: 80px 0;
    overflow: hidden !important;
}

.dark-stack-section {
    overflow: hidden !important;
    background: linear-gradient(135deg, var(--cm-blue-900), var(--cm-blue-800));
}

.stack-wrapper {
    width: 80%;
    margin: 0 auto;
}

.stack-card {
    /* width: 80%; */
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    max-height: 550px;
    margin-top: 40px;
    border-radius: 24px;
    background: var(--cm-white);
    box-shadow: 0 25px 70px rgba(15, 75, 52, 0.08);
    border: 1px solid var(--cm-gray-200);
    overflow: hidden;
    padding: 60px;
}

.stack-card-content {
    padding-right: 40px;
}

.stack-card-role {
    display: inline-block;
    background: var(--cm-orange-50);
    color: var(--cm-orange-600);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stack-card-name {
    font-size: 26px;
    color: var(--cm-blue-800);
    font-weight: 700;
    margin-bottom: 20px;
}

.stack-card-desc {
    color: var(--cm-dark-400);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stack-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--cm-blue-700);
    color: var(--cm-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.stack-btn:hover {
    background: var(--cm-orange-500);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 75, 52, 0.2);
}

.stack-card-image {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.stack-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.stack-card:hover .stack-card-image img {
    transform: scale(1.05);
}

/* ============================================================================================= WHY CHOOSE US SECTION */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cm-blue-900), var(--cm-blue-800));
    color: var(--cm-white);
    position: relative;
    overflow: visible;
}

.why-choose-section .col-lg-6:first-child {
    align-self: stretch;
}

.sticky-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 25px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.sticky-image-wrapper-inner {
    border-radius: 25px;
    overflow: hidden;
}

.sticky-image-wrapper:hover .why-choose-img {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.why-choose-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(to top, rgba(12, 20, 35, 0.7), transparent);
}

.why-choose-description {
    color: var(--cm-dark-200);
    margin-bottom: 50px;
    font-size: 17px;
    line-height: 1.8;
}

.why-choose-box {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.why-choose-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--cm-orange-500);
}

.why-choose-icon-box {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cm-orange-500), var(--cm-orange-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--cm-white);
    box-shadow: 0 15px 30px rgba(244, 129, 32, 0.4);
}

.why-choose-icon-box img {
    width: 38px;
    height: 38px;
    filter: brightness(0) invert(1);
}

.why-choose-box h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.why-choose-box p {
    color: var(--cm-dark-200);
    margin: 0;
    font-size: 15px;
}


/* ===================================================================================== ABOUT US LIGHT WHY CHOOSE SECTION */
.light-why-choose-section {
    padding: 80px 0;
    color: var(--cm-white);
    position: relative;
    overflow: visible;
}

.light-why-choose-section .col-lg-6:first-child {
    align-self: stretch;
}

.light-why-choose-section .why-choose-box {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 18px;
    background: var(--cm-blue-800);
    backdrop-filter: blur(10px);
    transition: all 0.9s ease;
}

.light-why-choose-section .why-choose-box:hover {
    transform: translateY(-8px);
    border: 2px solid var(--cm-orange-500) !important;
}

.light-why-choose-section .why-choose-icon-box {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cm-orange-500), var(--cm-orange-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--cm-white);
    box-shadow: 0 15px 30px rgba(244, 129, 32, 0.4);
}

.light-why-choose-section .why-choose-icon-box img {
    width: 38px;
    height: 38px;
    filter: brightness(0) invert(1);
}

.light-why-choose-section .why-choose-box h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.light-why-choose-section .why-choose-box p {
    color: var(--cm-dark-200);
    margin: 0;
    font-size: 15px;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 80px 0px 60px;
    overflow: hidden !important;
}

.faq-left p {
    font-size: 18px;
    color: var(--cm-dark-400);
    margin-top: 15px;
}

.faq-btn {
    background: var(--cm-orange-500);
    color: var(--cm-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(244, 129, 32, 0.25);
}

.faq-btn:hover {
    background: var(--cm-orange-600);
    transform: translateY(-2px);
}

.faq-accordion .faq-item {
    background: var(--cm-gray-200);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 24px 28px;
    cursor: pointer;
    transition:
        background 0.3s ease,
        border 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.faq-accordion .faq-item:hover {
    background: var(--cm-gray-300);
}

.faq-accordion .faq-item.active {
    background: var(--cm-white);
    border: 1px solid var(--cm-orange-300);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.faq-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-number {
    font-weight: 600;
    color: var(--cm-dark-400);
    margin-right: 15px;
}

.faq-question {
    font-weight: 600;
    color: var(--cm-blue-900);
    font-size: 16px;
}

.faq-icon {
    font-size: 32px;
    font-weight: 300;
    color: var(--cm-blue-900);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.6s cubic-bezier(.4, 0, .2, 1),
        opacity 0.4s ease,
        margin 0.4s ease;
    font-size: 15px;
    color: var(--cm-dark-400);
    margin-top: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
    margin-top: 15px;
}

/* ================= BLOGS SECTION ================= */
.blogs-section {
    background: linear-gradient(135deg, var(--cm-blue-900), var(--cm-blue-800));
    border-radius: 40px;
    padding: 70px 0;
    overflow: hidden !important;
}

.all-blogs-section {
    padding: 70px 0;
    overflow: hidden;
}

.all-blogs-section .blog-title {
    color: var(--cm-dark-500);
}

.blog-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--cm-white);
    border: 1px solid var(--cm-gray-300);
    font-size: 14px;
    font-weight: 500;
    color: var(--cm-blue-600);
    margin-bottom: 20px;
}

.blog-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--cm-dark-500);
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 60px;
}

.blog-card {
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img-wrapper {
    overflow: hidden;
    border-radius: 28px;
}

.blog-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.07);
}

.blog-content {
    padding: 22px 10px 10px 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--cm-dark-100);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-meta {
    font-size: 14px;
    color: var(--cm-blue-300);
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-icon {
    font-size: 14px;
    color: var(--cm-orange-500);
}

/* ===================================================================== TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    overflow: hidden !important;
}

.testimonial-wrapper {
    margin-top: 70px;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.testimonial-wrapper:hover .testimonial-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-stack {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-card {
    background: var(--cm-blue-100);
    padding: 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-card img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-card h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--cm-blue-900);
}

.profile-card span {
    font-size: 13px;
    color: var(--cm-dark-400);
}

.review-card {
    background: var(--cm-gray-200);
    padding: 20px;
    border-radius: 20px;
}

.meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}

.stars {
    color: var(--cm-orange-500);
}

.location {
    color: var(--cm-dark-400);
}

.divider {
    border-top: 1px dashed var(--cm-gray-300);
    margin: 15px 0;
}

.review {
    font-size: 15px;
    font-weight: 500;
    color: var(--cm-blue-600);
}

/*------------------------ GROUP CLASSES SECTION --------------------*/
.gallery-section {
    padding: 80px 0;
    color: var(--cm-white);
    overflow: hidden !important;
    background: linear-gradient(135deg, var(--cm-blue-900), var(--cm-blue-800));
}

/* .gallery-wrapper {
    display: grid;
    gap: 14px;
    height: clamp(360px, 80vh, 520px);
    transition: grid-template-columns 0.9s cubic-bezier(0.77, 0, 0.18, 1);
} */

.gallery-wrapper {
    display: flex;
    gap: 14px;
    height: clamp(360px, 80vh, 520px);
}

/* 
.gallery-stack-card {
    position: relative;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s ease;
} */

.gallery-stack-card {
    flex: 1;
    position: relative;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    transition:
        flex 0.8s cubic-bezier(0.77, 0, 0.18, 1),
        transform 0.6s ease,
        box-shadow 0.6s ease;
}


.gallery-stack-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(6, 6, 6, 0.75),
            rgba(12, 20, 35, 0.55),
            rgba(0, 0, 0, 0.15));
}

.gallery-stack-card .content {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 2;
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.5s ease 0.35s,
        transform 0.6s ease 0.35s;
}

.gallery-stack-card.active .content {
    opacity: 1;
    transform: translateY(0);
}

.gallery-stack-card h4 {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    color: var(--cm-white);
    font-weight: 600;
}

.gallery-stack-card p {
    font-size: 0.95rem;
    color: var(--cm-gray-200);
    opacity: 0.9;
}

/* 
.gallery-stack-card.active {
    box-shadow: 0 20px 50px rgba(32, 81, 244, 0.10);
} */

.gallery-stack-card.active {
    flex: 3;
    box-shadow: 0 20px 50px rgba(32, 81, 244, 0.15);
}


.gallery-stack-card:hover {
    transform: scale(1.02);
}

/* ========================================================================================== FOOTER SECTION */
footer {
    width: 100%;
    background: linear-gradient(135deg, var(--cm-dark-900) 0%, var(--cm-blue-800) 100%);
    position: relative;
    overflow: hidden !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--cm-orange-500) 50%, transparent 100%);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 165, 92, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-text {
    color: var(--cm-white);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.brand-text strong {
    color: var(--cm-orange-500);
    font-weight: 600;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--cm-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--cm-orange-500) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(244, 129, 32, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cm-orange-500);
    flex-shrink: 0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--cm-orange-500);
    color: var(--cm-white);
    transform: translateY(-3px);
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.footer-contact-text p strong {
    color: var(--cm-white);
    display: block;
    font-size: 14px;
}

.footer-contact-item:hover .footer-contact-text p {
    color: var(--cm-orange-500);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cm-orange-500);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--cm-orange-500);
    padding-left: 6px;
}

.footer-links a:hover::before {
    width: 40%;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(244, 129, 32, 0.15);
    border: 1.5px solid var(--cm-orange-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cm-orange-500);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--cm-orange-500);
    color: var(--cm-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(244, 129, 32, 0.25);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 165, 92, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-copyright strong {
    color: var(--cm-orange-500);
}

.footer-copyright a {
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--cm-orange-500);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-top {
        padding: 50px 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        /* gap: 20px; */
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-section-title::after {
        left: 0;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 25px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* =============================================================================== BREADCRUMB SECTION */
.lux-breadcrumb-wrapper {
    margin: 10px;
    overflow: hidden !important;
}

.lux-breadcrumb {
    position: relative;
    border-radius: 40px;
    overflow: hidden !important;
    padding: 180px 20px 150px;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(12, 20, 35, 0.85),
            rgba(24, 36, 61, 0.85));
}

.lux-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.lux-breadcrumb h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--cm-white);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--cm-orange-500);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--cm-white);
}

.breadcrumb-item.active {
    color: var(--cm-blue-100);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--cm-blue-200);
}

/* =============================================================================== PRODUCTS DETAILS PAGE */
.product-strip {
    position: relative;
    overflow: hidden !important;
    padding: 80px 0;
}

.product-strip ul {
    padding-left: 0;
}

.product-strip ul li {
    padding: 5px 0;
    color: var(--cm-dark-700);
}

.product-strip ul li i {
    margin-right: 5px;
    color: var(--cm-orange-500);
}

.product-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cm-orange-400);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--cm-orange-500);
}

.product-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cm-blue-700);
}

.product-title em {
    font-style: italic;
    color: var(--cm-orange-400);
}

.product-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--cm-dark-400);
    max-width: 560px;
    margin-top: 20px;
}

.product-image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
}

.product-image-wrap:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 52, 87, 0.15) 0%, transparent 60%);
}

.product-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--cm-orange-500);
    color: var(--cm-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
}


.product-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cm-orange-500);
    color: var(--cm-white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 32px;
}

.product-cta-btn:hover {
    background: var(--cm-orange-600);
    color: var(--cm-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(244, 129, 32, 0.35);
}

.product-cta-btn svg {
    transition: transform 0.3s;
}

.product-cta-btn:hover svg {
    transform: translateX(4px);
}

.product-section-wrap {
    padding: 80px 0;
}

.product-section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cm-orange-500);
    margin-bottom: 12px;
}

.product-section-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cm-blue-700);
    margin-bottom: 8px;
}

.product-section-sub {
    font-size: 0.9rem;
    color: var(--cm-blue-400);
    line-height: 1.65;
}

/* ========================================================================================================== TABLE SECTION */
.lift-table-section {
    padding: 20px 0;
    overflow: hidden !important;
    /* background: linear-gradient(135deg, var(--cm-blue-50), #ffffff); */
}

.premium-table-wrapper {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(36, 52, 87, 0.08);
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    text-align: center;
}

.premium-table th,
.premium-table td {
    padding: 14px 10px;
    border: 1px solid var(--cm-gray-200);
}

.premium-table thead tr:first-child th {
    background: linear-gradient(135deg, var(--cm-orange-500), var(--cm-orange-600));
    color: var(--cm-white);
    font-weight: 600;
    font-size: 15px;
    border: none;
}

.premium-table thead tr:nth-child(2) th {
    background: var(--cm-blue-50);
    font-weight: 600;
    color: var(--cm-blue-600);
}

.premium-table thead tr:nth-child(3) th {
    background: var(--cm-gray-100);
    font-weight: 500;
    color: var(--cm-blue-500);
}

.premium-table tbody tr {
    transition: 0.3s ease;
}

.premium-table tbody tr:hover {
    background: rgba(244, 129, 32, 0.05);
}

.premium-table tbody td {
    font-weight: 500;
    color: #333;
}

.premium-table thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

.premium-table thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

.table-title {
    font-weight: 700;
    color: var(--cm-blue-600);
    margin-bottom: 40px;
    text-align: center;
}

/* ================================================================================================ RELATED PRODUCTS SETION */
.lux-products-section {
    padding: 80px 0;
}

.lux-products-section,
.lux-products-section .container-fluid,
.lux-products-section .row {
    overflow: visible !important;
}

.lux-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cm-orange-500);
    font-weight: 600;
}

.lux-title {
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--cm-blue-800);
    margin: 18px 0;
    line-height: 1.2;
}

.lux-desc {
    color: var(--cm-dark-400);
    max-width: 540px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.lux-products-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.lux-products-list a {
    text-decoration: none;
}

.lux-product-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--cm-white);
    padding: 24px 26px;
    border-radius: 14px;
    border: 1px solid var(--cm-gray-200);
    transition: all 0.35s ease;
    cursor: pointer;
}

.lux-product-card:hover {
    transform: translateX(6px);
    border-color: var(--cm-orange-200);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

/* .lux-product-card h5 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--cm-blue-700);
    font-weight: 600;
} */

.lux-product-card h5 {
    margin: 0 0 3px;
    font-size: 1rem;
    color: var(--cm-blue-700);
    font-weight: 600;
}

.lux-product-card span {
    font-size: 0.85rem;
    color: var(--cm-dark-400);
}

/* .lux-product-icon {
    width: 52px;
    height: 52px;
    background: var(--cm-orange-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cm-orange-500);
    font-size: 20px;
    transition: 0.3s;
} */

.lux-product-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--cm-orange-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cm-orange-500);
    font-size: 20px;
    transition: background 0.3s, color 0.3s;
}

.lux-product-card:hover .lux-product-icon {
    background: var(--cm-orange-500);
    color: var(--cm-white);
}

.lux-sticky-col {
    position: sticky !important;
    top: 120px;
}

/* .lux-cta-card {
    position: sticky !important;
    top: 120px;
    align-self: flex-start;
    padding: 60px 50px;
    border-radius: 22px;
    background: linear-gradient(135deg,
            var(--cm-blue-800),
            var(--cm-blue-600));
    color: var(--cm-white);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
} */

.lux-cta-card {
    padding: 56px 46px;
    border-radius: 22px;
    background: linear-gradient(135deg,
            var(--cm-blue-800),
            var(--cm-blue-600));
    color: var(--cm-white);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.22);
}

.lux-cta-card h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 22px;
}

.lux-cta-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.lux-cta-info {
    margin-top: 30px;
    font-size: 0.85rem;
}

.lux-cta-info strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.lux-cta-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    background: var(--cm-orange-500);
    color: var(--cm-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lux-cta-btn:hover {
    background: var(--cm-orange-600);
    transform: translateY(-3px);
}

/* ============================================================================= BLOG DETAILS PAGE */
.blog-details-section {
    padding: 80px 0;
    /* overflow: hidden !important; */
}

.blog-details-hero {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.blog-details-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.6s;
}

.blog-details-hero:hover img {
    transform: scale(1.05);
}

.blog-details-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 20, 35, 0.85), rgba(12, 20, 35, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.blog-details-title {
    color: var(--cm-white);
    font-size: 40px;
    font-weight: 700;
    max-width: 700px;
}

.blog-details-meta {
    margin-top: 15px;
    color: var(--cm-blue-100);
    font-size: 14px;
}

.blog-details-content {
    background: var(--cm-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.blog-details-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--cm-blue-600);
    margin-top: 40px;
}

.blog-details-content p {
    line-height: 1.9;
    color: #555;
}

.blog-details-content ul {
    padding-left: 20px;
}

.blog-details-content ul li {
    color: var(--cm-dark-700);
    margin-bottom: 10px;
    position: relative;
}

.blog-details-content ul li::marker {
    color: var(--cm-orange-500);
}

.blog-details-sidebar {
    background: var(--cm-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: 0.3s;
}

.blog-details-sidebar:hover {
    transform: translateY(-5px);
}

.blog-details-sidebar-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--cm-blue-600);
}

.blog-details-sidebar p {
    color: var(--cm-dark-500);
}

.latest-post a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--cm-gray-200);
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.latest-post a:hover {
    color: var(--cm-orange-500);
    padding-left: 10px;
}

.blog-details-cta {
    background: linear-gradient(135deg, var(--cm-blue-600), var(--cm-blue-800));
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-top: 50px;
}

.blog-details-cta p {
    color: var(--cm-dark-400);
}

.blog-details-cta button {
    background: var(--cm-orange-500);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.blog-details-cta button:hover {
    background: var(--cm-orange-600);
}

.blog-details-sticky-sidebar {
    position: sticky;
    top: 100px;
}