@font-face {
    font-family: 'Bebas Neue';
    src: url('../Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --primary-color: #0A0909;
    --bg-color: #0a0a0a;
    --text-color: #EFECE5;
    --nav-bg: #111111;
    --nav-border: rgba(255, 255, 255, .07);
    --nav-text: rgba(255, 255, 255, .72);
    --nav-text-hover: #ffffff;
    --nav-active-bg: #910D17;
    --nav-active-text: #ffffff;
    --accent: #910D17;
    --accent-dark: #b81c20;
    --accent-glow: rgba(230, 36, 41, .45);
    --nav-height: 68px;
    --nav-radius: 100px;
    --nav-pad-x: 28px;
    --transition: .32s cubic-bezier(.4, 0, .2, 1);
    --card-bg: #151515;
    --mega-bg: #F8F9F3;
    --mega-text: #1a1a1a;
    --mega-title: #999;
    --mega-desc: #aaa;
    --bm-glass: rgba(15, 15, 15, 0.95);
    --bm-border: rgba(255, 255, 255, 0.1);
    --bm-input-bg: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
    --primary-color: #ffffff;
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --nav-bg: #f8f9fa;
    --nav-border: rgba(0, 0, 0, .1);
    --nav-text: rgba(0, 0, 0, .7);
    --nav-text-hover: #000000;
    --nav-active-text: #ffffff;
    --card-bg: #f0f0f0;
    --card-bg: #f0f0f0;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    font-family: var(--font-body);
    transition: background var(--transition), color var(--transition);
}

::-webkit-scrollbar {
    width: 3.5px;
}


::-webkit-scrollbar-track {
    background: #ffffff;
}


::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

hr{
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}



.dm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow var(--transition), background var(--transition);
}

.dm-header.is-scrolled {
    background: var(--nav-bg);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .15);
}

.dm-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #ff6b6b);
    transition: width .1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px var(--accent-glow);
}

.dm-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    /* max-width: 1600px; */
    margin: 0 2%;
    gap: 24px;
}

.dm-nav__logo {
    flex-shrink: 0;
}

.dm-logo-link {
    display: block;
    position: relative;
    border-radius: 8px;
    outline: none;
}

.dm-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.dm-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--nav-border);
    border-radius: var(--nav-radius);
    padding: 6px 10px;
    animation: navSlideDown .55s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dm-nav__item {
    position: relative;
}

.dm-nav__link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nav-text);
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    transition: color var(--transition), background var(--transition),
        transform var(--transition), box-shadow var(--transition);
    isolation: isolate;
    font-family: var(--font-body);
}

.dm-nav__link i {
    font-size: .9rem;
    transition: transform var(--transition), color var(--transition);
}




/* MEGA MENU STYLES */

/* Hide the 'up' icon by default */
.dm-icon-up {
    display: none !important;
}

/* Parent list item state */
.dm-nav__item--has-mega:hover .dm-icon-down {
    display: none !important;
}

.dm-nav__item--has-mega:hover .dm-icon-up {
    display: block !important;
}

.dm-mega-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 1300px;
    background: var(--mega-bg);
    /* Off-white from design */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

/* Show mega menu on hover */
.dm-nav__item--has-mega:hover .dm-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dm-mega-menu__container {
    padding: 40px;
}

.dm-mega-menu__content {
    display: flex;
    gap: 40px;
}

.dm-mega-menu__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 16px;
}

.dm-mega-menu__column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dm-mega-menu__column:hover .dm-mega-menu__title {
    color: var(--accent);
    transition: all .3s ease-in-out;
}

.dm-mega-menu__column:hover .dm-mega-menu__desc {
    color: #1a1a1a;
    transition: all .3s ease-in-out;
}

.dm-mega-menu__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dm-mega-menu__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mega-title);
    letter-spacing: 0.08em;
    margin: 0;
    text-transform: uppercase;
}

.dm-mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dm-mega-menu__link {
    font-size: .8rem;
    font-weight: 500;
    color: var(--mega-text);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.dm-mega-menu__link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.dm-mega-menu__desc {
    font-size: 17px;
    color: var(--mega-desc);
    margin-top: 6px;
    line-height: 1.4;
}

/* Image side */
.dm-mega-menu__image-side {
    width: 420px;
    cursor: pointer;
}

.dm-mega-menu__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}

.dm-mega-menu__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.dm-mega-menu__image-wrapper:hover .dm-mega-menu__img {
    transform: scale(1.05);
}

.dm-mega-menu__image-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.116), rgba(0, 0, 0, 0.192));
}

.dm-mega-menu__badge {
    align-self: flex-start;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: auto;
}

.dm-mega-menu__image-title {
    font-size: 1.6rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

/* Arrow state for nav link on hover */
.dm-nav__item--has-mega:hover .dm-nav__link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Active mega menu item */
.dm-mega-menu__column--active .dm-mega-menu__group {
    /* background: rgba(255, 0, 21, 0.08); */
    /* border: 1px solid rgba(255, 0, 21, 0.4); */
    /* border-radius: 10px; */
    /* padding: 12px; */
    transition: all 0.3s ease;
}

/* Title highlight */
.dm-mega-menu__column--active .dm-mega-menu__title {
    color: var(--accent);
}

/* Optional: description brighter */
.dm-mega-menu__column--active .dm-mega-menu__desc {
    color: #000;
}

/* 
 */

/* MOBILE & TABLET NAVIGATION (COMMON STYLES)*/

/* Hide by default */
.dm-mobile-header,
.dm-mobile-menu {
    display: none;
}

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

    .dm-header {
        display: none;
    }

    .dm-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 24px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--bg-color);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--nav-border);
    }

    .dm-mobile-header__logo img {
        height: 22px;
        width: auto;
    }

    .dm-mobile-burger {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }


    /* Full-screen Menu Overlay */
    .dm-mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: var(--bg-color);
        z-index: 2000;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .dm-mobile-menu.is-open {
        transform: translateY(0);
    }

    .dm-mobile-menu__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dm-mobile-menu__logo img {
        height: 22px;
        width: auto;
    }

    .dm-mobile-close {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .dm-mobile-close:hover {
        transform: rotate(90deg);
    }

    .dm-mobile-menu__body {
        padding: 24px;
        padding-bottom: 120px;
    }

    /* Search Bar */
    .dm-mobile-search {
        display: flex;
        margin-bottom: 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0 0 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        overflow: hidden;
    }

    .dm-mobile-search__input {
        flex: 1;
        background: none;
        border: none;
        padding: 15px 20px;
        color: #fff;
        font-size: 1rem;
        outline: none;
    }

    .dm-mobile-search__btn {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.4);
        padding: 0 20px;
        font-size: 1.1rem;
    }

    /* Nav List */
    .dm-mobile-nav__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dm-mobile-nav__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dm-mobile-nav__link,
    .dm-mobile-nav__trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
    }

    .dm-mobile-nav__trigger i {
        font-size: 1rem;
        color: var(--accent);
        transition: transform 0.3s ease;
    }

    /* Accordion Dropdowns */
    .dm-mobile-nav__dropdown {
        list-style: none;
        padding: 0 0 15px 20px;
        display: none;
    }

    .dm-mobile-nav__item--dropdown.active>.dm-mobile-nav__dropdown {
        display: block;
    }

    .dm-mobile-nav__item--dropdown.active>.dm-mobile-nav__trigger i {
        transform: rotate(45deg);
    }

    /* Sub Dropdowns */
    .dm-mobile-nav__sub-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        cursor: pointer;
        text-transform: uppercase;
    }

    .dm-mobile-nav__sub-dropdown {
        list-style: none;
        padding: 0 0 10px 15px;
        display: none;
    }

    .dm-mobile-nav__sub-dropdown li {
        display: block;
        padding: 8px 0;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        font-size: 0.89rem;
    }

    .dm-mobile-nav__sub-item--dropdown.active>.dm-mobile-nav__sub-dropdown {
        display: block;
    }

    .dm-mobile-nav__sub-item--dropdown.active>.dm-mobile-nav__sub-trigger i {
        transform: rotate(180deg);
        color: var(--accent);
    }

    /* .dm-video-slider {
        height: 650px !important;
    } */

    .dm-service-features {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .dm-video-slide {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .str-services-content,
    .str-work-info,
    .tra-why-choose,
    .tra-services-section,
    .tra-provide-grid,
    .smm-platforms-card,
    .smm-benefits-grid {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .str-work-img {
        display: none !important;
    }

}

/* ── Tablet Portrait Overrides ── */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .dm-header {
        display: none !important;
    }

    .dm-mobile-header {
        padding: 20px 40px !important;
    }

    .dm-mobile-header__logo img {
        height: 32px !important;
    }

    .dm-mobile-burger {
        font-size: 1.8rem !important;
    }

    .dm-mobile-menu__header {
        padding: 20px 40px !important;
    }

    .dm-mobile-menu__body {
        padding: 40px !important;
        padding-bottom: 120px !important;
        /* max-width: 600px !important; */
        margin: 0 auto !important;
    }

    /* Mobile Menu Font Adjustments for Tablet */
    .dm-mobile-nav__link,
    .dm-mobile-nav__trigger {
        font-size: 1.5rem !important;
        padding: 22px 0 !important;
    }

    .dm-mobile-nav__sub-trigger {
        font-size: 1.25rem !important;
    }

    .dm-mobile-nav__sub-dropdown li {
        font-size: 1.1rem !important;
        padding: 12px 0 !important;
    }

    .dm-mobile-nav__dropdown {
        padding-bottom: 25px !important;
    }

    .dm-mobile-search__input {
        font-size: 1.2rem !important;
    }

    .dm-mobile-close {
        font-size: 2.2rem !important;
    }

    .dm-hero__right {
        width: 100% !important;
        max-width: 480px !important;
        margin: 40px auto 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .dm-hero__services {
        width: 100% !important;
    }

    .dm-hero__tagline {
        text-align: center !important;
        width: 100% !important;
    }

    .dm-hero__stat-card {
        flex: 1 !important;
        min-width: 250px !important;
    }

    .dm-dashboard__graph-container {
        height: 130px !important;
    }

    .dm-dashboard__svg {
        width: auto !important;
    }

    .dm-process__step-title {
        font-size: 1.2rem !important;
    }

    /* dm-work section expansion */
    .dm-work__grid {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 30px !important;
    }

    .dm-work__item,
    .dm-work__item--large,
    .dm-work__item--text,
    .dm-work__item--slider,
    .dm-work__item:nth-child(3),
    .dm-work__item:nth-child(4),
    .dm-work__item:nth-child(5) {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        width: 100% !important;
        height: 450px !important;
    }

    .dm-work__item--large {
        height: 500px !important;
    }

    .dm-work__text-center {
        font-size: 4rem !important;
    }

    .dm-hero__title {
        font-size: 9.5rem !important;
    }

    /* Disable Team Hover for Tablet Portrait */
    .dm-team__box:hover {
        background: transparent !important;
        z-index: 1 !important;
    }

    .dm-team__box:hover .dm-team__avatar-container {
        width: 80px !important;
        height: 80px !important;
        border-radius: 50% !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin-bottom: 30px !important;
        box-shadow: none !important;
    }

    .dm-team__box:hover .dm-team__img {
        filter: grayscale(1) !important;
    }

    .dm-team__box:hover .dm-team__content {
        transform: none !important;
        max-width: 100% !important;
    }

    .dm-team__box:hover .dm-team__bio {
        opacity: 0.8 !important;
        color: inherit !important;
        font-size: 1.3rem !important;
    }
}


/* Hero Section */
.dm-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--bg-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-top: var(--nav-height, 68px);
    transition: background var(--transition);
}

.dm-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dm-hero__cursor-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 13, 24, 0.144) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: left, top;
}

.dm-hero:hover .dm-hero__cursor-glow {
    opacity: 1;
}

.dm-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0px 64px;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 48px;
    min-height: auto;
    flex: 1;
}


.dm-hero__left {
    padding: 40px 0;
}

.dm-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 11.5vw, 13rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Each line: clips the slide-up reveal */
.dm-hero__line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em;
}

/* Animated inner text */
.dm-hero__line-inner {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    animation: heroReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dm-hero__line:nth-child(1) .dm-hero__line-inner {
    animation-delay: 0.05s;
}

.dm-hero__line:nth-child(2) .dm-hero__line-inner {
    animation-delay: 0.18s;
}

.dm-hero__line:nth-child(3) .dm-hero__line-inner {
    animation-delay: 0.32s;
}

.dm-hero__line:nth-child(4) .dm-hero__line-inner {
    animation-delay: 0.48s;
}

@keyframes heroReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Line colour variants */
.dm-hero__line--solid .dm-hero__line-inner {
    color: var(--text-color);
}

.dm-hero__line--outline .dm-hero__line-inner {
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.548) !important;
    font-weight: 500;
    position: relative;
    will-change: transform, filter, text-shadow;

    animation:
        heroReveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.32s forwards,
        heroGlitchFlow 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Premium cinematic glitch */
@keyframes heroGlitchFlow {

    0%,
    78%,
    100% {
        transform: translate3d(0, 0, 0) skewX(0deg);
        filter: blur(0px);
        text-shadow: none;
        opacity: 1;

        -webkit-text-stroke:
            1.5px rgba(255, 255, 255, 0.22);
    }

    79% {
        transform: translate3d(-2px, 0, 0) skewX(-1deg);

        text-shadow:
            -4px 0 rgba(145, 13, 23, 0.35),
            3px 0 rgba(255, 255, 255, 0.08);

        -webkit-text-stroke:
            1.5px rgba(145, 13, 23, 0.45);

        filter: blur(0.4px);
    }

    81% {
        transform: translate3d(3px, 0, 0) skewX(1.5deg);

        text-shadow:
            5px 0 rgba(145, 13, 23, 0.28),
            -3px 0 rgba(255, 255, 255, 0.12);

        -webkit-text-stroke:
            1.5px rgba(255, 90, 90, 0.55);

        filter: blur(0.2px);
    }

    82% {
        transform: translate3d(-1px, 0, 0) skewX(-0.5deg);

        text-shadow:
            -2px 0 rgba(145, 13, 23, 0.18),
            1px 0 rgba(255, 255, 255, 0.06);

        filter: blur(0.1px);

        -webkit-text-stroke:
            1.5px rgba(255, 255, 255, 0.28);
    }

    83% {
        transform: translate3d(1px, 0, 0) skewX(0.3deg);
        filter: blur(0px);
        text-shadow: none;
    }

    84%,
    100% {
        transform: translate3d(0, 0, 0) skewX(0deg);
        filter: blur(0px);
        text-shadow: none;

        -webkit-text-stroke:
            1.5px rgba(255, 255, 255, 0.22);
    }
}

.dm-hero__line--accent .dm-hero__line-inner {
    color: #910D17;
}

/* "TO IGNORE." red glow pulse */
@keyframes heroAccentPulse {

    0%,
    100% {
        text-shadow: 0 0 40px rgba(145, 13, 23, 0.35);
    }

    50% {
        text-shadow: 0 0 90px rgba(145, 13, 23, 0.65), 0 0 160px rgba(145, 13, 23, 0.2);
    }
}

/* ── Decorative accent bar left of title ── */
.dm-hero__left::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #910D17;
    margin-bottom: 28px;
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(145, 13, 23, 0.7);
    animation: barReveal 0.6s 0.02s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes barReveal {
    from {
        transform: scaleX(0);
        transform-origin: left;
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
        opacity: 1;
    }
}


.dm-hero__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: end;
    margin-bottom: 3rem;
    animation: fadeUp 0.9s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dm-hero__services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
    /* border-radius: 4px; */
    overflow: hidden;
    width: 100%;
    gap: 10px;
    border: none;
}


.dm-hero__service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 18px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, background 0.3s ease;
    aspect-ratio: 1;
    border: 1px solid #9797972a;
    background-color: #97979707;
    text-align: center;
}

.dm-hero__service i {
    font-size: 2.1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover shine sweep */
.dm-hero__service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(145, 13, 23, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dm-hero__service:hover {
    color: #fff;
}

.dm-hero__service:hover::before {
    opacity: 1;
}

.dm-hero__service:hover i {
    color: #910D17;
    transform: scale(1.25) translateY(-2px);
}

/* Active / highlighted card */
.dm-hero__service--active {
    background: rgba(145, 13, 23, 0.25);
    color: #fff;
    border-color: rgba(145, 13, 23, 0.4);
}

.dm-hero__service--active i {
    color: #910D17;
    filter: drop-shadow(0 0 6px rgba(145, 13, 23, 0.8));
}

/* Tagline */
.dm-hero__tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.99rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 10px;
    text-align: right;
}


@media (max-width: 1024px) {
    .dm-hero__container {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        align-items: flex-start;
    }

    .dm-hero__right {
        align-items: flex-start;
        width: 280px;
    }
}

@media (max-width: 767px) {
    .dm-hero__container {
        padding: 40px 24px;
    }

    .dm-hero__title {
        font-size: clamp(4.7rem, 16vw, 6rem);
    }

    .dm-hero__right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .dm-hero__service i {
        font-size: 1.2rem;
    }

}

/* @media (min-width: 1920px) {
    .dm-hero__container {
        grid-template-columns: 1fr 420px;
        padding: 80px 100px;
    }
} */


.dm-hero__word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1;
}

.dm-hero__word {
    display: inline-block;
    color: #910D17;
}

/* ABOUT HERO & LEADERSHIP TEAM*/
.dm-hero--about .dm-hero__container {
    grid-template-columns: 1fr 500px;
    align-items: center;
}

.dm-hero__right--about {
    margin-bottom: 0;
    align-self: center;
    animation: fadeUp 0.9s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dm-about-team {
    width: 100%;
}

.dm-about-team__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 25px;
    text-align: right;
    /* opacity: 0.6; */
}

.dm-about-team__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.dm-about-team__carousel {
    display: contents;
}

/* All members span 4 columns (3 per row) on Desktop */
.dm-about-team__grid .dm-about-team__member {
    grid-column: span 4;
}

.dm-about-team__img-box {
    width: 100%;
    aspect-ratio: 1 / 1.3;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.dm-hosting-hero__img-box {
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    animation: fadeUp 0.9s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dm-hosting-hero__img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}



/* Carousel members also span 4 on Desktop due to display: contents */
.dm-about-team__carousel .dm-about-team__member {
    grid-column: span 4;
}


.dm-about-team__member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Last two members centered in their own row if possible, or just grid behavior */
/* .dm-about-team__member:nth-child(4), */
/* .dm-about-team__member:nth-child(5) { */
/* Optional: special placement for the remaining two */
/* } */




.dm-about-team__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.dm-about-team__member:hover .dm-about-team__img-box img {
    transform: scale(1.1) rotate(1deg);
    filter: grayscale(0) contrast(1);
}

.dm-about-team__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: #EFECE5;
    margin: 0;
}

.dm-about-team__role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 3px 0 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .dm-hero--about .dm-hero__container {
        grid-template-columns: 1fr 400px;
    }
}

@media (max-width: 1024px) {
    .dm-hero--about .dm-hero__container {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }

    .dm-hero__right--about {
        width: 100%;
        max-width: 500px;
        align-self: flex-start;
    }

    .dm-about-team__title {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .dm-about-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        overflow: hidden;
        /* Prevent horizontal scroll on the grid itself */
    }

    .dm-about-team__member:nth-child(1),
    .dm-about-team__member:nth-child(2) {
        grid-column: span 1;
        /* Keep them side by side in 2-column grid */
    }

    .dm-about-team__carousel {
        display: flex !important;
        grid-column: 1 / -1;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 10px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
    }

    .dm-about-team__carousel::-webkit-scrollbar {
        display: none;
    }

    .dm-about-team__carousel .dm-about-team__member {
        flex: 0 0 70%;
        /* Made images smaller on mobile carousel */
        scroll-snap-align: center;
    }

    .dm-about-team__carousel .dm-about-team__img-box {
        aspect-ratio: 1 / 1.3;
        /* Adjusted ratio to make images look slightly smaller */
    }

    .dm-about-team__title {
        font-size: 1.4rem;
    }
}


/* Exit: slide DOWN and fade out */
.dm-hero__word--exit {
    animation: wordExit 0.38s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes wordExit {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(105%);
        opacity: 0;
    }
}

/* Enter: arrive from TOP, slide down into place */
.dm-hero__word--enter {
    animation: wordEnter 0.45s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes wordEnter {
    from {
        transform: translateY(-105%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dm-hero__line-inner {
    display: inline-flex;
    align-items: baseline;
    /* aligns text properly */
}

.dm-hero__word-wrap {
    display: inline-flex;
    align-items: baseline;
    overflow: hidden;
    line-height: 1;
}

.dm-hero__word {
    display: inline-block;
    color: #910D17;
    line-height: 1;
    padding-left: 15px;
}

* {
    cursor: none !important;
}

@media (max-width: 1024px) {
    * {
        cursor: auto !important;
    }

    .dm-cursor-dot,
    .dm-cursor-ring {
        display: none !important;
    }
}

.dm-cursor-dot {
    position: fixed;
    width: 9px;
    height: 9px;
    background: #910D17;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    will-change: left, top;
}

.dm-cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(145, 13, 23, 0.75);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    will-change: left, top;
    transition: width 0.25s, height 0.25s, border-color 0.25s;
}

a:hover~.dm-cursor-ring,
button:hover~.dm-cursor-ring {
    width: 56px;
    height: 56px;
}

/* HERO FOOTER & STATS */
.dm-hero__footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    /* background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent); */
    margin-top: 0%;
    box-sizing: border-box;
}

.dm-hero__container--footer {
    display: flex;
    /* override grid */
    justify-content: space-between;
    align-items: flex-end;
    min-height: auto;
    /* remove hero height */
    gap: 40px;
}

.dm-hero__footer-left {
    flex: 1;
}

.dm-hero__footer-text {
    font-size: 26px;
    line-height: 1.3;
    /* color: rgba(255, 255, 255, 0.4); */
    max-width: 550px;
    margin: 0;
    font-family: 'Roboto', sans-serif;

}

.dm-hero__footer-right {
    display: flex;
    gap: 20px;
}

.dm-hero__stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 30px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.dm-hero__stat-card:hover {
    border-color: rgba(145, 13, 23, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.dm-hero__stat-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 5px;
}

.dm-hero__stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    /* color: #ffffff !important; */
    display: inline-block;
}

.dm-hero__stat-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: #ffffff !important;
    display: inline-block;
}

.dm-hero__stat-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-left: 2px;
}

.dm-hero__stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    /* color: rgba(255, 255, 255, 0.3); */
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;

}

@media (max-width: 1200px) {
    .dm-hero__footer {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 60px;
        background: transparent;
    }

    .dm-hero__footer-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .dm-hero__stat-card {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 640px) {
    .dm-hero__footer {
        padding: 30px 24px 80px;
    }

    .dm-hero__stat-card {
        min-width: 100%;
    }
}

/* ── Mobile Viewport (< 768px) ── */
@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .dm-header {
        display: none;
    }

    .dm-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 24px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dm-mobile-header__logo img {
        height: 22px;
        width: auto;
    }

    .dm-mobile-burger {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }


    /* Full-screen Menu Overlay */
    .dm-mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        z-index: 2000;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .dm-mobile-menu.is-open {
        transform: translateY(0);
    }

    .dm-mobile-menu__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dm-mobile-menu__logo img {
        height: 22px;
        width: auto;
    }

    .dm-mobile-close {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .dm-mobile-close:hover {
        transform: rotate(90deg);
    }

    .dm-mobile-menu__body {
        padding: 24px;
    }

    /* Search Bar with bottom radius only */
    .dm-mobile-search {
        display: flex;
        margin-bottom: 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0 0 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        overflow: hidden;
    }

    .dm-mobile-search__input {
        flex: 1;
        background: none;
        border: none;
        padding: 15px 20px;
        color: #fff;
        font-size: 1rem;
        outline: none;
    }

    .dm-mobile-search__btn {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.4);
        padding: 0 20px;
        font-size: 1.1rem;
    }

    /* Nav List */
    .dm-mobile-nav__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dm-mobile-nav__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dm-mobile-nav__link,
    .dm-mobile-nav__trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
    }

    .dm-mobile-nav__trigger i {
        font-size: 1rem;
        color: var(--accent);
        transition: transform 0.3s ease;
    }

    /* Accordion Dropdowns */
    .dm-mobile-nav__dropdown {
        list-style: none;
        padding: 0 0 15px 20px;
        display: none;
    }

    .dm-mobile-nav__item--dropdown.active>.dm-mobile-nav__dropdown {
        display: block;
    }

    .dm-mobile-nav__item--dropdown.active>.dm-mobile-nav__trigger i {
        transform: rotate(45deg);
    }

    /* Sub Dropdowns */
    .dm-mobile-nav__sub-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        cursor: pointer;
    }

    .dm-mobile-nav__sub-dropdown {
        list-style: none;
        padding: 0 0 10px 15px;
        display: none;
    }

    .dm-mobile-nav__sub-dropdown li a {
        display: block;
        padding: 8px 0;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        font-size: 0.9rem;
    }

    .dm-mobile-nav__sub-item--dropdown.active>.dm-mobile-nav__sub-dropdown {
        display: block;
    }

    .dm-mobile-nav__sub-item--dropdown.active>.dm-mobile-nav__sub-trigger i {
        transform: rotate(180deg);
        color: var(--accent);
    }
    .dm-hero__footer-text{
        font-size: 1.2rem;
    }
}

/* ── Tablet Portrait Viewport (768px - 1024px @ portrait) ── */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

    .dm-header {
        display: none;
    }

    .dm-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dm-mobile-header__logo img {
        height: 38px;
    }

    .dm-mobile-burger {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.8rem;
    }

    .dm-mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        z-index: 2000;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Full-screen Menu Overlay */
    .dm-mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        z-index: 2000;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .dm-mobile-menu.is-open {
        transform: translateY(0);
    }

    .dm-mobile-menu__header {
        padding: 20px 40px;
    }

    .dm-mobile-menu__body {
        padding: 40px;
        max-width: 100%;
        margin: 0 auto;
    }
}



.dm-nav__item--active .dm-nav__link {
    background: var(--nav-active-bg);
    color: var(--nav-active-text);
    box-shadow: 0 4px 18px rgba(230, 36, 41, .35),
        inset 0 1px 0 rgba(255, 255, 255, .15);
}

.dm-nav__item--active .dm-nav__link i {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, .6));
}

.dm-nav__item:not(.dm-nav__item--active) .dm-nav__link:hover {
    color: var(--nav-text-hover);
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.dm-nav__item:not(.dm-nav__item--active) .dm-nav__link:hover .dm-nav__indicator {
    transform: translateX(-50%) scaleX(1);
}

.dm-nav__item:not(.dm-nav__item--active) .dm-nav__link:hover i {
    transform: translateY(-1px) scale(1.18);
    color: var(--accent);
}

.dm-nav__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .22) 0%, transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transform: scale(0);
    transition: opacity .4s, transform .4s;
}

.dm-nav__link:active::after {
    opacity: 1;
    transform: scale(1);
    transition: none;
}


.dm-nav__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}


.dm-search {
    position: relative;
    display: flex;
    align-items: center;
}

.dm-search__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--nav-border);
    background: rgba(255, 255, 255, .06);
    color: var(--nav-text);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background var(--transition), color var(--transition),
        border-color var(--transition), transform var(--transition),
        box-shadow var(--transition);
}


.dm-search__ripple {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity .35s, transform .35s;
    pointer-events: none;
}

.dm-search__btn:hover {
    background: rgba(230, 36, 41, .15);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.dm-search__btn:hover .dm-search__ripple {
    opacity: 1;
    transform: scale(1);
    animation: searchRing 1.2s ease infinite;
}

@keyframes searchRing {
    0% {
        transform: scale(1);
        opacity: .9;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

.dm-search__btn:active {
    transform: scale(.95);
}


.dm-search__box {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right center;
    width: 240px;
    background: rgba(20, 20, 20, .96);
    border: 1px solid var(--nav-border);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 8px;
    overflow: hidden;
    opacity: 0;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1),
        opacity .35s cubic-bezier(.4, 0, .2, 1),
        box-shadow .35s;
    pointer-events: none;
    box-shadow: 0 0 0 transparent;
}

.dm-search__box.is-open {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 0 24px rgba(230, 36, 41, .2);
}

.dm-search__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: .85rem;
    font-family: var(--font-heading);
    padding: 10px 0;
    caret-color: var(--accent);
}

.dm-search__input::placeholder {
    color: rgba(255, 255, 255, .35);
    font-family: var(--font-body);
    font-size: 0.8rem;
}

.dm-search__close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    font-size: .9rem;
    padding: 4px;
    border-radius: 50%;
    transition: color var(--transition), transform var(--transition);
    line-height: 1;
}

.dm-search__close:hover {
    color: var(--accent);
    transform: rotate(90deg) scale(1.2);
}


.dm-btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .03em;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 4px 20px rgba(230, 36, 41, .4),
        inset 0 1px 0 rgba(255, 255, 255, .2);
    transition: transform var(--transition), box-shadow var(--transition),
        background var(--transition);
    white-space: nowrap;
    animation: ctaPop .6s .3s cubic-bezier(.4, 0, .2, 1) both;
    font-family: var(--font-body);
    z-index: 1;
}

@keyframes ctaPop {
    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gap-btn {
    margin-bottom: 100px;
}

.dm-btn-cta__shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%,
            rgba(255, 255, 255, .55) 50%, transparent 60%);
    transform: skewX(-20deg);
    animation: ctaShine 2.8s 1.2s ease infinite;
    pointer-events: none;
}

@keyframes ctaShine {
    0% {
        left: -60%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        left: 130%;
        opacity: 0;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

.dm-btn-cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(230, 36, 41, .6),
        0 0 0 3px rgba(230, 36, 41, .25),
        inset 0 1px 0 rgba(255, 255, 255, .25);
    background: linear-gradient(135deg, #ff3b3f 0%, var(--accent) 100%);
}

.dm-btn-cta:active {
    transform: translateY(0) scale(.97);
    box-shadow: 0 2px 12px rgba(230, 36, 41, .4);
}

.dm-btn-cta::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    border: 2px solid var(--accent);
    opacity: 0;
    transform: scale(1.08);
    transition: opacity .4s, transform .4s;
    pointer-events: none;
}

.dm-btn-cta:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: ctaRingPulse 1.5s ease infinite;
}

@keyframes ctaRingPulse {

    0%,
    100% {
        opacity: .8;
        transform: scale(1);
    }

    50% {
        opacity: .2;
        transform: scale(1.12);
    }
}

.dm-btn-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}


@media (min-width: 1025px) and (max-width: 1366px) {
    .dm-about__cat-tags{
        font-size: 1.1rem !important;
    }
    .dm-process__step-desc{
        font-size: 1.1rem !important;
    }
    .dm-diff__desc{
        font-size: 1.1rem !important;
    }
    .dm-diff__item{
        font-size: 1.1rem !important;
    }
    .dm-blog__excerpt{
        font-size: 1.1rem !important;
    }
    .dm-footer__tagline{
        font-size: 1.1rem !important;
    }
    .dm-footer__list a{
        font-size: 1.1rem !important;
    }
    .video-service-content {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
    .grid-serve-services, .dm-slide-main-desc, .dm-sliding-text,.dm-sliding-text--small{
        font-size: 1.2rem !important;
    }
    .blog-title {
        font-size: 2rem !important;
    }
    .dm-nav__links {
        gap: 0
    }
.dm-nav__link{
    font-size: .9rem;
}
    .dm-logo-img {
        height: 38px;
    }

    .dm-header.search-active .dm-nav__links {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .dm-search__box {
        width: 550px;
    }

    .dm-hero__footer-text {
        font-size: 1.2rem;
    }

    .dm-hero__stat-label {
        font-size: .7rem;
    }

    .dm-hero__stat-number,
    .dm-hero__stat-text {
        font-size: 1.7rem;
    }

    .dm-hero__footer {
        padding-left: 10px;
        padding-right: 10px;
    }


    .dm-mega-menu {
        position: fixed;
        top: 45px;
        left: 50%;
        width: 94vw;
        max-width: 1280px;
        transform: translateX(-50%) translateY(20px);
    }

    .dm-nav__item--has-mega:hover .dm-mega-menu {
        transform: translateX(-50%) translateY(0);
    }

    .dm-mega-menu__container {
        padding: 30px;
    }

    .dm-mega-menu__grid {
        gap: 30px;
    }

    .dm-mega-menu__title {
        font-size: .90rem;
    }

    .dm-mega-menu__link {
        font-size: .7rem;
    }

    .dm-work__text-center {
        font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
        /* reduce size */
        letter-spacing: 0.2em;
        transform: translate(-50%, -50%) scale(1) !important;
        /* remove extra scale */
        max-width: 90% !important;
        text-align: center !important;
        white-space: normal !important;
        /* prevent overflow */
    }

    /* FIX SLIDER CROPPING */
    .dm-work__slide {
        background-size: contain !important;
        /* show full image */
        background-repeat: no-repeat !important;
        background-position: center !important;
        transform: none !important;
        /* remove zoom */
    }

    .dm-work__slide.active {
        transform: none !important;
    }

    .experience-block__number {
        font-size: 6rem !important;
    }

    .dm-about__text {
        font-size: 1.1rem !important;
    }

    .dm-about__text--secondary {
        font-size: 1.1rem !important;
    }

    .dm-awards__desc {
        font-size: 1.1rem !important;
    }

    .dm-work {
        margin-top: -80px !important;
    }

    .dm-dashboard__svg {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .dm-team__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 boxes per row */
    }

    .dm-team__box {
        min-height: 420px !important;
    }

    .dm-team__box:hover .dm-team__content {
        transform: translateX(220px) !important;
        max-width: calc(100% - 220px) !important;
    }

    .dm-team__box:hover .dm-team__avatar-container {
        width: 200px !important;
        height: 280px !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .dm-nav__links {
        gap: 0
    }

}

/* SERVICES & MARQUEE SECTION*/

.dm-services {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 40px;
    isolation: isolate;
}

.dm-services::before,
.dm-services::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%);
    z-index: -1;
}

.dm-services::before {
    background-image: url('../assets/team-dmg-11.jpg');
}

.dm-services::after {
    background-image: url('../assets/team-dmg-2.jpg');
    opacity: 0;
    animation: dmServicesBgSwitch 3s ease-in-out infinite alternate;
}

@keyframes dmServicesBgSwitch {

    0%,
    15% {
        opacity: 0;
    }

    85%,
    100% {
        opacity: 1;
    }
}

.dm-services__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;

}

/* Red Marquee */
.dm-marquee {
    position: relative;
    z-index: 10;
    background: var(--accent);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-marquee__track {
    display: flex;
    width: max-content;
}

.dm-marquee__content {
    display: flex;
    align-items: center;
    animation: dmMarqueeFlow 45s linear infinite;
}

.dm-marquee:hover .dm-marquee__content {
    animation-play-state: paused;
}

.dm-marquee__content span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 0.15em;
    padding: 0 45px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dm-marquee__sep {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.5;
    padding: 0 !important;
}

@keyframes dmMarqueeFlow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Content Layout */
.dm-services__inner {
    position: relative;
    z-index: 5;
    /* max-width: 1600px; */
    margin: 0 auto;
    width: 100%;
    padding: 60px 64px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex: unset;
}

.dm-services__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
    width: 100%;
    align-items: center;
}

.dm-services__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 90px;
}

.dm-services__dash {
    width: 50px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    border-radius: 2px;
}

.dm-services__meta-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ffffff;
    text-transform: uppercase;
}

.dm-services__main-title {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 10vw, 10rem);
    line-height: 0.4;
    color: var(--text-color);
    margin: 0;
    letter-spacing: -0.01em;
}

.dm-services__title-line {
    display: block;
    overflow: visible;
    padding-bottom: 0;
}

.dm-services__line-inner {
    display: block;
    opacity: 0;
    transform: translateY(110%);
    animation: dmRevealLine 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dmRevealLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dm-services__right-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: dmFadeIn 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes dmFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dm-services__para {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 1.7vw, 1.6rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    font-weight: 400;
}

/* Highly Advanced Hover Effects */
.dm-services__main-title:hover .dm-services__line-inner {
    color: var(--accent);
    transition: color 0.4s ease;
}

.dm-services__para:hover {
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Responsive */
@media screen and (max-width: 1280px) {
    .dm-services__inner {
        padding: 100px 48px;
    }

    .dm-services__grid {
        gap: 60px;
    }
}

@media screen and (max-width: 1024px) {
    .dm-services {
        min-height: auto;
        background-attachment: scroll;
    }

    .dm-services__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dm-services__right-col {
        justify-content: flex-start;
    }

    .dm-services__main-title {
        font-size: clamp(4rem, 12vw, 8rem);
    }
}

@media screen and (max-width: 768px) {
    .dm-services__inner {
        padding: 80px 24px;
    }

    .dm-services__main-title {
        font-size: 4rem;
    }

    .dm-marquee {
        padding: 8px 0;
    }

    .dm-marquee__content span {
        font-size: 0.95rem;
        padding: 0 30px;
    }

    .dm-br-desktop {
        display: none;
    }

    .dm-services__para {
        font-size: 1.2rem;
    }
}

/*SERVICES GRID SECTION */

.dm-service-grid {
    background: #0a0a0a;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dm-service-grid__wrapper {
    display: flex;
    width: max-content;
    animation: dm-service-marquee 60s linear infinite;
}

@keyframes dm-service-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.dm-service-grid:hover .dm-service-grid__wrapper {
    animation-play-state: paused;
}

.dm-service-box {
    flex: 0 0 450px;
    position: relative;
    padding: 70px 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    transition: background 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform-style: preserve-3d;
}

.dm-service-box__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    transform: scale(1.15) translateZ(-1px);

}

.dm-service-box__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.dm-service-box:hover .dm-service-box__bg {
    opacity: 1;
    transform: scale(1) translateZ(-1px);
}

.dm-service-box:hover .dm-service-box__overlay {
    opacity: 1;
}

.dm-service-box:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Remove right border for the last item in each row (desktop 4 columns) */
/* Remove right border logic for marquee if needed, but here we want it for separation */
.dm-service-box:last-child {
    border-right: none;
}

.dm-service-box__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 45px;
    transform: translateZ(20px);
    position: relative;
    z-index: 2;
}

.dm-service-box__icon-wrapper {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(145, 13, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--accent);
    font-size: 1.3rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease;
    background: rgba(145, 13, 23, 0.03);
}

.dm-service-box:hover .dm-service-box__icon-wrapper {
    transform: rotate(15deg) scale(1.1) translateZ(30px);
    border-color: var(--accent);
    background: rgba(145, 13, 23, 0.1);
    box-shadow: 0 0 20px rgba(145, 13, 23, 0.2);
}

.dm-service-box__number {
    font-family: var(--font-body);
    font-size: 0.85rem;
    /* color: rgba(255, 255, 255, 0.12); */
    font-weight: 700;
    letter-spacing: 0.1em;
}

.dm-service-box__title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    transform: translateZ(25px);
    position: relative;
    z-index: 2;
}

.dm-service-box__desc {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 1.6;
    /* color: rgba(255, 255, 255, 0.45); */
    transition: color 0.4s ease;
    transform: translateZ(15px);
    position: relative;
    z-index: 2;
}

.dm-service-box:hover .dm-service-box__desc {
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive Grid */
/* Responsive Marquee */
@media screen and (max-width: 1024px) {
    .dm-service-box {
        flex: 0 0 380px;
        padding: 60px 35px;
    }
}

@media screen and (max-width: 768px) {
    .dm-service-box {
        flex: 0 0 320px;
        padding: 50px 25px;
    }

    .dm-service-grid__wrapper {
        animation-duration: 40s;
    }
    .dm-service-box__desc, .dm-about__cat-tags{
        font-size: 1.2rem !important;
    }
  
}

/*ABOUT SECTION*/

.dm-about {
    background: #0a0a0a;
    padding: 140px 64px;
    position: relative;
    overflow: hidden;
}

.dm-about__container {
    /* max-width: 1600px; */
    margin: 0 auto;
}

.dm-about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* gap: 120px; */
    align-items: center;
}

.dm-about__title {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 9.5vw, 11rem);
    line-height: 0.82;
    color: var;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.dm-about__title-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    font-weight: 500;
}

.dm-about__title-outline:hover {
    -webkit-text-stroke: 1px var(--accent);
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
    transform: skewX(-5deg);
}

.dm-about__categories {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 940px;
}

.dm-about__cat-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.dm-about__cat-item::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.dm-about__cat-item:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.01);
}

.dm-about__cat-item:hover::before {
    width: 100%;
}

.dm-about__cat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-about__cat-item:hover .dm-about__cat-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: scale(1.15) rotate(12deg);
    box-shadow: 0 0 20px rgba(145, 13, 23, 0.3);
}

.dm-about__cat-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    transition: color 0.4s ease;
}

.dm-about__cat-item:hover .dm-about__cat-title {
    color: var(--accent);
}

.dm-about__cat-tags {
    font-family: var(--font-body);
    font-size: 1.3rem;
    /* color: rgba(255, 255, 255, 0.35); */
    transition: color 0.4s ease;
}

.dm-about__cat-item:hover .dm-about__cat-tags {
    color: rgba(255, 255, 255, 0.8);
}

/* Right Side */
.dm-about__right {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    /* align-items: flex-end; */
}

.dm-about__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
}

.dm-about__dash {
    width: 45px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.dm-about__meta-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ffffff;
    text-transform: uppercase;
}

.dm-about__text {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 35px;
    /* max-width: 620px; */
    font-weight: 400;
}

.dm-about__text strong {
    color: #ffffff;
    font-weight: 700;
}

.dm-about__text--secondary {
    font-size: 1.6rem;
    /* color: rgba(255, 255, 255, 0.4); */
}

.dm-about__btn-text,
.dm-about__btn-arrow {
    position: relative;
    z-index: 1;
}

.dm-about__btn.btn-fx {
    --btn-fx-blob: var(--accent);
    --btn-fx-text-on: #fff;
}

.dm-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px !important;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* margin-top: 30px; */
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 4px;
    isolation: isolate;
}

.dm-about__btn::before {
    content: none;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.dm-about__btn:hover::before {
    left: 0;
}

.dm-about__btn:hover {
    border-color: var(--accent);
}

.dm-about__btn-arrow {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-about__btn:hover .dm-about__btn-arrow {
    transform: translateX(8px);
}

/* Responsive */
@media screen and (max-width: 1280px) {
    .dm-about {
        padding: 100px 48px;
    }

    .dm-about__grid {
        gap: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .dm-about__grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .dm-about__right {
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .dm-about {
        padding: 80px 24px;
    }

    .dm-about__title {
        font-size: 4.2rem;
    }

    .dm-about__text {
        font-size: 1.2rem;
    }

    .dm-about__btn {
        width: 100%;
        justify-content: center;
    }
}

/*AWARDS SECTION*/

.dm-awards {
    background: #0a0a0a;
    padding: 140px 64px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-awards__container {
    /* max-width: 1600px; */
    margin: 0 auto;
}

.dm-awards__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 90px;
}

.dm-awards__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.dm-awards__dash {
    width: 45px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.dm-awards__meta-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ffffff;
    text-transform: uppercase;
}

.dm-awards__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 8.5rem);
    line-height: 0.85;
    color: var(--text-color);
    margin-bottom: 35px;
    letter-spacing: -0.01em;
}

.dm-awards__desc {
    max-width: 805px;
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.65;
    /* color: rgba(255, 255, 255, 0.5); */
}

.dm-awards__desc strong {
    color: #ffffff;
    font-weight: 700;
}

/* Stat Box */
.dm-awards__stat {
    background: rgba(145, 13, 23, 0.04);
    border: 1px solid rgba(145, 13, 23, 0.15);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 6px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.dm-awards__stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(145, 13, 23, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.dm-awards__stat:hover {
    background: rgba(145, 13, 23, 0.08);
    border-color: var(--accent);
    /* box-shadow: 0 20px 50px rgba(145, 13, 23, 0.2); */
    transform: translateY(-8px);
    cursor: pointer;
}

.dm-awards__stat:hover::before {
    transform: translateX(100%);
}

.dm-awards__stat-icon {
    font-size: 3rem;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(145, 13, 23, 0.5));
    /* animation: starPulse 4s infinite ease-in-out; */
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.15) rotate(10deg);
        filter: brightness(1.3) drop-shadow(0 0 20px var(--accent));
    }
}

.dm-awards__stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.dm-awards__stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.35);
}

.dm-awards__prize-box {
    margin-top: 35px;
    text-align: right;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dm-awards__prize-img {
    max-width: 680px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.dm-awards__prize-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(145, 13, 23, 0.2);
    border-color: var(--accent);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.dm-awards__prize-box{
    position: relative !important;
    width: 100% !important;
    height: 500px !important; 
    margin-top: 35px !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}

.dm-awards__prize-img{
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    box-shadow: 0 15px 45px rgba(0,0,0,.4) !important;
}

.img1{
    animation: fade1 8s infinite !important;
}

.img2{
    animation: fade2 8s infinite !important;
}

@keyframes fade1{
    0%,45%{
        opacity:1;
    }
    50%,95%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}

@keyframes fade2{
    0%,45%{
        opacity:0;
    }
    50%,95%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
}
.dm-awards__header-right{
    flex: 1 1 700px !important;
    max-width: 680px !important;
    width: 100% !important;
}

.dm-awards__stat{
    width: 100% !important;
}

.dm-awards__prize-box{
    position: relative !important;
    width: 100% !important;
    height: 500px !important;
    margin-top: 35px !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}
/* Timeline */
.dm-awards__timeline {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0px 0 60px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
    cursor: grab;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    background: linear-gradient(to bottom, transparent 16px, rgba(255, 255, 255, 0.08) 16px, rgba(255, 255, 255, 0.08) 18px, transparent 18px);
    background-attachment: local;
}

.dm-awards__timeline::before {
    display: none;
}

.dm-awards__timeline::-webkit-scrollbar {
    height: 2px;
}

.dm-awards__timeline::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.dm-awards__timeline::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.dm-awards__year-group {
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dm-awards__year-group:nth-child(1) {
    animation-delay: 0.1s;
}

.dm-awards__year-group:nth-child(2) {
    animation-delay: 0.2s;
}

.dm-awards__year-group:nth-child(3) {
    animation-delay: 0.3s;
}

.dm-awards__year-group:nth-child(4) {
    animation-delay: 0.4s;
}

.dm-awards__year-group:nth-child(5) {
    animation-delay: 0.5s;
}

.dm-awards__year-group:nth-child(6) {
    animation-delay: 0.6s;
}

.dm-awards__year {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 28px;
    position: relative;
    z-index: 2;
}

.dm-awards__year-dot {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px rgba(145, 13, 23, 0.4);
}

.dm-awards__year-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    position: relative;
    top: 21px;
}

.dm-awards__cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 45px;
    position: relative;
}

/* The vertical thread line */
.dm-awards__cards::before {
    content: '';
    position: absolute;
    left: 6px;
    /* Centered under the 14px dot (14/2 = 7, but 6 looks better with 2px line) */
    top: -40px;
    /* Connect to year dot */
    bottom: 50px;
    /* End at the start of the last branch */
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(255, 255, 255, 0.1));
    transition: all 0.5s ease;
}

.dm-awards__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    cursor: pointer;
}

/* The horizontal branch line */
.dm-awards__card::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 30px;
    width: 39px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

/* Branch curve */
.dm-awards__card::after {
    content: '';
    position: absolute;
    left: -39px;
    top: 30px;
    width: 12px;
    height: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 8px;
    display: none;
    /* Keep it simple first, or use a straight line */
}

.dm-awards__card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    /* transform: translateX(10px); */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.dm-awards__card:hover::before {
    background: var(--accent);
    /* width: 45px; */
    /* left: -45px; */
}

.dm-awards__year-group:hover .dm-awards__cards::before {
    background: var(--accent);
}

/* Legacy Split View */
.dm-awards__cards-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.dm-awards__cards--secondary::before {
    top: 0 !important;
    
}

@media (max-width: 992px) {
    .dm-awards__cards-split {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

.dm-awards__card-medal {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.dm-awards__card--gold .dm-awards__card-medal {
    color: #FFD700;
}

.dm-awards__card--silver .dm-awards__card-medal {
    color: #C0C0C0;
}

.dm-awards__card--bronze .dm-awards__card-medal {
    color: #CD7F32;
}

.dm-awards__card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.dm-awards__card-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    /* color: rgba(255, 255, 255, 0.35); */
    transition: color 0.4s ease;
}



.dm-awards__card:hover .dm-awards__card-sub {
    color: rgba(255, 255, 255, 0.6);
}

.dm-awards__card--featured {
    background: rgba(145, 13, 23, 0.05);
    border: 1px solid rgba(145, 13, 23, 0.15);
    padding: 16px;
}

.dm-awards__card--featured:hover {
    background: rgba(145, 13, 23, 0.08);
    border-color: var(--accent);
}

.dm-awards__card-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    /* color: rgba(255, 255, 255, 0.5); */
    margin: 15px 0 20px;
    max-width: 600px;
}

.dm-awards__card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dm-awards__card-link:hover {
    color: #ff0000b7;
    gap: 15px;
}

.dm-awards__card-link i {
    font-size: 1.1rem;
}


/* Responsive */
@media screen and (max-width: 1280px) {
    .dm-awards {
        padding: 100px 48px;
    }
}

@media screen and (max-width: 1024px) {
    .dm-awards__header {
        flex-direction: column;
        gap: 50px;
    }

    .dm-awards__stat {
        align-self: flex-start;
    }

    .dm-awards__timeline {
        gap: 30px;
    }

    .dm-awards__year-group {
        min-width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .dm-process__step-desc, .dm-diff__desc,.dm-diff__item{
        font-size: 1.2rem !important;
    }
    .dm-awards {
        padding: 28px 24px;
    }

    .dm-awards__title {
        font-size: 3.5rem;
    }

    .dm-awards__desc {
        font-size: 1.2rem;
    }
.dm-awards__card-desc{
    font-size: 1.2rem;
}
.dm-awards__header-right{
    flex: none !important;
}
    .dm-awards__prize-box {
        display: none !important;
    }

    .dm-awards__stat {
        width: 100%;
        padding: 25px 30px;
    }

    .dm-awards__stat-num {
        font-size: 2.8rem;
    }

    .dm-awards__card--featured {
        padding: 12px;
    }
}
.dm-awards__cards-split > .dm-awards__cards {
    width: 100% !important;
}

.dm-awards__cards-split .dm-awards__card {
    width: 100% !important;
    box-sizing: border-box !important;
}
.dm-awards__cards-split > .dm-awards__cards:first-child {
    min-width: 330px !important;
    width: 100% !important;
}
.dm-awards__cards-split > .dm-awards__cards:last-child {
    min-width: 330px !important;
    width: 100% !important;
}
/* 
   WORK SECTION
 */

.dm-work {
    background: #0a0a0a;
    padding: 140px 64px;
    position: relative;
    overflow: hidden;
}

.dm-work__container {
    /* max-width: 1600px; */
    margin: 0 auto;
}

.dm-work__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 90px;
}

.dm-work__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.dm-work__dash {
    width: 45px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.dm-work__meta-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ffffff;
    text-transform: uppercase;
}

.dm-work__title {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 9vw, 9.5rem);
    line-height: 0.85;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

/* Grid Zigzag Layout */
.dm-work__grid {
    display: grid;
    grid-template-columns: 3.5fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 650px;
}

.dm-work__item {
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    border-radius: 4px;
}

.dm-work__item--large {
    grid-row: span 2;
    grid-column: 1 / 2;
}


.dm-work__item:nth-child(3) {
    grid-column: 3 / 6;
}

/* Row 2 Alignment: More, Short */
.dm-work__item:nth-child(4) {
    grid-column: 2 / 5;
}

.dm-work__item:nth-child(5) {
    grid-column: 5 / 6;
}

/* Text Item Style */
.dm-work__item--text {
    background: #111;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-work__text-center {
    font-family: var(--font-heading);
    font-size: 6rem;

    color: #c40818c7;
    /* red fill */
    /* -webkit-text-stroke: 1px #fff; */
    /* white outline */

    opacity: 0.8;
    letter-spacing: 0.3em;
    transform: rotate(0) scale(1.1);

    pointer-events: none;
    user-select: none;
    transition: all 0.5s ease;
}

.dm-work__item--text:hover .dm-work__text-center {
    /* opacity: 0.3; */
    transform: rotate(0) scale(1.1);
    letter-spacing: 0.2em;
}

/* Slider Component */
.dm-work__item--slider {
    background: #000;
}

.dm-work__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dm-work__slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.dm-work__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 8s linear;
    transform: scale(1.2);
}

.dm-work__slide.active {
    opacity: 1;
    transform: scale(1);
}

.dm-work__slider-nav {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-work__slider-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dm-work__slider-arrow:hover {
    color: var(--accent);
    transform: scale(1.3);
}

.dm-work__slider-progress {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dm-work__slider-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.dm-work__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dm-work__video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: opacity 0.8s ease;
}



.dm-work__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.dm-work__item:hover .dm-work__img {
    transform: scale(1.1);
}

.dm-work__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.dm-work__item:hover .dm-work__overlay {
    background: linear-gradient(to top, rgba(145, 13, 23, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.dm-work__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    z-index: 2;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-work__item:hover .dm-work__content {
    transform: translateY(-10px);
}

.dm-work__icon {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.dm-work__item:hover .dm-work__icon {
    opacity: 1;
    transform: scale(1.2);
}

.dm-work__item-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.dm-work__item-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.4s ease;
}

.dm-work__item:hover .dm-work__item-tag {
    color: #ffffff;
}

.dm-work__play-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-work__item:hover .dm-work__play-btn {
    opacity: 1;
    transform: scale(1) rotate(0);
    box-shadow: 0 0 30px rgba(145, 13, 23, 0.6);
}

/* Responsive */
@media screen and (max-width: 1400px) {
    .dm-work__grid {
        height: 750px;
    }
}

@media screen and (max-width: 1024px) {
    .dm-work__grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
        gap: 10px;
    }

    .dm-work__item {
        height: 400px;
    }

    .dm-work__item--large {
        grid-column: span 2;
        height: 550px;
    }
}

@media screen and (max-width: 768px) {
    .dm-work {
        padding: 0px 24px;
    }

    .dm-work__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 60px;
    }

    .dm-work__grid {
        grid-template-columns: 1fr;
    }

    .dm-work__item--large {
        grid-column: span 1;
        height: 450px;
    }

    .dm-work__content {
        padding: 30px;
    }

    .dm-work__grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Reset ALL custom grid placements */
    .dm-work__item,
    .dm-work__item--large,
    .dm-work__item--text,
    .dm-work__item--slider {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100%;
    }

    /* Optional: better heights for mobile */
    .dm-work__item--large {
        height: 300px;
    }

    .dm-work__item--text {
        height: 180px;
    }

    .dm-work__item--slider {
        height: 250px;
    }

    .dm-work__item-title {
        font-size: .7rem;
    }

    .dm-work__text-center {
        font-size: 2.2rem;
        /* was 5rem */
        letter-spacing: 0.2em;
        transform: translate(-50%, -50%) scale(1);
        /* remove extra scale */
    }

    /* FIX SLIDER IMAGE CROPPING */
    .dm-work__slide {
        background-size: contain;
        /* instead of cover */
        background-repeat: no-repeat;
        background-position: center;
        transform: none;
        /* remove zoom */
    }

    .dm-work__slide.active {
        transform: none;
        /* stop scale animation */
    }

    /* OPTIONAL: reduce box heights for better fit */
    .dm-work__item--text {
        height: 140px;
    }

    .dm-work__item--slider {
        height: 200px;
    }
}

.dm-work__item--text {
    grid-column: 2 / 5 !important;
    grid-row: 1 / 2 !important;
}

/* SLIDER box → BOTTOM */
.dm-work__item--slider {
    grid-column: 2 / 5 !important;
    grid-row: 2 / 3 !important;
}

.dm-work__text-center {
    position: relative;
}

.dm-work__text-word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: all 0.6s ease;
    white-space: nowrap;
}

.dm-work__text-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/*EXPERIENCE BLOCK*/
.experience-block {
    background: #910d17;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent);
    background-size: 8px 8px;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.experience-block__grid {
    /* max-width: 1600px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.experience-block__item {
    padding: 0 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-block__item:last-child {
    border-right: none;
}

.experience-block__number {
    font-family: var(--font-heading);
    font-size: 9rem;
    line-height: 0.9;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.experience-block__number sup {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 300;
    margin-top: 15px;
    margin-left: 5px;
    opacity: 0.8;
}

.experience-block__title {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.experience-block__desc {
    font-family: var(--font-body);
    font-size: 1.07rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    /* text-transform: uppercase; */
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.6;
}

.experience-block__desc .since {
    font-family: 'Condensed Bold', sans-serif;
}

.experience-block__footer {
    background: rgba(0, 0, 0, 0.15);
    padding: 25px 0;
    text-align: center;
}

.experience-block__footer-content span {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Responsive Experience Block */
@media screen and (max-width: 1200px) {
    .experience-block__number {
        font-size: 7rem;
    }
}

@media screen and (max-width: 1024px) {
    .experience-block__grid {
        grid-template-columns: 1fr;
        gap: 0px;
        padding-bottom: 80px;
    }

    .experience-block__item {
        border-right: none;
        padding-bottom: 80px;
    }

    .experience-block__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .experience-block {
        padding: 80px 0 0;
    }

    .experience-block__number {
        font-size: 6rem;
    }

    .experience-block__footer-content span {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
}

/* PROCESS SECTION*/
.dm-process {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.dm-process__container {
    /* max-width: 1600px; */
    margin: 0 auto;
    padding: 0 64px;
}

.dm-process__header {
    margin-bottom: 80px;
}

.dm-process__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dm-process__dash {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.dm-process__meta-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dm-process__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    color: #EFECE5;
    line-height: 1;
    margin: 0;
}

.dm-process__timeline-wrapper {
    position: relative;
    padding-top: 40px;
}

.dm-process__line {
    position: absolute;
    top: 72px;
    left: calc(12.5%);
    width: calc(75%);
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.dm-process__line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff4d4d);
    box-shadow: 0 0 15px var(--accent-glow);
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.dm-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.dm-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dm-process__step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dm-process__step:nth-child(1) {
    transition-delay: 0.2s;
}

.dm-process__step:nth-child(2) {
    transition-delay: 0.4s;
}

.dm-process__step:nth-child(3) {
    transition-delay: 0.6s;
}

.dm-process__step:nth-child(4) {
    transition-delay: 0.8s;
}

.dm-process__icon-box {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dm-process__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.dm-process__icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.dm-process__step:hover .dm-process__icon {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--accent-glow);
    border-color: transparent;
}

.dm-process__step:hover .dm-process__icon i {
    transform: rotate(360deg);
}

.dm-process__icon i {
    transition: transform 0.6s ease;
}

.dm-process__label {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}



.dm-process__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dm-process__number {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.384);
    transition: all 0.4s ease;
    font-weight: 100;
}

.dm-process__step:hover .dm-process__number {
    color: var(--accent);
    -webkit-text-stroke: 1px transparent;
    transform: translateY(-5px);
}

.dm-process__step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: var(--font-body);
}

.dm-process__step-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    /* color: rgba(255, 255, 255, 0.6); */
    max-width: 375px;
    font-family: var(--font-body);
}

@media screen and (max-width: 1024px) {
    .dm-process__container {
        padding: 0 30px;
    }

    .dm-process__steps {
        gap: 20px;
    }

    .dm-process__step-desc {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 767px),
screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .dm-process {
        padding: 80px 0;
    }

    .dm-process__steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dm-process__step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 30px;
        position: relative;
    }

    .dm-process__icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 64px;
        display: flex;
        flex-direction: column;
        /* align-items: center; */
    }

    .dm-process__content {
        align-items: flex-start;
    }

    .dm-process__step-desc {
        max-width: 100%;
    }


    .dm-process__line {
        position: absolute;
        left: 33px;
        top: 72px;
        width: 2px;
        height: calc(100% - 200px);
        background: rgba(255, 255, 255, 0.05);
        z-index: 1;
    }

    .dm-process__line-progress {
        width: 100%;
        height: 0%;
        transition: height 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .dm-process__label {
        background-color: #797777;
        color: #ffffff;
        padding: 3px 6px;
        border-radius: 4px;
        font-size: .6rem;
    }
}

/* dm-video2-section */
.dm-video2-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.dm-video2-container {

    margin: 0 auto;
    padding: 0 40px;
}

.dm-video2-main {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: #111;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */

}

.dm-video2-main-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.dm-video2-main-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.dm-video2-carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.dm-video2-carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 10px 0;
}

.dm-video2-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.dm-video2-item {
    flex: 0 0 calc(33.333% - 16px);
    border-radius: 16px;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

.dm-video2-item:hover {
    /* transform: translateY(-5px); */
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.dm-video2-item.active {
    border-color: var(--accent);
    /* box-shadow: 0 0 20px var(--accent-glow); */
    border: 3px solid var(--accent);
}

.dm-video2-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    pointer-events: none;
}

.dm-video2-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.dm-video2-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    z-index: 2;
}

.dm-video2-item:hover .dm-video2-overlay {
    background: rgba(0, 0, 0, 0);
}

.dm-video2-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.dm-video2-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.dm-video2-arrow i {
    font-size: 1.2rem;
}

.dm-video2-arrow.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .dm-video2-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .dm-video2-section {
        padding: 60px 0;
    }

    .dm-video2-container {
        padding: 0 20px;
    }

    .dm-video2-item {
        flex: 0 0 100%;
    }

    .dm-video2-arrow {
        width: 45px;
        height: 45px;
    }
}

/* Desktop Vertical Sidebar Layout */
@media (min-width: 1025px) {
    .dm-video2-container {
        display: flex;
        gap: 30px;
        align-items: anchor-center;
        margin: 0 auto;
    }

    .dm-video2-main {
        flex: 1;
        margin-bottom: 0;
    }

    .dm-video2-carousel-outer {
        width: 250px;
        /* "Mini" sidebar width */
        flex: 0 0 250px;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .dm-video2-carousel-container {
        width: 100%;
        height: 105px !important;
        /* Exactly 4 items (4 * 168.75 + 3 * 10) */
        overflow: hidden !important;
        position: relative;
        padding: 0 !important;
    }

    .dm-video2-carousel-track {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .dm-video2-item {
        /* flex: 0 0 auto !important; */
        width: 100% !important;
        aspect-ratio: 16 / 9;
        display: block !important;
        /* height: auto !important; */
    }

    .dm-video2-item .dm-video2-thumb {
        height: 100%;
        padding-top: 0 !important;
    }

    .dm-video2-arrow {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .dm-video2-arrow-left i {
        transform: rotate(90deg);
    }

    .dm-video2-arrow-right i {
        transform: rotate(90deg);
    }
}

/* dm-diff section */
.dm-diff {
    padding: 120px 0;
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
}

.dm-diff__container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 30px;
}

.dm-diff__main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.dm-diff__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.dm-diff__dash {
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.dm-diff__meta-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.dm-diff__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 30px;
    color: var(--text-color);
}

.dm-diff__desc {
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.801);
    margin-bottom: 40px;
    max-width: 500px;
}

.dm-diff__btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 32px;
    border: 1px solid var(--accent);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dm-diff__btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Dashboard UI */
.dm-dashboard {
    background: #111;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    cursor: default;
}

.dm-dashboard__header {
    background: #1a1a1a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-dashboard__dots {
    display: flex;
    gap: 8px;
}

.dm-dashboard__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.dm-dashboard__title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dm-dashboard__body {
    padding: 30px;
}

.dm-dashboard__graph-container {
    height: 180px;
    margin-bottom: 40px;
    position: relative;
}

.dm-dashboard__svg {
    width: 65%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.dm-dashboard__graph-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-dashboard__graph-area {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: opacity 1s 0.8s ease, transform 1.5s 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dm-diff.is-visible .dm-dashboard__graph-path {
    stroke-dashoffset: 0;
}

.dm-diff.is-visible .dm-dashboard__graph-area {
    opacity: 1;
    transform: scaleY(1);
}

.pulse-point {
    animation: pointPulse 2s infinite;
}

@keyframes pointPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.dm-dashboard__metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dm-dashboard__metric-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.dm-dashboard__metric-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Condensed Bold', sans-serif;
}

.dm-dashboard__metric-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
}

.dm-dashboard__progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.dm-dashboard__bar {
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.dm-diff.is-visible .dm-dashboard__bar {
    width: var(--target-width);
}

.dm-dashboard__footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-size: 1rem;
}

.dm-dashboard__legend {
    display: flex;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.4);
}

.legend-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot.red {
    background: var(--accent);
}

.dot.pink {
    background: #ff4d4d;
}

.dot.gray {
    background: #444;
}

.dot.white {
    background: #eee;
}

.dm-dashboard__status {
    color: #27c93f;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 10px #27c93f;
}

.dm-dashboard__brand {
    margin-left: auto;
    color: rgb(255, 255, 255);
}

/* List Section */
.dm-diff__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dm-diff__item {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.801);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.dm-diff__item i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 1.1rem;
}

.dm-diff__item:hover {
    transform: translateX(12px);
    color: #fff;
}

/* Platforms Grid */
.dm-platforms {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
    text-align: center;
}

.dm-platforms__title {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    /* color: rgba(255, 255, 255, 0.3); */
    margin-bottom: 50px;
    text-transform: uppercase;
}

.dm-platforms__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.dm-platform-tag {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.dm-platform-tag:hover {
    background: rgba(145, 13, 23, 0.1);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .dm-diff__main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dm-diff__list-container {
        grid-column: span 2;
        margin-top: 40px;
    }

    .dm-diff__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .dm-diff {
        padding: 22px 0 95px 0;
    }

    .dm-diff__main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dm-diff__list-container {
        grid-column: span 1;
    }

    .dm-diff__list {
        grid-template-columns: 1fr;
    }

    .dm-diff__title {
        font-size: 3.5rem;
    }

    .dm-dashboard__body {
        padding: 20px;
    }

    .dm-dashboard__metric-val {
        font-size: 1.2rem;
    }

    .dm-dashboard__graph-container {
        height: auto;
    }

    .dm-dashboard__svg {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .dm-blog__excerpt{
        font-size: 1.2rem !important;
    }
    .dm-blog__date {
        font-size: 0.9rem !important;
    }
    .dm-blog__read-more {
        font-size: 0.9rem !important;
        gap: 8px !important;
    }
    .dm-platform-tag{
        font-size: 1.2rem;
    }
}

/* dm-team section */
.dm-team {
    padding: 120px 0;
    background: #0a0a0a;
}

.dm-team__container {
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0 40px;
}

.dm-team__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.dm-team__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dm-team__dash {
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.dm-team__meta-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.dm-team__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--text-color);
}

.dm-team__header-desc {
    max-width: 550px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

.dm-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.dm-team__box {
    position: relative;
    padding: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 630px;
}




.dm-team__box:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-team__avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    background: #222;
}

.dm-team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(1);
}

.dm-team__content {
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.dm-team__badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.color-1 {
    background: var(--accent);
}

.color-2 {
    background: #3b3b3b;
}

.color-3 {
    background: #1e3a8a;
}

.color-4 {
    background: #b45309;
}

.color-5 {
    background: #065f46;
}

.dm-team__name {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.dm-team__role {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.dm-team__bio {
    font-size: 1.3rem;
    line-height: 1.6;
    /* color: rgba(255, 255, 255, 0.4); */
    margin-bottom: 30px;
    opacity: 0.8;
}

.dm-team__experience {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-team__experience::before {
    content: '';
    width: 15px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hover Effects */
.dm-team__box:hover {
    background: rgba(255, 255, 255, 0.02);
    z-index: 10;
}
.dm-team__box:hover .dm-team__role{
    font-size: 1.1rem;
}

.dm-team__box:hover .dm-team__avatar-container {
    width: 220px;
    height: 300px;
    border-radius: 12px;
    position: absolute;
    top: 40px;
    left: 40px;
    margin-bottom: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dm-team__box:hover .dm-team__img {
    filter: grayscale(0);
}

.dm-team__box:hover .dm-team__content {
    transform: translateX(240px);
    max-width: calc(100% - 240px);
}



.dm-team__box:hover .dm-team__bio {
    opacity: 1;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .dm-team__grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row */
    }

    .dm-team__box {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: auto;
    }


    .dm-team__box:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .dm-team__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .dm-team__header-desc {
        text-align: left;
    }

    .dm-team__grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 0 40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dm-team__grid::-webkit-scrollbar {
        display: none;
    }

    .dm-team__box {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
        min-height: auto;
        height: auto;
        /* padding: 40px 30px; */
    }


    .dm-team__box:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    /* Disable Hover Effects on Mobile */
    .dm-team__box:hover {
        background: transparent;
    }

    .dm-team__box:hover .dm-team__avatar-container {
        width: 80px !important;
        height: 80px !important;
        border-radius: 50% !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin-bottom: 30px !important;
        box-shadow: none !important;
    }

    .dm-team__box:hover .dm-team__img {
        filter: grayscale(1) !important;
        transform: none !important;
    }

    .dm-team__box:hover .dm-team__content {
        transform: none !important;
        max-width: 100% !important;
    }

    .dm-team__box:hover .dm-team__bio {
        opacity: 0.8 !important;
        color: rgba(255, 255, 255, 0.4) !important;
    }

}

/* dm-blog section */
.dm-blog {
    padding: 120px 0;
    background: #0a0a0a;
}

.dm-blog__container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 30px;
}

.dm-blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.dm-blog__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dm-blog__dash {
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.dm-blog__meta-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.dm-blog__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: #fff;
}

.dm-blog__all-link {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-blog__all-link:hover {
    color: var(--accent);
}

.dm-blog__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    /* gap: 30px; */
}

.dm-blog__card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.dm-blog.is-visible .dm-blog__card {
    opacity: 1;
    transform: translateY(0);
}

.dm-blog__card:nth-child(2) {
    transition-delay: 0.2s;
}

.dm-blog__card:nth-child(3) {
    transition-delay: 0.4s;
}

.dm-blog__card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.dm-blog__img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.dm-blog__card--main .dm-blog__img-wrapper {
    aspect-ratio: 16/9;
}

.dm-blog__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dm-blog__card:hover .dm-blog__img {
    transform: scale(1.1);
}

.dm-blog__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.dm-blog__card:hover .dm-blog__overlay {
    opacity: 0.8;
}

.dm-blog__content {
    padding: 40px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dm-blog__tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dm-blog__tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.dm-blog__date {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
}

.dm-blog__card-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.dm-blog__card:hover .dm-blog__card-title {
    color: var(--accent);
}

.dm-blog__excerpt {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
}

.dm-blog__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-blog__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-blog__author-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.dm-blog__author-icon.red {
    background: #910D17;
}

.dm-blog__author-icon.pink {
    background: #E91E63;
}

.dm-blog__author-name {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.dm-blog__read-more {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.dm-blog__card:hover .dm-blog__read-more {
    gap: 12px;
    color: var(--accent);
}

@media (max-width: 1200px) {
    .dm-blog__grid {
        grid-template-columns: 1fr 1fr;
    }

    .dm-blog__card--main {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .dm-blog__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .dm-blog__grid {
        grid-template-columns: 1fr;
    }

    .dm-blog__card--main {
        grid-column: span 1;
    }

    .dm-blog__content {
        padding: 30px;
    }

    .dm-blog__card-title {
        font-size: 1.5rem;
    }

    .dm-blog {
        padding-top: 0;
    }
}

/* dm-cta section */
.dm-cta {
    padding: 50px 0 160px 0;
    /* background: #080808; */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dm-cta__container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.dm-cta__content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.dm-cta.is-visible .dm-cta__content {
    opacity: 1;
    transform: translateY(0);
}

.dm-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    color: var(--text-color);
    margin-bottom: 40px;
}

.dm-cta__desc {
    font-size: 1.6rem;
    line-height: 1.6;
    /* color: rgba(255, 255, 255, 0.5); */
    margin-bottom: 60px;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}

.dm-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.dm-cta__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(145, 13, 23, 0.3);
}

.dm-cta__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(145, 13, 23, 0.15) 0%, rgba(145, 13, 23, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* dm-footer section */
.dm-footer {
    padding: 100px 0 40px;
    /* background: #050505; */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-footer__container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 40px;
}

.dm-footer__top {
    display: grid;
    grid-template-columns: 2fr 1.6fr 0.8fr 0.9fr;
    gap: 60px;
    margin-bottom: 80px;
}

.dm-footer__logo {
    display: block;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.dm-footer__logo:hover {
    transform: scale(1.05);
}

.dm-footer__logo img {
    height: 50px;
    width: auto;
}

.dm-footer__tagline {
    font-size: 1.5rem;
    line-height: 1.6;
    /* color: rgba(255, 255, 255, 0.4); */
    margin-bottom: 30px;
    max-width: 450px;
}

.dm-footer__socials {
    display: flex;
    gap: 15px;
    margin-top: 40px !important;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--accent);
}

.dm-footer__link-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.dm-footer__list {
    list-style: none;
    padding: 0;
}

.dm-footer__list li {
    margin-bottom: 15px;
}

.dm-footer__list a {
    font-size: 1.2rem;
    /* color: rgba(255, 255, 255, 0.4); */
    transition: all 0.3s ease;
    display: inline-block;
    /* white-space: nowrap; */

}

.dm-footer__list a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info li {
    font-size: 1.2rem;
    /* color: rgba(255, 255, 255, 0.4); */
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    color: var(--accent);
    margin-top: 4px;
    width: 15px;
}

.dm-footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dm-footer__copy {
    font-size: 1.2rem;
    /* color: rgba(255, 255, 255, 0.3); */
}

.dm-footer__legal {
    display: flex;
    gap: 30px;
}

.dm-footer__legal a {
    font-size: 1.2rem;
    /* color: rgba(255, 255, 255, 0.3); */
    transition: color 0.3s ease;
}

.dm-footer__legal a:hover {
    color: var(--accent);
}

.dm-footer__services .dm-footer__link-title {
    /* text-align: center; */
    margin-bottom: 25px;
}

.dm-footer__services-grid {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 10px 35px;
    justify-content: center;
}

.dm-footer__top>.dm-footer__links:nth-of-type(2),
.dm-footer__top>.dm-footer__links:nth-of-type(3),
.dm-footer__top>.dm-footer__links:nth-of-type(4) {
    justify-self: end;
    text-align: left;
}

@media (max-width: 1200px) {
    .dm-footer__top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 60px;
    }

    .dm-footer__links:last-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .dm-cta {
        padding-top: 0px !important;
        padding-bottom: 20px;
    }

    .dm-cta__title {
        font-size: 4rem;
    }

    .dm-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .dm-footer__brand {
        grid-column: span 2;
        margin-bottom: 40px;
    }

    .dm-footer__links:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .dm-cta__title {
        font-size: 3rem;
    }

    .dm-footer {
        padding: 80px 0 40px;
    }

    .dm-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dm-footer__brand,
    .dm-footer__links:last-child {
        grid-column: span 1;
    }

    .dm-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .dm-footer__legal {
        justify-content: center;
    }

    .dm-footer__logo {
        text-align: center;
    }

    .dm-footer__logo img {
        height: 40px;
    }

    .dm-cta__btn {
        font-size: 1.1rem;
    }

    .dm-cta {
        margin-top: 50px;
    }

    .dm-video-play-text {
        margin-bottom: 20px;
    }

    .dm-footer__list a {
        font-size: 1.2rem
    }

    .dm-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .dm-footer__brand,
    .dm-footer__services {
        grid-column: span 2;
    }

    .dm-footer__top>.dm-footer__links:nth-of-type(3),
    .dm-footer__top>.dm-footer__links:nth-of-type(4) {
        justify-self: start;
    }

    .dm-footer__tagline {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

/* ABOUT STORY SECTION (TEXT & THREADS)*/
.dm-about-story {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.dm-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Intro Block */
.dm-about-intro {
    max-width: 1000px;
    margin-bottom: 100px;
}

.dm-about-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.dm-about-dash {
    width: 40px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.dm-about-meta-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dm-about-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 32px;
}

.dm-about-desc {
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
}

/* Separators Grid */
.dm-about-separators {
    margin-bottom: 120px;
}

.dm-about-sep-header {
    margin-bottom: 60px;
    position: relative;
}

.dm-about-sub-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 20px;
}

.dm-about-sep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dm-about-sep-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 28px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.dm-about-sep-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.dm-about-sep-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(145, 13, 23, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.dm-about-sep-card:hover::before {
    transform: scaleX(1);
}

.dm-about-sep-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.dm-about-sep-card:hover .dm-about-sep-icon {
    transform: scale(1.1) rotate(-5deg);
}

.dm-about-sep-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.dm-about-sep-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.dm-about-sep-text--small {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Values Timeline (Threads) */
.dm-about-values {
    position: relative;
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.dm-values-thread {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
}

.dm-values-thread-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Animated */
    background: linear-gradient(to bottom, transparent, var(--accent), var(--accent));
    box-shadow: 0 0 15px var(--accent);
    transition: height 0.1s linear;
}

.dm-value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
}

.dm-value-item:last-child {
    margin-bottom: 0;
}

.dm-value-dot {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 16px;
    height: 16px;
    background: #0a0a0a;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: all 0.4s ease;
}

.dm-value-item.is-visible .dm-value-dot {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    background: var(--accent);
}

.dm-value-content {
    width: 47%;
    padding: 28px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    transition: all 0.5s ease;
}

.dm-value-item:nth-child(odd) .dm-value-content {
    margin-right: auto;
    transform: translateX(-20px);
}

.dm-value-item:nth-child(even) .dm-value-content {
    margin-left: auto;
    transform: translateX(20px);
}

.dm-value-item.is-visible .dm-value-content {
    transform: translateX(0);
    opacity: 1;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.dm-value-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.dm-value-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* Utilities */
.dm-text-glow {
    color: #fff;
    text-shadow: 0 0 20px rgba(145, 13, 23, 0.6);
}

.dm-text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.603);
    font-weight: 500;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="right"] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
    .dm-about-sep-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dm-values-thread {
        left: 20px;
    }

    .dm-value-dot {
        left: 20px;
    }

    .dm-value-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        transform: translateX(20px) !important;
    }

    .dm-value-item.is-visible .dm-value-content {
        transform: translateX(0) !important;
    }
}

@media (max-width: 767px) {
    .dm-about-container {
        padding: 0 24px;
    }

    .dm-about-main-title {
        font-size: 3rem;
    }

    .dm-about-sub-title {
        font-size: 2.2rem;
    }
}

/* ================================================================
   CONTACT PAGE STYLES
   ================================================================ */
.dm-contact-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.dm-contact-hero__container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.dm-contact-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dm-contact-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 1;
}

.dm-contact-main {
    padding: 100px 0;
    background: #0a0a0a;
}

.dm-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.dm-contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

/* Form Styling */
.dm-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dm-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dm-form-group label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dm-form-group input,
.dm-form-group select,
.dm-form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.dm-form-group input:focus,
.dm-form-group select:focus,
.dm-form-group textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(145, 13, 23, 0.2);
}

.dm-form-group select option {
    background: #111;
    color: #ffffff !important;
}

.dm-contact-submit {
    align-self: flex-start;
    padding: 20px 50px;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
}

/* Info Side */
.dm-contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.dm-contact-info-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.dm-contact-info-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.dm-contact-info-item--link {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.dm-contact-info-item--link:hover {
    transform: translateX(10px);
}

.dm-contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(145, 13, 23, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dm-contact-info-text p {
    font-size: 1.1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.dm-contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
    display: block;
}

/* Map Section */
.dm-contact-map {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.dm-contact-map iframe {
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9);
    /* Dark mode map effect */
}

/* Responsive */
@media (max-width: 1024px) {
    .dm-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dm-contact-hero {
        padding: 120px 0 80px;
    }
}

@media (max-width: 768px) {
    .dm-form-row {
        grid-template-columns: 1fr;
    }

    .dm-contact-info-card {
        padding: 40px 30px;
    }

    .dm-contact-hero__title {
        font-size: 3.5rem;
    }
}

/* ================================================================
   VIDEO PRODUCTION SERVICE STYLES
   ================================================================ */
.dm-video-hero {
    min-height: 80vh;
    background: #000;
    overflow: hidden;
    padding-top: 100px;
    /* Fixed gap for navbar */
}

@media (max-width: 768px) {
    .dm-video-hero {
        padding-top: 80px;
        min-height: 60vh;
    }
}


.dm-service-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    position: relative;
    z-index: 10;
    height: 100%;
    min-height: 70vh;
    /* Match hero height */
}

.dm-video-hero {
    position: relative;
    /* important */
    overflow: hidden;
    /* already there but keep it */
}

.dm-service-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    /* ensures video is clipped */
}

.dm-service-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: grayscale(100%);
}

/* ... existing hero styles ... */

.dm-service-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 13vw, 8rem);
    line-height: 0.9;
    color: #fff;
    margin-bottom: 24px;
}

.dm-service-hero__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 48px;
    text-transform: uppercase;
}

.dm-service-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dm-service-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.dm-service-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0a0a0a 20%, transparent 100%);
}

/* Play Button Styling */
.dm-video-play-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}

.dm-video-play-btn {
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 40px rgba(145, 13, 23, 0.5);
}

.dm-video-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--accent);
}

.dm-video-play-ripple {
    position: absolute;
    inset: -10px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: playRipple 2s infinite;
}

@keyframes playRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.dm-video-play-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
}

/* Service Content */
.video-service-content {
    padding: 120px 0;
    background: #0a0a0a;
}

.dm-service-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.dm-service-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.1;
}

.dm-service-intro__desc {
    font-size: 1.4rem;
    /* line-height: 1.6; */
    color: rgba(255, 255, 255, 0.6);
}

.dm-service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dm-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 25px;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}



.dm-feature-card:hover {
    background: rgba(145, 13, 23, 0.03);
    border-color: rgba(145, 13, 23, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(145, 13, 23, 0.15);
}

.dm-feature-card:hover::before {
    background: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
    width: 80px;
    height: 80px;
}

.grid-serve-services {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.521);

}

.dm-feature-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.199);
    position: absolute;
    top: -4px;
    left: 11px;
    transition: all 0.5s ease;
    z-index: 0;
    line-height: 1;
}

.dm-feature-card:hover .dm-feature-icon {
    color: rgba(145, 13, 23, 0.08);
    transform: scale(1.1) translate(15px, 15px);
}

.dm-feature-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.dm-feature-card:hover .dm-feature-title {
    color: var(--accent);
    transform: translateX(5px);
}


/* Video Slider Section */
.video-services-slide {
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.dm-slide-header {
    text-align: center;
    margin-bottom: 80px;
}

.dm-slide-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: #fff;
    margin-bottom: 24px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.1;
}

.dm-slide-main-desc {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 970px;
    margin: 0 auto;
}

.dm-video-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.dm-video-slider {
    position: relative;
    height: 600px;
}

.dm-video-slide {
    position: absolute;
    /* inset: 0; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(50px);
}

.dm-video-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dm-video-slide__content {
    padding: 0 40px;
}

.dm-sliding-num {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(145, 13, 24, 0.664);
    line-height: 1;
    /* margin-bottom: 20px; */
    display: block;
}

.dm-sliding-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.dm-sliding-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

.dm-sliding-text {
    font-size: 1.5rem;
    line-height: 1.3;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
}

.dm-sliding-text--small {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.692);
    line-height: 1.5;
}

.dm-video-slide__image {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-video-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* Responsive Overrides for Video Slider */
@media (max-width: 1024px) {
    .dm-video-slider {
        height: 850px;
        /* Fixed height for absolute children on mobile */
    }

    .dm-video-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        transform: translateY(30px);
        align-items: flex-start;
    }

    .dm-video-slide.active {
        transform: translateY(0);
    }

    .dm-video-slide__image {
        order: -1;
        height: 350px;
        width: 100%;
    }

    .dm-video-slide__content {
        padding: 0;
        text-align: center;
    }

    .dm-sliding-num {
        display: none;
    }

    .dm-sliding-title {
        font-size: 2.5rem;
    }

    .dm-sliding-subtitle {
        margin-bottom: 15px;
    }

    .dm-video-slider-controls {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {


    .dm-video-slide__image {
        height: 280px;
    }

    .dm-video-play-btn {
        width: 80px;
        height: 80px;
    }

    .dm-service-intro__desc {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .dm-slide-main-title {
        line-height: 1.1;
        margin-left: 10px;
        margin-right: 10px;
    }

    .dm-video-slider-controls {
        margin-top: 150px !important;
        position: relative;
        z-index: 10;
    }

    .dm-service-hero__title {
        margin-top: 24px;
    }

    .dm-feature-title {
        font-size: 1.6rem;
    }

    .dm-feature-icon {
        font-size: 3rem;
        top: 10px;
    }

    .dm-video-play-box {
        margin-top: 30px;
    }

    .dm-slide-main-desc {
        font-size: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
    }

    .dm-sliding-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .dm-sliding-title {
        font-size: 2rem;
    }

    .dm-cta__desc {
        font-size: 1.2rem;
    }
    .dm-service-intro__title{
        line-height: 1.1;
    }
    .dm-sliding-text--small{
        font-size: 1.2rem;
    }
}


/* Slider Controls */
.dm-video-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 140px;
}

.dm-video-slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-video-slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.dm-video-slider-dots {
    display: flex;
    gap: 12px;
}

.dm-video-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dm-video-dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent-glow);
}

/*PROUD TO WORK WITH SECTION*/
.vdm-proud-work {
    padding: 150px 0;
    background: #000;
}

.vdm-container {
    max-width: 1400px;
    margin: 0 auto;
}

.dm-container {
    max-width: 1650px;
    margin: 0 auto;
}

.dm-proud-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #fff;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: 0.05em;
}

.dm-proud-banners {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.dm-proud-banner {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    /* overflow: hidden;  Removed to allow image pop-out */
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}

.dm-proud-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 3;
}


.dm-proud-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    transition: background 0.5s ease;
}

.dm-proud-banner:hover .dm-proud-banner__overlay {
    background: rgba(0, 0, 0, 0.4);
}

.dm-proud-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}



.dm-proud-device {
    flex: 1;
    max-width: 600px;
    perspective: 2000px;
    z-index: 10;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-proud-banner:hover .dm-proud-device {
    transform: scale(1.05) translateY(-10px);
}

.dm-proud-device img {
    width: 120%;
    /* Bigger image */
    height: auto;
    margin-left: -10%;
    /* Center the overflow */
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.9));
    transition: all 0.6s ease;
}

.dm-proud-banner:hover .dm-proud-device img {
    filter: drop-shadow(0 60px 130px rgba(0, 0, 0, 1));
}

.dm-proud-device-sm img {
    width: 100% !important;
    margin-left: 0% !important;
    /* transform: scale(.7) !important; */
}

.dm-proud-device-sm {
    flex: 1;
    max-width: 400px;
    perspective: 2000px;
    z-index: 10;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-proud-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.dm-proud-logo {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.dm-proud-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.dm-proud-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.dm-proud-link:hover {
    color: var(--accent);
}

.dm-proud-link:hover::after {
    width: 100%;
}

.dm-proud-link i {
    font-size: 0.8em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.dm-proud-link:hover i {
    transform: translateX(10px);
}

/* Responsive */
@media (max-width: 1024px) {
    .dm-proud-banner__content {
        padding: 40px;
        gap: 40px;
    }

    .dm-proud-logo {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .dm-proud-banner__content {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .dm-proud-banner--reverse .dm-proud-banner__content {
        flex-direction: column-reverse;
    }

    .dm-proud-device {
        max-width: 100%;
    }

    .dm-proud-banner {
        min-height: auto;
    }
}


/* Video Modal */
.dm-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.dm-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.dm-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.dm-video-modal__container {
    width: 90%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-video-modal.is-open .dm-video-modal__container {
    transform: scale(1);
}

.dm-video-modal__close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
}

.dm-video-modal__frame {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.dm-video-modal__frame iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .dm-service-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        /* gap: 60px; */
    }

    .dm-service-hero__actions {
        display: flex;
        justify-content: center;
    }

    .dm-service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dm-sliding-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .dm-sliding-item--reverse {
        direction: ltr;
    }

    .dm-sliding-title {
        font-size: 2.5rem;
    }

    .dm-service-features {
        grid-template-columns: 1fr;
    }

    .dm-feature-card {
        padding: 40px 20px;
    }
}



/* ================================================================
   EVENT MANAGEMENT SPECIFIC SECTIONS
   ================================================================ */

.event-service-section {
    padding: 150px 0;
    background: #0a0a0a;
    position: relative;
    z-index: 1;
}

.event-service-header {
    text-align: center;
    margin-bottom: 80px;
}

.event-service-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
}

.event-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.event-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.event-service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-glow);
}

.event-service-card:hover::before {
    opacity: 0.3;
}

.event-service-icon {
    width: 90px;
    height: 90px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.event-service-card:hover .event-service-icon {
    background: var(--accent);
    color: #fff;
    transform: rotateY(360deg);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.event-service-name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Event Slides Section */
.event-slides-section {
    padding: 100px 0;
    background: #000;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.event-slides-wrapper {
    display: flex;
    gap: 30px;
    animation: eventMarquee 40s linear infinite;
    width: max-content;
}

.event-slide {
    width: 500px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-slide:hover img {
    transform: scale(1.15);
}

@keyframes eventMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.event-slides-section:hover .event-slides-wrapper {
    animation-play-state: paused;
}

/* Responsive for Event sections */
@media (max-width: 1200px) {
    .event-service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .event-slide {
        width: 400px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .event-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .event-service-grid {
        grid-template-columns: 1fr;
    }

    .event-service-card {
        padding: 40px 20px;
    }

    .event-slide {
        width: 300px;
        height: 200px;
    }
}

/* ================================================================
   SEO PAGE SPECIFIC SECTIONS
   ================================================================ */

.seo-section-page {
    padding: 120px 0;
    background: #0a0a0a;
}

.seo-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
}

.seo-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 35px;
    letter-spacing: 0.02em;
}

.seo-intro-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.seo-intro-visual {
    position: relative;
}

.seo-intro-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
}

.seo-packages-section {
    position: relative;
}

.seo-packages-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    color: #fff;
    /* margin-bottom: 100px; */
    text-align: center;
}

.seo-features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 80px;
}

.seo-features-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.seo-feature-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.seo-feature-item.left-aligned {
    flex-direction: row;
}

.seo-feature-item.right-aligned {
    flex-direction: row;
    /* box then circle in HTML */
}

.seo-feature-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #fff;
    flex-shrink: 0;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 4px solid #0a0a0a;
}

.yellow-circle {
    background: #ffffff;
}

.red-circle {
    background: var(--accent);
}

.seo-feature-box {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 45px;
    border-radius: 15px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.left-aligned .seo-feature-box {
    margin-left: -55px;
    padding-left: 75px;
}

.right-aligned .seo-feature-box {
    margin-right: -55px;
    padding-right: 75px;
    text-align: right;
}

.seo-feature-item:hover .seo-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.seo-feature-item:hover .seo-feature-icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.seo-feature-box-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    /* margin-bottom: 15px; */
    letter-spacing: 0.05em;
}
.seo-feature-box-subtitle{
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}
.seo-feature-box-desc {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

/* Responsive SEO */
@media (max-width: 1200px) {
    .seo-features-layout {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .seo-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .seo-features-layout {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .seo-feature-item.left-aligned {
        flex-direction: column;
    }

    .seo-feature-item.right-aligned {
        flex-direction: column-reverse;
    }

    .seo-feature-item {
        align-items: center;
    }

    .seo-feature-box {
        margin: -55px 0 0 0 !important;
        padding: 80px 30px 40px 30px !important;
        text-align: center;
    }

    .seo-feature-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .seo-intro-text {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1.2rem;
    }
}

/* SEO PAGE ADDITIONAL SECTIONS */

/* SEO Banner CTA */
.seo-banner-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffffe5 0%, #ffffffcb 100%);
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 20px;
}

.seo-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    color: #000;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
    line-height: 1.1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.seo-banner-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(145, 13, 23, 0.4);
}

.seo-banner-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(145, 13, 23, 0.6);
    background: #000;
}

/* SEO Pricing Section */
.seo-pricing-section {
    padding: 150px 0;
    background: #000;
    position: relative;
}

.seo-pricing-table-container {
    overflow-x: auto;
    border-radius: 25px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8);
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #0a0a0a;
}

.seo-pricing-table-container::-webkit-scrollbar {
    height: 6px;
}

.seo-pricing-table-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.seo-pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.seo-pricing-table th,
.seo-pricing-table td {
    padding: 28px 35px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    transition: background 0.3s ease;
}

.seo-pricing-table th {
    background: #0a0a0a;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    vertical-align: middle;
}

.seo-pricing-table .feature-col {
    width: 35%;
    text-align: left;
    background: #fff;
    color: #000;
    position: sticky;
    /* left: 0; */
    z-index: 20;
}

.table-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    line-height: 1;
}

.table-intro p {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: #555;
}

.package-col {
    width: 21.6%;
}

.package-col.starter {
    background: #120607;
}

.package-col.business {
    background: #22080a;
}

.package-col.pro {
    background: #330b0f;
}

.category-row td {
    background: rgba(255, 255, 255, 0.03) !important;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    padding: 25px 35px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-name {
    text-align: left !important;
    font-weight: 500;
    color: #fff !important;
}

.check-green {
    color: #2ecc71;
    font-size: 1.3rem;
}

.x-red {
    color: #e74c3c;
    font-size: 1.3rem;
}

.small-text {
    font-size: 0.9rem;
    display: block;
    margin-top: 8px;
    opacity: 0.8;
}

.pricing-table-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.pricing-table-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.seo-pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.seo-pricing-table tr:hover .feature-name {
    color: var(--accent) !important;
}

/* Tablet / Mobile tweaks */
@media (max-width: 768px) {
    .seo-banner-cta {
        padding: 80px 0;
    }

    .seo-pricing-section {
        padding: 100px 0;
    }

    .seo-pricing-table .feature-col {
        padding: 20px;
    }

    .table-intro h3 {
        font-size: 1.5rem;
    }

    .seo-pricing-table th,
    .seo-pricing-table td {
        padding: 12px 28px;
    }

    .seo-pricing-table th {
        font-size: 1rem;
    }

    .seo-pricing-table .feature-col {
        width: 25%;

    }

    .category-row td {
        font-size: 1.3rem;
    }

    .right-aligned .seo-feature-box,
    .left-aligned .seo-feature-box {
        text-align: left;
    }
}

/* ================================================================
   SMM PAGE SPECIFIC SECTIONS
   ================================================================ */

.smm-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.smm-platforms-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    margin-top: -150px;
    /* Overlap with hero */
}

.smm-platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.smm-platform-item i {
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

.smm-platform-item span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.smm-platform-item:hover {
    transform: translateY(-10px);
}

.smm-icon-fb {
    color: #1877F2;
}

.smm-icon-ig {
    color: #E4405F;
}

.smm-icon-tw {
    color: #111;
}

.smm-icon-li {
    color: #0A66C2;
}

.smm-icon-yt {
    color: #FF0000;
}

.smm-icon-pi {
    color: #BD081C;
}

.smm-benefits-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.smm-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.smm-header-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.smm-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.smm-sub-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.smm-checklist {
    list-style: none;
    padding: 0;
}

.smm-checklist li {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.smm-checklist li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.smm-benefits-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.smm-process-section {
    padding-top: 50px;
}

.smm-process-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px auto;
}

.smm-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
}

.smm-process-box-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.smm-process-box-item.left-icon {
    flex-direction: row;
}

.smm-process-box-item.right-icon {
    flex-direction: row;
}

.smm-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #fff;
    flex-shrink: 0;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 4px solid #0a0a0a;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.smm-box-content {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 50px;
    border-radius: 15px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.left-icon .smm-box-content {
    margin-left: -55px;
    padding-left: 75px;
}

.right-icon .smm-box-content {
    margin-right: -55px;
    padding-right: 75px;
    text-align: right;
}

.smm-process-box-item:hover .smm-box-content {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent);
}

.smm-process-box-item:hover .smm-icon-circle {
    transform: scale(1.15) rotate(10deg);
}

.smm-box-content h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.smm-box-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* Responsive SMM */
@media (max-width: 1200px) {
    .smm-platforms-card {
        padding: 30px;
    }
}

@media (max-width: 1024px) {

    .smm-benefits-grid,
    .smm-process-grid {
        grid-template-columns: 1fr;
        margin-left: 10px;
        margin-right: 10px;
    }

    .smm-platforms-card {
        flex-wrap: wrap;
        gap: 30px;
    }

    .right-icon .smm-box-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .smm-platforms-card {
        margin-top: -100px;
        padding: 20px;
    }

    .smm-platform-item span {
        font-size: 0.8rem;
    }

    .smm-process-box-item.left-icon,
    .smm-process-box-item.right-icon {
        flex-direction: row;
        align-items: center;
    }

    .smm-box-content {
        margin: -55px 0 0 0 !important;
        padding: 80px 30px 40px 30px !important;
        text-align: center;
    }

    .smm-process-section {
        padding-top: 0;
    }

    .smm-icon-circle {
        width: 80px;
        height: 80px;
    }
}

/* TRADITIONAL MEDIA PAGE SPECIFIC SECTIONS*/

.dm-traditional-media {
    padding: 100px 0;
    background: #0a0a0a;
}

.tra-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.1;
}

.tra-why-choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
}

.tra-checklist {
    list-style: none;
    padding: 0;
}

.tra-checklist li {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tra-checklist li i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* Diamond Icon Grid */
.tra-icon-graphic {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.tra-icon-grid {
    position: relative;
    width: 350px;
    height: 350px;
}

.tra-icon-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
}

.tra-icon-card i {
    font-size: 2.2rem;
    color: var(--accent);
    transition: transform 0.4s ease;
}

.tra-icon-card span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.card-top {
    top: -40px;
    left: 115px;
    transform: rotate(-5deg);
}

.card-left {
    top: 115px;
    left: -40px;
    transform: rotate(-3deg);
}

.card-center {
    top: 115px;
    left: 115px;
    z-index: 10;
    background: var(--accent);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(145, 13, 23, 0.4);
    transform: scale(1.1);
}

.card-right {
    top: 115px;
    left: 270px;
    transform: rotate(5deg);
}

.card-bottom {
    top: 270px;
    left: 115px;
    transform: rotate(3deg);
}

.card-center i {
    color: #fff;
}

.tra-icon-card:hover {
    transform: translateY(-15px) scale(1.1) rotate(2deg);
    background: #fff;
    color: #000;
    z-index: 15;
}

.tra-icon-card:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.card-center:hover i {
    color: var(--accent);
}

.yellow-circle {
    background: #ffcc00;
    color: #000;
}

.red-circle {
    background: var(--accent);
    color: #fff;
}

/* Services Layout */
.tra-services-section {
    margin-bottom: 150px;
}

.tra-services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
}

.tra-services-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tra-service-box-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.tra-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #fff;
    flex-shrink: 0;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 4px solid #0a0a0a;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tra-box-content {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 50px;
    border-radius: 15px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.left-icon .tra-box-content {
    margin-left: -55px;
    padding-left: 75px;
}

.right-icon .tra-box-content {
    margin-right: -55px;
    padding-right: 75px;
    text-align: right;
}

.tra-service-box-item:hover .tra-box-content {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent);
}

.tra-service-box-item:hover .tra-icon-circle {
    transform: scale(1.15) rotate(10deg);
}

.tra-box-content h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.tra-box-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* What We Provide */
.tra-provide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tra-provide-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Responsive Traditional Media */
@media (max-width: 1024px) {

    .tra-why-choose,
    .tra-services-layout,
    .tra-provide-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tra-icon-graphic {
        height: auto;
        margin-top: 50px;
    }

    .right-icon .tra-box-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .tra-service-box-item.left-icon {
        flex-direction: column;
        align-items: center;
    }

    .tra-service-box-item.right-icon {
        flex-direction: column-reverse;
        align-items: center;
    }

    .tra-box-content {
        margin: -45px 0 0 0 !important;
        padding: 70px 25px 35px 25px !important;
        text-align: center;
    }

    .tra-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        border-width: 3px;
    }

    .tra-icon-grid {
        transform: scale(0.8);
        margin: 0 auto;
    }

    .tra-icon-graphic {
        height: 380px;
        margin-top: 20px;
    }

    .dm-traditional-media {
        margin-left: 10px;
        margin-right: 10px;
    }

    .tra-checklist li {
        font-size: 1rem;
    }
}

/*STREAMING AUDIO PAGE SPECIFIC SECTIONS*/
.streaming-section {
    padding: 100px 0;

}

.str-intro {
    max-width: 1000px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.str-intro-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    /* color: #444; */
    line-height: 1.8;
}

.str-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    /* color: #000; */
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.1;
}

.str-benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.str-benefit-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.str-benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px auto;
}

.str-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.str-benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.str-benefit-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.str-benefit-card:hover {
    transform: translateY(-10px);
}

/* Services Icons */
.str-services-icons {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.str-service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 250px;
}

.str-service-icon-item span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    /* color: #333; */
}

.str-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.black-circle {
    background: #000;
}

.yellow-circle {
    background: #ffffff;
    color: #000;
}

.str-service-icon-item:hover .str-icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.str-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.str-services-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
}

.str-service-list {
    list-style: none;
    padding: 0;
}

.str-service-list li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.str-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
}

.str-services-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Why Work With Us */
.str-work-section {
    padding-top: 50px;
}

.str-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.str-work-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.str-work-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.red-bg {
    background: #990000;
    color: #fff;
}

.str-work-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.str-work-text h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 1.6px;
}

.str-work-text p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    opacity: 0.8;
    line-height: 1.5;
}

.str-work-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.str-work-card:hover {
    transform: translateX(10px);
}

/* Responsive Streaming */
@media (max-width: 1024px) {

    .str-benefits-row,
    .str-services-content,
    .str-work-grid {
        grid-template-columns: 1fr;
    }

    .str-services-icons {
        flex-wrap: wrap;
        gap: 40px;
    }

    .str-services-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .str-services-icons {
        justify-content: center;
    }

    .str-work-card {
        flex-direction: column;
        text-align: center;
    }

    .str-services-content {
        margin-left: 10px;
        margin-right: 10px;
    }

    .dm-service-hero__bg::after {
        background: linear-gradient(180deg,
                transparent 0%,
                #0a0a0a 100%);
    }
    .str-work-text h4 {
    font-size: 1.4rem;
    letter-spacing: 1.6px;
}

.str-work-text p {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.5;
}
.str-work-card
{
    padding: 12px;
}
}

/*ULTRA-WIDE SCREEN OPTIMIZATION (1921px+)*/
@media screen and (min-width: 1921px) {

    .dm-nav,
    .dm-hero__container,
    .dm-services__inner,
    .dm-about__container,
    .dm-awards__container,
    .dm-video2-container,
    .dm-diff__container,
    .dm-team__container,
    .dm-blog__container,
    .dm-cta__container,
    .dm-footer__container,
    .dm-contact-container,
    .dm-about-container,
    .dm-process__container,
    .experience-block__grid,
    .dm-work__container,
    .dm-testimonials__container {
        max-width: 1800px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Scaling up base font and headings for ultra-wide displays */
    :root {
        --font-size-base: 1.15rem;
    }

    .dm-hero__title {
        font-size: clamp(6rem, 12vw, 16rem) !important;
    }

    .dm-about__title,
    .dm-awards__title,
    .dm-team__title,
    .dm-blog__title,
    .dm-cta__title {
        font-size: clamp(4.5rem, 9vw, 11rem) !important;
    }
}

/* ================================================================
   FAQ SECTION
   ================================================================ */

.faq-section {
    background: #0a0a0a;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(145, 13, 23, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.faq-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Header ---- */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header__label {
    font-family: var(--font-body);
    font-size: 1.7rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.faq-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    color: #efece5;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.faq-header__accent {
    color: var(--accent);
}

.faq-header__sub {
    font-size: 1.5rem;
    color: rgba(255, 255, 255);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.1;
}

/* ---- Controls Row ---- */
.faq-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ---- Category Pills ---- */
.faq-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.faq-cat-btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.faq-cat-btn:hover {
    border-color: rgba(145, 13, 23, 0.5);
    color: #fff;
    background: rgba(145, 13, 23, 0.08);
}

.faq-cat-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 18px rgba(145, 13, 23, 0.35);
}

/* ---- Search Bar ---- */
.faq-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 18px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    min-width: 280px;
}

.faq-search:focus-within {
    border-color: rgba(145, 13, 23, 0.5);
    box-shadow: 0 0 0 3px rgba(145, 13, 23, 0.1);
}

.faq-search__icon {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-search__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.88rem;
}

.faq-search__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.faq-search__clear {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 2px 4px;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    display: none;
    flex-shrink: 0;
}

.faq-search__clear.is-visible {
    display: block;
}

.faq-search__clear:hover {
    color: var(--accent);
}

/* ---- No Results ---- */
.faq-no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.3);
}

.faq-no-results i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    color: rgba(145, 13, 23, 0.4);
}

.faq-no-results p {
    font-size: 0.95rem;
}

/* ---- Accordion List ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- FAQ Item ---- */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: opacity 0.25s ease;
}

.faq-item.is-hidden {
    display: none;
}

/* Trigger button */
.faq-item__trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 26px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    position: relative;
    transition: background 0.2s ease;
}

.faq-item__trigger:hover .faq-item__question {
    color: #fff;
}

.faq-item__question {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    flex: 1;
    line-height: 1.45;
    transition: color 0.25s ease;
}

/* Tags inline */
.faq-item__tags {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.faq-tag {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}

.faq-item.is-open .faq-tag {
    border-color: rgba(145, 13, 23, 0.4);
    color: rgba(145, 13, 23, 0.85);
}

/* Icon */
.faq-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease,
        color 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.is-open .faq-item__icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(145, 13, 23, 0.4);
}

/* Collapsible body */
.faq-item__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__content {
    padding: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item__content p {
    font-size: 1.45rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.5);
}

/* Image inside FAQ */
.faq-item__img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
}

/* Left accent bar when open */
.faq-item.is-open {
    border-bottom-color: rgba(145, 13, 23, 0.25);
}



.faq-item.is-open .faq-item__question {
    color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0 90px;
    }

    .faq-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .faq-search {
        width: 100%;
        min-width: unset;
    }

    .faq-item__tags {
        display: none;
    }

    .faq-item__question {
        font-size: 0.92rem;
    }

    .faq-header__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .faq-item__content p {
        font-size: .8rem;
    }
}

@media (max-width: 480px) {
    .faq-cat-btn {
        font-size: 0.7rem;
        padding: 7px 14px;
    }

    .faq-item__trigger {
        padding: 20px 0;
    }
}


/* TERMS & CONDITIONS SECTION  (.terms-conditions-context)*/

.terms-conditions-context {
    background: #0a0a0a;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow */
.terms-conditions-context::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(145, 13, 23, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Wrapper ── */
.tc-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Intro Block ── */
.tc-intro-block {
    border-left: 3px solid var(--accent);
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 0 16px 16px 0;
    margin-bottom: 80px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-intro-text {
    font-family: var(--font-body);
    font-size: 1.4rem;
    line-height: 1.85;
    color: #fff;
    margin-bottom: 18px;
}

.tc-intro-text:last-child {
    margin-bottom: 0;
}

/* ── Sections Grid ── */
.tc-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

/* ── Individual Card ── */
.tc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    /* Scroll reveal: start hidden */
    opacity: 0;
    transform: translateY(30px);
}

.tc-card.tc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left accent bar */
.tc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), rgba(145, 13, 23, 0));
    border-radius: 0 0 3px 0;
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tc-card:hover::before {
    height: 100%;
}

.tc-card:hover {
    border-color: rgba(145, 13, 23, 0.35);
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(145, 13, 23, 0.12);
}

/* ── Card Header ── */
.tc-card__header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-card__num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1;
    color: var(--accent);
    flex-shrink: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    user-select: none;
}

.tc-card:hover .tc-card__num {
    color: rgba(145, 13, 23, 0.6);
}

.tc-card__title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    padding-top: 6px;
    transition: color 0.3s ease;
}

.tc-card:hover .tc-card__title {
    color: #ffffff;
}

/* ── Card Body ── */
.tc-card__body p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.tc-card__body p:last-child {
    margin-bottom: 0;
}

.tc-card:hover .tc-card__body p {
    color: rgba(255, 255, 255, 0.62);
}

/* ── Email link ── */
.tc-email-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.tc-email-link:hover {
    color: var(--accent-dark);
    opacity: 0.85;
}

/* ── Card stagger animation delays ── */
.tc-card:nth-child(1) {
    transition-delay: 0s;
}

.tc-card:nth-child(2) {
    transition-delay: 0.05s;
}

.tc-card:nth-child(3) {
    transition-delay: 0.10s;
}

.tc-card:nth-child(4) {
    transition-delay: 0.15s;
}

.tc-card:nth-child(5) {
    transition-delay: 0.20s;
}

.tc-card:nth-child(6) {
    transition-delay: 0.25s;
}

.tc-card:nth-child(7) {
    transition-delay: 0.30s;
}

.tc-card:nth-child(8) {
    transition-delay: 0.35s;
}

.tc-card:nth-child(9) {
    transition-delay: 0.40s;
}

.tc-card:nth-child(10) {
    transition-delay: 0.45s;
}

.tc-card:nth-child(11) {
    transition-delay: 0.50s;
}

.tc-card:nth-child(12) {
    transition-delay: 0.55s;
}

.tc-card:nth-child(13) {
    transition-delay: 0.60s;
}

.tc-card:nth-child(14) {
    transition-delay: 0.65s;
}

.tc-card:nth-child(15) {
    transition-delay: 0.70s;
}

.tc-card:nth-child(16) {
    transition-delay: 0.75s;
}

.tc-card:nth-child(17) {
    transition-delay: 0.80s;
}

.tc-card:nth-child(18) {
    transition-delay: 0.85s;
}

.tc-card:nth-child(19) {
    transition-delay: 0.90s;
}

.tc-card:nth-child(20) {
    transition-delay: 0.95s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .tc-sections-grid {
        grid-template-columns: 1fr;
    }

    .tc-wrap {
        padding: 0 24px;
    }

    .tc-intro-block {
        padding: 24px 24px;
        margin-bottom: 50px;
    }

    .terms-conditions-context {
        padding: 70px 0 90px;
    }
}

@media (max-width: 540px) {
    .tc-card {
        padding: 28px 22px;
    }

    .tc-card__num {
        font-size: 2.4rem;
    }

    .tc-card__title {
        font-size: 0.76rem;
    }

    .tc-card__body p {
        font-size: 0.83rem;
    }
}


/* ── Privacy Policy section (reuses tc-card design) ── */
.privacy-policy-context,
.accessibility-statement-context {
    background: #0a0a0a;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.privacy-policy-context::before,
.accessibility-statement-context::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(145, 13, 23, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Bullet list inside tc-card ── */
.tc-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tc-list li {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.75;
    color: #fff;
    padding-left: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.tc-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
    top: 2px;
}

.tc-card:hover .tc-list li {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {

    .privacy-policy-context,
    .accessibility-statement-context {
        padding: 70px 0 90px;
    }
}

/* ── Plain Text Content Layout ── */
.tc-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tc-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tc-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.tc-section p {
    font-family: var(--font-body);
    font-size: 1.4rem;
    line-height: 1.8;
    color: #d4d4d4;
}

.tc-section .tc-list li {
    font-size: 1.35rem;
    color: #d4d4d4;
}

/* ── Payment Form Styles ── */
.dmg-contact-context {
    background-color: #050505;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dmg-contact-context::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(145, 13, 23, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dmg-payment-form-wrap {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.dmg-form-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.05em;
}

.dmg-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.dmg-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.dmg-form-col-100 {
    flex: 100%;
}

.dmg-form-label {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.dmg-form-label span.req {
    color: var(--accent);
    /* margin-left: 4px; */
    font-size: 26px;
    text-transform: none;
    font-weight: 400;
}

.dmg-form-sublabel {
    font-size: 1rem;
    color: #888;
    margin-top: 6px;
    font-family: var(--font-body);
}

.dmg-form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 6px;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
    outline: none;
}

.dmg-form-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.dmg-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Checkboxes */
.dmg-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dmg-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.dmg-checkbox-label:hover {
    color: #ffffff;
}

.dmg-checkbox-label input {
    display: none;
}

.dmg-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dmg-checkbox-label input:checked+.dmg-checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.dmg-checkbox-label input:checked+.dmg-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 10px;
}

.dmg-form-total-box {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(145, 13, 23, 0.1);
    border: 1px solid rgba(145, 13, 23, 0.3);
    border-radius: 10px;
    text-align: center;
}

.dmg-form-total-label {
    font-size: 1.2rem;
    color: #ccc;
    font-family: var(--font-body);
    margin-bottom: 8px;
}

.dmg-form-total-val {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #fff;
}

.dmg-form-submit {
    display: inline-block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    padding: 18px;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dmg-form-submit:hover {
    background: #a30e1a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dmg-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .dmg-payment-form-wrap {
        padding: 30px 20px;
    }
}

/* Theme Toggle Button Styling */
.dm-theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nav-border);
    color: var(--nav-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    margin-right: 10px;
}

.dm-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--nav-text-hover);
    transform: scale(1.05);
}

.dm-theme-toggle i {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.dm-theme-toggle .fa-sun {
    opacity: 0;
    transform: translateY(25px);
}

[data-theme="light"] .dm-theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-25px);
}

[data-theme="light"] .dm-theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="light"] .dm-theme-toggle {
    background: rgba(0, 0, 0, 0.05);
}

/* LIGHT THEME IMPROVED */
[data-theme="light"] .dm-hero__line--outline .dm-hero__line-inner,
[data-theme="light"] .dm-text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #bfbfb8 !important;
    letter-spacing: 1.5px;
    font-weight: 500;
}

[data-theme="light"] .dm-hero__service i,
[data-theme="light"] .dm-hero__service {
    color: #2e2e2d;
}

[data-theme="light"] .dm-hero__tagline {
    color: #2e2e2d;
}

[data-theme="light"] .dm-hero__service:hover i {
    color: #910D17;
    transform: scale(1.25) translateY(-2px);
}

/* Active / highlighted card */
[data-theme="light"] .dm-hero__service--active {
    background: rgba(145, 13, 23, 0.25);
    color: #fff;
    border-color: rgba(145, 13, 23, 0.4);
}

[data-theme="light"] .dm-hero__stat-card {
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dm-hero__stat-number,
.dm-hero__stat-text,
[data-theme="light"] .dm-hero__stat-plus {
    color: #2e2e2d;
}

[data-theme="light"] .dm-hero__footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dm-services__main-title {
    color: #EFECE5 !important;
}


[data-theme="light"] .dm-service-box {
    background-color: #fff;
}

[data-theme="light"] .dm-service-box:hover {
    border: none;
}

[data-theme="light"] .dm-about__title,
[data-theme="light"] .dm-about__cat-title,
[data-theme="light"] .dm-about__meta-text,
[data-theme="light"] .dm-about__text,
[data-theme="light"] .dm-about__text strong,
[data-theme="light"] .dm-awards__meta-text,
[data-theme="light"] .dm-awards__desc strong,
[data-theme="light"] .dm-awards__stat-num,
[data-theme="light"] .dm-awards__stat-label,
[data-theme="light"] .dm-awards__card-title,
[data-theme="light"] .dm-awards__year-text,
[data-theme="light"] .dm-work__meta-text,
[data-theme="light"] .dm-process__title,
[data-theme="light"] .dm-process__number,
[data-theme="light"] .dm-process__step-title,
[data-theme="light"] .dm-diff__desc,
[data-theme="light"] .dm-diff__item,
[data-theme="light"] .dm-platforms__title,
[data-theme="light"] .dm-blog__title,
[data-theme="light"] .dm-blog__meta-text,
[data-theme="light"] .dm-service-box__title,
[data-theme="light"] .dm-blog__excerpt,
[data-theme="light"] .dm-blog__author-name,
[data-theme="light"] .dm-about-team__name,
[data-theme="light"] .dm-about-main-title,
[data-theme="light"] .dm-about-desc,
[data-theme="light"] .dm-about-sub-title,
[data-theme="light"] .dm-about-sep-title,
[data-theme="light"] .dm-about-sep-text,
[data-theme="light"] .dm-value-title,
[data-theme="light"] .dm-team__name,
[data-theme="light"] .dm-team__experience,
[data-theme="light"] .dm-footer__link-title,
[data-theme="light"] .dm-contact-info-title,
[data-theme="light"] .dm-service-intro__title,
[data-theme="light"] .dm-slide-main-title,
[data-theme="light"] .dm-sliding-title,
[data-theme="light"] .event-service-title,
[data-theme="light"] .event-service-name,
[data-theme="light"] .seo-packages-title,
[data-theme="light"] .smm-main-title,
[data-theme="light"] .smm-sub-title,
[data-theme="light"] .tra-section-title,
[data-theme="light"] .str-services-text p,
[data-theme="light"] .dm-form-group label,
[data-theme="light"] .faq-header__title,
[data-theme="light"] .faq-search__input,
[data-theme="light"] .faq-item__question,
[data-theme="light"] .dmg-form-title,
[data-theme="light"] .dmg-checkbox-label,
[data-theme="light"] .dm-pricing-trust__item,
[data-theme="light"] .dm-pricing-card__price,
[data-theme="light"] .dm-pricing-table th:first-child,
[data-theme="light"] .dm-hero__stat-text,
[data-theme="light"] .blog-title,
[data-theme="light"] .blog-author,
[data-theme="light"] .blog-content h2,
[data-theme="light"] .blog-content li,
[data-theme="light"] .blog-source,
[data-theme="light"] .dm-diff__meta-text,
[data-theme="light"] .dm-blog__all-link,
[data-theme='light'] .dm-about-meta-text,
[data-theme='light'] .grid-serve-services,
[data-theme='light'] .author-mini-name,
[data-theme='light'] .relative-post-title {
    color: #121111 !important;
}

[data-theme="light"] .dm-about-sep-text--small,
[data-theme="light"] .dm-value-text,
[data-theme="light"] .dm-team__title,
[data-theme="light"] .dm-team__header-desc,
[data-theme="light"] .dm-team__bio,
[data-theme="light"] .dm-contact-info-text p,
[data-theme="light"] .dm-service-intro__desc,
[data-theme="light"] .dm-feature-title,
[data-theme="light"] .dm-slide-main-desc,
[data-theme="light"] .dm-sliding-text,
[data-theme="light"] .dm-sliding-text--small,
[data-theme="light"] .seo-main-title,
[data-theme="light"] .seo-intro-text,
[data-theme="light"] .smm-header-desc,
[data-theme="light"] .smm-checklist li,
[data-theme="light"] .tra-checklist li,
[data-theme="light"] .tra-icon-card span,
[data-theme="light"] .str-service-list li,
[data-theme="light"] .faq-header__sub,
[data-theme="light"] .faq-no-results p,
[data-theme="light"] .fa-magnifying-glass:before,
.fa-search:before,
[data-theme="light"] .faq-item__content p,
[data-theme="light"] .tc-intro-text,
[data-theme="light"] .tc-section p,
[data-theme="light"] .tc-section .tc-list li,
[data-theme="light"] .dmg-form-label,
[data-theme="light"] .dmg-form-total-label,
[data-theme="light"] .dmg-form-total-val,
[data-theme="light"] .dm-pricing-card__tagline,
[data-theme="light"] .dm-pricing-card__desc,
[data-theme="light"] .dm-pricing-card__best,
[data-theme="light"] .dm-pricing-table td,
[data-theme="light"] .dm-pricing-card__best-item,
[data-theme="light"] .blog-meta,
[data-theme="light"] .blog-meta-divider,
[data-theme="light"] .blog-content p,
[data-theme="light"] .blog-content li::before,
[data-theme="light"] .blog-source a,
[data-theme="light"] .dm-testimonials__meta-text,
[data-theme="light"] .author-mini-desc,
[data-theme="light"] .relative-post-desc {
    color: #2e2e2d !important;
}

[data-theme="light"] .dm-about,
[data-theme="light"] .dm-about-story,
[data-theme="light"] .dm-team,
[data-theme="light"] .dm-contact-main,
[data-theme="light"] .video-service-content,
[data-theme="light"] .event-service-section,
[data-theme="light"] .event-slides-section,
[data-theme="light"] .seo-section-page,
[data-theme="light"] .seo-pricing-section,
[data-theme="light"] .smm-section,
[data-theme="light"] .dm-traditional-media,
[data-theme="light"] .faq-section,
[data-theme="light"] .accessibility-statement-context,
[data-theme="light"] .dmg-contact-context,
[data-theme="light"] .privacy-policy-context,
[data-theme="light"] .terms-conditions-context {
    background: #fff !important;
}

[data-theme="light"] .dm-text-glow,
[data-theme="light"] .dm-blog__date,
[data-theme="light"] .sidebar-title {
    color: #910D17;
    text-shadow: none !important;
}

[data-theme="light"] .dm-about-team__role {
    color: #910D17 !important;
}

[data-theme="light"] .dm-feature-icon {
    color: #910D17 !important;
    opacity: .7;
}

[data-theme="light"] .dm-feature-card:hover .dm-feature-icon {
    opacity: 1;
}

[data-theme="light"] .dm-about__cat-item:hover {
    color: #000 !important;
}

[data-theme="light"] .dm-service-box:hover,
[data-theme="light"] .card-center span {
    color: #fff !important;
}

[data-theme="light"] .card-center:hover span {
    color: #000 !important;
}

[data-theme="light"] .dm-about__cat-icon {
    background-color: #000;
    color: #fff;
}

[data-theme="light"] .dm-about__cat-icon:hover {
    border: none !important;
}

[data-theme="light"] .dm-about__cat-item {
    border-bottom: 1px solid #525250 !important;
}

[data-theme="light"] .dm-awards,
[data-theme="light"] .dm-work,
[data-theme="light"] .dm-process,
[data-theme="light"] .dm-video2-section,
[data-theme="light"] .dm-diff,
[data-theme="light"] .dm-blog,
[data-theme="light"] .dm-service-grid,
[data-theme="light"] .video-services-slide {
    background-color: #fff !important;
}

[data-theme="light"] .dm-awards__card,
[data-theme="light"] .dm-service-box,
[data-theme="light"] .dm-contact-info-card,
[data-theme="light"] .dm-pricing-toggle,
[data-theme="light"] .sidebar-form input, .sidebar-form textarea {
    border: 1px solid #d6d1d1 !important;
}

[data-theme="light"] .dm-platform-tag {
    color: #fff !important;
    background-color: #2e2e2d !important;
}

[data-theme="light"] .dm-service-box:hover .dm-service-box__title {
    color: #fff !important;
}

[data-theme="light"] .dm-about__btn {
    --btn-fx-blob: var(--accent) !important;
    --btn-fx-text-on: #fff;
}

[data-theme="light"] .dm-about__btn .btn-fx__blob,
[data-theme="light"] .dm-about__btn .btn-fx__blob *,
[data-theme="light"] .dm-about__btn,
[data-theme="light"] .social-icon-btn {
    color: #000 !important;
    border: 1px solid #000 !important;
}

[data-theme="light"] .dm-about__cat-item:hover .dm-about__cat-tags {
    color: #910d17 !important;
}

[data-theme="light"] .dm-diff__btn {
    background-color: #910D17 !important;
}

[data-theme="light"] .dm-blog__content {
    background-color: #f5f5f5 !important;
}

[data-theme="light"] .dm-blog__card-title {
    color: #121111 !important;
}

[data-theme="light"] .dm-blog__content:hover .dm-blog__card-title {
    color: #910D17 !important;
}

[data-theme="light"] .dm-blog__read-more {
    color: #910D17 !important;
}

[data-theme="light"] .dm-blog__card,
[data-theme="light"] .dm-pricing-card {

    border: 1px solid #d6d1d1 !important;
}

[data-theme="light"] .dm-pricing-card__btn {
    border: 1px solid #d6d1d1 !important;
    color: #000;
}

[data-theme="light"] .dm-pricing-card__btn:hover {
    background-color: #910D17;
    color: #fff;
}

[data-theme="light"] .dm-platforms,
[data-theme="light"] .dm-footer,
[data-theme="light"] .dm-footer__bottom,
[data-theme="light"] .blog-source {
    border-top: 1px solid #bfbfbd !important;
}

[data-theme="light"] .dm-search__box.is-open {
    background-color: #fff !important;
}

[data-theme="light"] .dm-search__input {
    color: #000 !important;
}

[data-theme="light"] .dm-search__input::placeholder,
[data-theme="light"] .faq-search__input::placeholder,
[data-theme="light"] .dmg-form-input::placeholder,
[data-theme="light"] .sidebar-form input, .sidebar-form textarea {
    color: #555 !important;
}

.dm-mobile-theme-toggle {
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0;
    margin-top: 0 !important;
}


/* MOBILE LIGHT THEME FIXES */
[data-theme='light'] .dm-mobile-header {
    background-color: #fff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme='light'] .dm-mobile-burger {
    color: #000 !important;
}

[data-theme='light'] .dm-mobile-menu {
    background-color: #fff !important;
}

[data-theme='light'] .dm-mobile-menu__header,
[data-theme='light'] .dm-pricing-table th,
[data-theme='light'] .dm-pricing-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme='light'] .dm-mobile-close {
    color: #000 !important;
}

[data-theme='light'] .dm-mobile-search {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme='light'] .dm-mobile-search__input {
    color: #000 !important;
}

[data-theme='light'] .dm-mobile-search__btn {
    color: rgba(0, 0, 0, 0.4) !important;
}

[data-theme='light'] .dm-mobile-nav__item,
[data-theme='light'] .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

[data-theme='light'] .dm-mobile-nav__link,
[data-theme='light'] .dm-mobile-nav__trigger {
    color: #000 !important;
}

[data-theme='light'] .dm-mobile-nav__sub-trigger {
    color: rgba(0, 0, 0, 0.7) !important;
}

[data-theme='light'] .dm-mobile-nav__sub-dropdown li {
    color: rgba(0, 0, 0, 0.5) !important;
}

[data-theme='light'] .dm-mobile-nav__sub-dropdown li a {
    color: rgba(0, 0, 0, 0.6) !important;
}

[data-theme='light'] .dm-mobile-nav__sub-dropdown li a:hover {
    color: var(--accent) !important;
}

[data-theme="light"] .dm-about-sep-card,
[data-theme="light"] .dm-value-content,
[data-theme="light"] .dm-team__box,
[data-theme="light"] .dm-feature-card,
[data-theme="light"] .dm-video-slider-btn,
[data-theme="light"] .event-service-card,
[data-theme="light"] .dm-form-group input,
.dm-form-group select,
.dm-form-group textarea,
[data-theme="light"] .dmg-payment-form-wrap {
    border: 1px solid #bdbdbd !important;
}

[data-theme="light"] .dm-video-slider-btn {
    color: #000;
}

[data-theme="light"] .dm-team__experience::before,
[data-theme="light"] .dm-video-dot {
    background: #2e2e2d !important;
}

[data-theme="light"] .dm-video-dot.active {
    background: #910D17 !important;
}

[data-theme="light"] .seo-intro-img {
    filter: none;
}

[data-theme="light"] .sidebar-card {
    border: 1px solid #d6d1d1 !important;
    box-shadow: none;
}

[data-theme="light"] .seo-feature-box:hover .seo-feature-box-title,
[data-theme="light"] .seo-feature-box:hover .seo-feature-box-desc,
[data-theme="light"] .smm-box-content:hover h4,
[data-theme="light"] .smm-box-content:hover p,
[data-theme="light"] .tra-box-content:hover h4,
[data-theme="light"] .tra-box-content:hover p,
[data-theme="light"] .dm-form-group input,
.dm-form-group select option,
.dm-form-group textarea {
    color: #000 !important;
}

[data-theme="light"] .seo-feature-icon-circle:hover+.seo-feature-box,
[data-theme="light"] .smm-icon-circle:hover+.smm-box-content,
[data-theme="light"] .tra-icon-circle:hover+.tra-box-content {
    background: #000 !important;
}

[data-theme="light"] .dm-footer__legal a {
    color: inherit !important;
}

[data-theme="light"] .smm-process-box-item:has(.smm-icon-circle:hover) .smm-box-content {
    background: #000 !important;
}

[data-theme="light"] .dm-contact-submit:hover,
[data-theme="light"] .dmg-form-input,
[data-theme="light"] .social-link,
[data-theme="light"] .dm-pricing-table-wrapper {
    color: #000 !important;
    border: 1px solid #bdbdbd !important;
}

[data-theme="light"] .faq-cat-btn,
[data-theme="light"] .faq-search,
[data-theme="light"] .faq-tag,
[data-theme="light"] .faq-item__icon,
[data-theme="light"] .dmg-checkbox-custom {
    border: 1px solid #bdbdbd !important;
    color: #000;
}

[data-theme="light"] .faq-cat-btn.active {
    color: #fff;
}

[data-theme="light"] .tc-intro-block {
    border-top: 1px solid #bdbdbd;
    border-right: 1px solid #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
}

[data-theme="light"] .dm-nav__link:hover {
    box-shadow: none !important;
    background-color: #910D17 !important;
    color: #fff !important;
}

[data-theme="light"] .dm-nav__item--has-mega:hover .dm-nav__link {
    background-color: #910D17 !important;
    color: #fff !important;
}

[data-theme="light"] .dm-nav__link:hover i {
    color: #fff !important;
}

[data-theme="light"] .dm-awards__card::before {
    background-color: #d9d8d8 !important;
}

[data-theme="light"] .dm-awards__card:hover .dm-awards__card-sub {
    color: #910D17 !important;
}

[data-theme="light"] .dm-pricing-trust {
    border-bottom: 1px solid #bdbdbd !important;
    border-top: 1px solid #bdbdbd !important;
}

[data-theme="light"] .dm-toggle-label {
    color: #000 !important;
}

[data-theme="light"] .dm-slider::before {
    background-color: #888 !important;
    border: 1px solid #888;
}

[data-theme="light"] .dm-toggle-label.active {
    color: #910D17 !important;
}

/* Light mode - toggle OFF state */
[data-theme="light"] .dm-slider {
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
}

/* Light mode - toggle circle */
[data-theme="light"] .dm-slider::before {
    background: #888;
}

/* When toggle is ON */
[data-theme="light"] .dm-switch input:checked+.dm-slider {
    background: var(--accent);
    border-color: var(--accent);
}

[data-theme="light"] .dm-switch input:checked+.dm-slider::before {
    background: #fff;
}

/* PRICING SECTION */

.dm-pricing-trust {
    margin: 40px 0 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-pricing-trust__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.dm-pricing-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    font-weight: 500;
}

.dm-pricing-trust__item i {
    color: var(--accent);
    font-size: 0.8rem;
}

.dm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.dm-pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.dm-pricing-card--popular {
    border-color: var(--accent);
    background: rgba(145, 13, 23, 0.05);
    transform: scale(1.05);
    z-index: 2;
}

.dm-pricing-card--popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.dm-pricing-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.dm-pricing-card__tier {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dm-pricing-card__price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.dm-pricing-card__price .dm-currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 5px;
    opacity: 0.6;
}

.dm-pricing-card__price .dm-period {
    font-size: 1rem;
    font-family: inherit;
    opacity: 0.4;
    margin-left: 10px;
    align-self: flex-end;
    margin-bottom: 10px;
}

.dm-pricing-card__tagline {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.dm-pricing-card__body {
    flex-grow: 1;
}

.dm-pricing-card__desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.dm-pricing-card__best {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 10px;
    display: block;
}

.dm-pricing-card__best strong {
    color: var(--accent);
}

.dm-pricing-card__best-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dm-pricing-card__best-item {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.dm-pricing-card__best-item:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.dm-pricing-card__best-item i {
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Pricing Toggle */
.dm-pricing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.dm-pricing-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dm-toggle-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
    cursor: pointer;
}

.dm-toggle-label.active {
    color: white;
}

.dm-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.dm-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dm-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.dm-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.dm-slider {
    background-color: var(--accent);
}

input:checked+.dm-slider:before {
    transform: translateX(22px);
}

/* Flip Card Styles */
.dm-pricing-card {
    perspective: 1500px;
    background: transparent;
    border: none;
    padding: 0;
    /* min-height: 720px; */
}


.dm-pricing-card__inner {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}


.dm-pricing-card.is-annually .dm-pricing-card__inner {
    transform: rotateY(180deg);
}

.dm-pricing-card__front,
.dm-pricing-card__back {
    grid-area: 1 / 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dm-pricing-card__back {
    transform: rotateY(180deg);
}

.dm-pricing-card--popular .dm-pricing-card__front,
.dm-pricing-card--popular .dm-pricing-card__back {
    border-color: var(--accent);
    background: rgba(145, 13, 23, 0.05);
}


.dm-pricing-card__footer {
    margin-top: 40px;
}

.dm-pricing-card__btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dm-pricing-card--popular .dm-pricing-card__btn {
    background: var(--accent);
    border-color: var(--accent);
}

.dm-pricing-card__btn:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Table */
.dm-pricing-table-wrapper {
    position: relative;
    overflow-x: auto;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
}

.dm-pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.dm-pricing-table th {
    text-align: left;
    padding: 20px;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--accent);
    letter-spacing: 0.1em;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-pricing-table td {
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 1.4rem;
}

.dm-pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: white;
}

.dm-pricing-table th:first-child,
.dm-pricing-table td:first-child {
    font-weight: 600;
    color: white;
    width: 35%;
}

.dm-pricing-table td:not(:first-child) {
    text-align: center;
    width: 21.66%;
}

.dm-pricing-table .check {
    color: #4CAF50;
    font-size: 1.1rem;
}

.dm-pricing-table .dash {
    opacity: 0.2;
}

.dm-pricing-table .warning {
    color: #FFC107;
}

@media (max-width: 1100px) {
    .dm-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 100px;
    }

    .dm-pricing-card--popular {
        transform: none;
    }

    .dm-pricing-card--popular:hover {
        transform: translateY(-10px);
    }
}

.dm-form-group select {
    color: #fff !important;
}

.dm-form-group select option {
    color: #fff !important;
}

[data-theme="light"] .dm-form-group select,
[data-theme="light"] .dm-form-group select option {
    color: #000 !important;
    background: #fff !important;
}

.dm-slider {
    display: flex;
    align-items: center;
}

.dm-slider::before {
    top: 50%;
    transform: translateY(-50%);
}

.dm-switch input:checked+.dm-slider::before {
    transform: translate(20px, -50%);
}

/* Email Marketing Loop Section */
.email-mar-section-wrapper {
    padding: 120px 0;
    background: transparent;
}

.email-mar-section-container {
    background: #000;
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.email-mar-section-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-mar-section-item {
    padding: 35px;
    border-radius: 20px;
    border-left: 4px solid transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    opacity: 0.35;
    background: transparent;
}

.email-mar-section-item.active {
    opacity: 1;
    border-left-color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(10px);
}

.email-mar-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.email-mar-section-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.email-mar-section-right {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.email-mar-section-image-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.email-mar-section-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.email-mar-section-img.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {
    .email-mar-section-container {
        grid-template-columns: 1fr;
        padding: 50px;
        gap: 50px;
    }

    .email-mar-section-right {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .email-mar-section-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 50px;
    }

    .email-mar-section-item {
        padding: 20px;
    }

    .email-mar-section-title {
        font-size: 1.4rem;
    }

    .dm-booking-modal__submit {
        padding: 12px !important;
    }

    .submit-icon {
        font-size: 18px !important;
    }
}

/* Booking Modal Styles */


.dm-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.dm-booking-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.dm-booking-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dm-booking-modal__container {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: var(--bm-glass);
    border: 1px solid var(--bm-border);
    border-radius: 28px;
    padding: 50px 40px;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.dm-booking-modal__container::-webkit-scrollbar {
    display: none;
}

.dm-booking-modal.is-open .dm-booking-modal__container {
    transform: translateY(0) scale(1);
}

.dm-booking-modal__close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bm-border);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10;
}

.dm-booking-modal__close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.dm-booking-modal__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: #fff;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 0.9;
}

.dm-booking-modal__form {
    display: grid;
    gap: 20px;
}

.dm-booking-modal__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 550px) {
    .dm-booking-modal__form-row {
        grid-template-columns: 1fr;
    }

    .dm-booking-modal__container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .dm-booking-modal__title {
        margin-bottom: 25px;
    }
}

.dm-booking-modal__input,
.dm-booking-modal__select,
.dm-booking-modal__textarea {
    width: 100%;
    background: var(--bm-input-bg);
    border: 1px solid var(--bm-border);
    border-radius: 14px;
    padding: 16px 22px;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.dm-booking-modal__input::placeholder,
.dm-booking-modal__textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.dm-booking-modal__input:focus,
.dm-booking-modal__select:focus,
.dm-booking-modal__textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(145, 13, 23, 0.15);
}

.dm-booking-modal__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.dm-booking-modal__select option {
    background: #111;
    color: #fff;
}

.dm-booking-modal__textarea {
    resize: none;
    min-height: 120px;
}

.dm-booking-modal__submit {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dm-booking-modal__submit span {
    position: relative;
    z-index: 2;
}

.dm-booking-modal__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.dm-booking-modal__submit:hover::before {
    left: 100%;
}

.dm-booking-modal__submit:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(145, 13, 23, 0.4);
}

/* Prevent scrolling when modal is open */
body.modal-open {
    overflow: hidden !important;
}



.compare-features-text {
    display: block;
    margin-top: 1.1rem;
    text-align: center;
    color: #910D17;
    font-size: 1.1rem;
    font-weight: 600;
}




/* Author Detail Page Styles */
.author-section {
    padding: calc(var(--nav-height) + 80px) 24px 100px;
    background: var(--bg-color);
    min-height: 100vh;
    color: var(--text-color);
}

.author-container {
    max-width: 1200px;
    margin: 0 auto;
}

.author-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.author-image-wrapper {
    position: sticky;
    top: calc(var(--nav-height) + 40px);
}

.author-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--nav-border);
    background: var(--card-bg);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-sidebar-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--nav-border);
}

.author-sidebar-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.author-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.author-social-link:hover {
    color: var(--accent);
}

.author-social-link i {
    font-size: 1.4rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 15px;
    color: var(--text-color);
}

.author-job-title {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.author-bio-block {
    margin-bottom: 60px;
}

.author-bio-block h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-bio-block h3::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--nav-border);
}

.author-bio-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 25px;
}

.author-expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    margin: 30px 0;
}

.author-expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
}

.author-expertise-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

.author-expertise-footer {
    padding: 25px;
    background: rgba(145, 13, 23, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    margin-top: 40px;
}

.author-expertise-footer p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.1rem;
}

@media screen and (max-width: 1024px) {
    .author-grid {
        grid-template-columns: 320px 1fr;
        gap: 50px;
    }

    .author-name {
        font-size: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .author-section {
        padding-top: 120px;
    }

    .author-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .author-image-wrapper {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .author-name {
        font-size: 3.5rem;
        text-align: center;
    }

    .author-job-title {
        text-align: center;
        font-size: 1.2rem;
    }

    .author-expertise-list {
        grid-template-columns: 1fr;
    }
}

/* -- Testimonials Marquee -- */
.dm-testimonials {
    padding: 100px 0;
    background: var(--bg-color);

}

.dm-testimonials__container {
    margin: 0 auto;
    padding: 0 4%;

}



.dm-testimonials__header {
    margin-bottom: 60px;
    text-align: center;
}

.dm-testimonials__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.dm-testimonials__dash {
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.dm-testimonials__meta-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.dm-testimonials__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--text-color);
}

.dm-testimonials__marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.dm-testimonials__track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: dmMarquee 40s linear infinite;
}

.dm-testimonials__track:hover {
    animation-play-state: paused;
}

@keyframes dmMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.dm-testimonial-card {
    width: 400px;
    min-height: 320px;
    padding: 40px 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.dm-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.04),
            transparent);
    pointer-events: none;
}

.dm-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-bg-1 {
    background: #151515;
}

.card-bg-2 {
    background: #1a1a2e;
}

.card-bg-3 {
    background: #1e1b1b;
}

.card-bg-4 {
    background: #1b221b;
}

.card-bg-5 {
    background: #251e15;
}

.dm-testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dm-testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    font-style: italic;
    margin-bottom: 23px;
}

.dm-testimonial-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dm-testimonial-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 20px rgba(145, 13, 23, 0.35);
}

.dm-testimonial-user {
    display: flex;
    flex-direction: column;
}

.dm-testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.dm-testimonial-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .dm-testimonial-card {
        width: 320px;
        padding: 20px 15px;
    }

    .dm-testimonials__track {
        animation-duration: 25s;
    }

    .dm-testimonial-quote {
        font-size: 1.2rem;
    }

    .dm-testimonial-name {
        font-size: 14px;
    }

    .dm-testimonial-role {
        font-size: 12px;
    }

    .dm-service-hero__subtitle {
        font-size: 1rem;
    }

    .grid-serve-services {
        font-size: 1.2rem;
    }
    .tc-section p{
        font-size: 1.2rem;
    }
    .dm-pricing-card__desc{
        font-size: 1.2rem;
    }
    .dm-pricing-table td{
        font-size: 1.2rem;
    }
}

/* ALL BLOGS PAGE */
.all-blogs-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.dm-all-blogs__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dm-all-blogs__header {
    margin-bottom: 60px;
    text-align: center;
}

.dm-all-blogs__main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.dm-all-blogs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dm-all-blogs__card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}

.dm-all-blogs__card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.dm-all-blogs__card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.dm-all-blogs__img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.dm-all-blogs__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dm-all-blogs__card:hover .dm-all-blogs__img {
    transform: scale(1.1);
}

.dm-all-blogs__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
}

.dm-all-blogs__meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.dm-all-blogs__brand {
    color: var(--accent);
}

.dm-all-blogs__date {
    color: rgba(255, 255, 255, 0.4);
}

.dm-all-blogs__title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dm-all-blogs__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 30px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dm-all-blogs__meta-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-all-blogs__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-all-blogs__author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.dm-all-blogs__author-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.dm-all-blogs__read-more {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.dm-all-blogs__card:hover .dm-all-blogs__read-more {
    gap: 12px;
}

/* Light Theme Support */
[data-theme="light"] .dm-all-blogs__main-title {
    color: #000;
}

[data-theme="light"] .dm-all-blogs__card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dm-all-blogs__title {
    color: #000;
}

[data-theme="light"] .dm-all-blogs__desc {
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .dm-all-blogs__author-name {
    color: #000;
}

[data-theme="light"] .dm-all-blogs__read-more {
    color: #000;
}

[data-theme="light"] .dm-all-blogs__meta-bottom {
    border-top-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dm-all-blogs__card:hover {
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 1200px) {
    .dm-all-blogs__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .dm-all-blogs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dm-all-blogs__main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .dm-all-blogs__grid {
        grid-template-columns: 1fr;
    }

    .dm-all-blogs__main-title {
        font-size: 2.2rem;
    }

    .all-blogs-section {
        padding: 60px 0;
    }
}

/*PREMIUM DAY/NIGHT TOGGLE STYLES */
.dm-theme-toggle {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    outline: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 100px !important;
    width: 72px !important;
    height: 36px !important;
    min-width: 72px !important;
    min-height: 36px !important;
    max-width: 72px !important;
    max-height: 36px !important;
    box-shadow: none !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0 !important;
}

.dm-theme-toggle:hover {
    transform: scale(1.06) !important;
}

.dm-theme-toggle:active {
    transform: scale(0.95) !important;
}

.dm-theme-toggle__track {
    position: relative !important;
    width: 60px !important;
    height: 27px !important;
    border-radius: 100px !important;
    background: linear-gradient(135deg, #0b0f19 0%, #111827 100%) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 1px rgba(255, 255, 255, 0.05) !important;
    overflow: hidden !important;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
}

html[data-theme="light"] .dm-theme-toggle__track {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(255, 255, 255, 0.2) !important;
}

/* Knob Styling */
.dm-theme-toggle__knob {
    position: absolute !important;
    top: 4px !important;
    left: 4px !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s !important;
    z-index: 10 !important;
    overflow: hidden !important;
}

html[data-theme="light"] .dm-theme-toggle__knob {
    transform: translateX(36px) !important;
    background: #fffdf0 !important;
    box-shadow: 0 2px 5px rgba(14, 165, 233, 0.3), 0 0 8px rgba(253, 224, 71, 0.4) !important;
}

/* Icons Inside Knob */
.dm-theme-toggle__icon {
    position: absolute !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s !important;
}

.dm-theme-toggle__icon--sun {
    color: #eab308 !important;
    opacity: 0 !important;
    transform: rotate(-90deg) scale(0) !important;
}

html[data-theme="light"] .dm-theme-toggle__icon--sun {
    opacity: 1 !important;
    transform: rotate(0) scale(1) !important;
}

.dm-theme-toggle__icon--moon {
    color: #6366f1 !important;
    opacity: 1 !important;
    transform: rotate(0) scale(1) !important;
}

html[data-theme="light"] .dm-theme-toggle__icon--moon {
    opacity: 0 !important;
    transform: rotate(90deg) scale(0) !important;
}

/* Stars Background (Dark Mode) */
.dm-theme-toggle__stars {
    position: absolute !important;
    inset: 0 !important;
    opacity: 1 !important;
    transition: opacity 0.5s !important;
    pointer-events: none !important;
}

html[data-theme="light"] .dm-theme-toggle__stars {
    opacity: 0 !important;
}

.dm-theme-toggle__star {
    position: absolute !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    animation: dmTwinkle 2s infinite ease-in-out !important;
}

.dm-theme-toggle__star:nth-child(1) {
    top: 8px !important;
    right: 20px !important;
    width: 2px !important;
    height: 2px !important;
    animation-delay: 0s !important;
}

.dm-theme-toggle__star:nth-child(2) {
    top: 22px !important;
    right: 10px !important;
    width: 3px !important;
    height: 3px !important;
    animation-delay: 0.5s !important;
}

.dm-theme-toggle__star:nth-child(3) {
    top: 14px !important;
    right: 32px !important;
    width: 1.5px !important;
    height: 1.5px !important;
    animation-delay: 1s !important;
}

@keyframes dmTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Clouds Background (Light Mode) */
.dm-theme-toggle__clouds {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.5s !important;
    pointer-events: none !important;
}

html[data-theme="light"] .dm-theme-toggle__clouds {
    opacity: 1 !important;
}

.dm-theme-toggle__cloud {
    position: absolute !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border-radius: 50% !important;
    transition: transform 0.5s !important;
}

.dm-theme-toggle__cloud:nth-child(1) {
    bottom: 3px !important;
    left: 8px !important;
    width: 16px !important;
    height: 9px !important;
    border-radius: 100px !important;
    background: #ffffff !important;
    animation: dmCloudDrift 4s infinite ease-in-out alternate !important;
}

.dm-theme-toggle__cloud:nth-child(2) {
    bottom: 8px !important;
    left: 22px !important;
    width: 12px !important;
    height: 7px !important;
    border-radius: 100px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    animation: dmCloudDrift 6s infinite ease-in-out alternate-reverse !important;
}

@keyframes dmCloudDrift {
    0% { transform: translateX(0); }
    100% { transform: translateX(4px); }
}




iframe[src*="acsb"],
[id*="acsb"],
[class*="acsb"] {
    z-index: 2147483647 !important;
}