/*----------------------------------------*/
/*----- TABLE OF CONTENTS -----*/
/*----------------------------------------*/
/*
1  Google Fonts
2  General Styles
3  Layout / Color classes
4  Button
5  Header
6  Responsive header
7  Footer
8  Elements
9  Forms
10 Blog
11 Misc
12 Common
*/
/*----------------------------------------*/
/*----- 1 Google Fonts  -----*/
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
/*----------------------------------------*/
/*----- 2 General Styles -----*/
/*----------------------------------------*/
:root {
--dtr-font-family-base: "Inter Tight", Arial, Helvetica, sans-serif;
--dtr-font-family-heading: "Inter Tight", Arial, Helvetica, sans-serif;

/* Enhanced Theme Colors - Sleek Brown Theme (Default) */
--dtr-primary-color: #8B4513;
--dtr-primary-color-light: #A0522D;
--dtr-primary-color-dark: #654321;
--dtr-accent-color: #CD853F;

/*base colors - sleek dark theme*/
--dtr-base-color-primary: #000000;
--dtr-base-color-secondary: #0a0a0a;
--dtr-base-color-tertiary: #1a1a1a;
--dtr-base-color-quaternary: #ffffff;
--light: #ffffff;

/*background colors - sleek dark theme*/
--dtr-bg-color-section: #0a0a0a;
--dtr-bg-color-section-contrast: #111111;

/*text colors - sleek dark theme*/
--dtr-text-color-one: rgba(255, 255, 255, 0.9);
--dtr-text-color-two: #ffffff;
--dtr-text-color-three: #a0a0a0;
--dtr-text-color-four: #0a0a0a;
--dtr-text-on-base-primary: var(--dtr-text-color-one);
--dtr-text-on-base-secondary: var(--dtr-text-color-one);
--dtr-text-on-base-tertiary: var(--dtr-text-color-four);
--dtr-text-on-base-quaternary: var(--dtr-text-color-four);

/*heading - dark theme*/
--dtr-text-color-heading: var(--dtr-text-color-two);
--dtr-text-color-heading-link: var(--dtr-text-color-two);

/*link - dark theme*/
--dtr-link-color: var(--dtr-text-color-three);
--dtr-link-hover-color: var(--dtr-text-color-two);

/*border - sleek dark theme*/
--dtr-border-color-main: rgba(139, 69, 19, 0.15);

/*input - dark theme*/
--dtr-input-bg: #101111;
--dtr-input-color: var(--dtr-text-color-one);
--dtr-input-border-color: transparent;
--dtr-input-border-width: 1px;
--dtr-input-border-radius: var(--dtr-radius-rounded-medium);
--dtr-input-focus-border-color: #bbbaa6;

/*radius*/
--dtr-radius-square: 0;
--dtr-radius-rounded: 16px;
--dtr-radius-rounded-medium: 8px;
--dtr-radius-rounded-small: 4px;
--dtr-radius-round: 9999px;
--dtr-radius-pagination: var(--dtr-radius-round);

/*btn*/
--dtr-btn-font-size: 18px;
--dtr-btn-line-height: 22px;
--dtr-btn-font-weight: 500;
--dtr-btn-border-width: 0;
--dtr-btn-radius: var(--dtr-radius-round);
--dtr-btn-color: var(--dtr-text-color-four);
--dtr-btn-hover-color: var(--dtr-text-color-four);
--dtr-btn-border-color: var(--dtr-border-color-main);

/*typography*/
--dtr-font-size-base: 18px;
--dtr-font-size-sm: .833em;
--dtr-font-weight-normal: 400;
--dtr-font-weight-medium: 500;
--dtr-font-weight-bold: 600;
--dtr-font-weight-extra-bold: 800;
--dtr-font-weight-heading: 400;
--dtr-line-height-normal: 1.6;

/* Sleek Design Enhancements */
--dtr-glass-bg: rgba(17, 17, 17, 0.8);
--dtr-glass-border: rgba(139, 69, 19, 0.2);
--dtr-shadow-color: rgba(139, 69, 19, 0.3);
--dtr-glow-color: rgba(139, 69, 19, 0.4);
--dtr-backdrop-blur: blur(20px);
--dtr-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
--dtr-transition-fast: all 0.2s ease;
--dtr-shadow-sleek: 0 8px 32px rgba(139, 69, 19, 0.15);
--dtr-shadow-hover: 0 16px 64px rgba(139, 69, 19, 0.25);
--dtr-line-height-heading: 1.2;
}

/* Light Theme Variables */
[data-theme="light"] {
/*base colors - light theme with gradient*/
--dtr-base-color-primary: linear-gradient(135deg,
    #ffffff 0%,
    #faf9ff 25%,
    #f5f3ff 50%,
    #faf9ff 75%,
    #ffffff 100%);
--dtr-base-color-secondary: linear-gradient(135deg, #f8f9ff 0%, #f3f1ff 100%);
--dtr-base-color-tertiary: #6c757d;
--dtr-base-color-quaternary: #212529;
--light: #000000;

/*background colors - light theme*/
--dtr-bg-color-section: linear-gradient(135deg, #faf9ff 0%, #f5f3ff 100%);
--dtr-bg-color-section-contrast: linear-gradient(135deg, #ffffff 0%, #faf9ff 100%);

/*text colors - light theme*/
--dtr-text-color-one: #495057;
--dtr-text-color-two: #212529;
--dtr-text-color-three: #6c757d;
--dtr-text-color-four: #ffffff;
--dtr-text-on-base-primary: #495057;
--dtr-text-on-base-secondary: #495057;
--dtr-text-on-base-tertiary: #ffffff;
--dtr-text-on-base-quaternary: #ffffff;

/*heading - light theme*/
--dtr-text-color-heading: #212529;
--dtr-text-color-heading-link: #212529;

/*link - light theme*/
--dtr-link-color: #6c757d;
--dtr-link-hover-color: var(--dtr-primary-color);

/*border - light theme*/
--dtr-border-color-main: rgba(108, 117, 125, .2);

/*input - light theme*/
--dtr-input-bg: #ffffff;
--dtr-input-color: #495057;
--dtr-input-border-color: #ced4da;
--dtr-input-focus-border-color: var(--dtr-primary-color);
}
/* Theme Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Improved accessibility for theme toggle */
.theme-toggle:focus {
    outline: 2px solid var(--dtr-primary-color);
    outline-offset: 2px;
}

/* Preloader theme support */
.dtr-preloader {
    background-color: var(--dtr-base-color-primary);
}

.dtr-loader {
    color: var(--dtr-text-color-two);
}

/* Enhanced theme support for various elements */
.dtr-iconhead__heading {
    color: var(--dtr-text-color-three);
}

/* Ensure proper contrast for light theme */
[data-theme="light"] .dtr-custom-logo {
    background: linear-gradient(135deg, var(--dtr-primary-color), var(--dtr-primary-color-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .dtr-custom-logo::before {
    background: linear-gradient(135deg, var(--dtr-primary-color), var(--dtr-primary-color-dark));
}

/* Light theme specific adjustments */
[data-theme="light"] .dtr-hamburger-lines,
[data-theme="light"] .dtr-hamburger-lines:after,
[data-theme="light"] .dtr-hamburger-lines:before {
    background-color: var(--dtr-text-color-two);
}

/* Custom Logo Styles */
.dtr-custom-logo {
    font-family: var(--dtr-font-family-heading);
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(135deg, var(--dtr-primary-color), var(--dtr-primary-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.dtr-custom-logo::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--dtr-primary-color), var(--dtr-primary-color-light));
    border-radius: 2px;
}

.dtr-custom-logo:hover {
    background: linear-gradient(135deg, var(--dtr-primary-color-light), var(--dtr-primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth theme transitions for all elements */
body,
.dtr-preloader,
#dtr-header-global,
#dtr-responsive-header,
.dtr-box,
.bg-color-section,
.bg-color-contrast,
.dtr-portfolio-item__wrapper,
.dtr-post-block__content-wrapper,
.dtr-number-feature,
.dtr-testimonial,
.dtr-feature,
input, select, textarea {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* Ensure proper theme inheritance */
* {
    color: inherit;
}

/* Auto theme responsive behavior */
@media (prefers-color-scheme: dark) {
    [data-theme-mode="auto"] {
        /* Auto mode will use dark theme when system prefers dark */
    }
}

@media (prefers-color-scheme: light) {
    [data-theme-mode="auto"] {
        /* Auto mode will use light theme when system prefers light */
    }
}

/*== Typography ==*/
body {
    font-family: var(--dtr-font-family-base);
    font-size: var(--dtr-font-size-base, 16px);
    font-weight: var(--dtr-font-weight-normal, 400);
    line-height: var(--dtr-line-height-normal);
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: #fdfaf7;
    color: var(--dtr-text-color-one);
    font-optical-sizing: auto;
}

/* Light theme body with beautiful gradient */
[data-theme="light"] body {
    background: #fdfaf7;
    min-height: 100vh;
}
html { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*, *:before, *:after { -webkit-box-sizing: inherit; -moz-box-sizing: inherit; box-sizing: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--dtr-font-family-heading); font-weight: var(--dtr-font-weight-heading); line-height: var(--dtr-line-height-heading); padding: 0; margin: 0 0 1rem 0; clear: both; -webkit-font-smoothing: antialiased; color: var(--light); }
h1 { font-size: 3.444em; line-height: 1.1; letter-spacing: -1px; }
h2 { font-size: 2.667em; line-height: 1.2; }
h3 { font-size: 2em; line-height: 1.2; }
h4 { font-size: 1.667em; line-height: 1.4; }
h5 { font-size: 1.333em; line-height: 1.2; }
h6 { font-size: 1em; line-height: 1.2; font-weight: 500; }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { text-decoration: none; color: var(--light, currentColor); }
p { margin: 0 0 15px 0; padding: 0; }
p:last-child { margin-bottom: 0; }
/*== Default links ==*/
a { text-decoration: none; cursor: pointer; font-style: normal; color: var(--dtr-link-color); }
a:visited { }
a:hover { text-decoration: none; color: var(--dtr-link-hover-color); }
a:active { }
a:focus { outline: 0; text-decoration: none; }
/*== media ==*/
img { height: auto; max-width: 100%; }
video { max-width: 100%; }
embed, iframe, object { margin-bottom: 1.5em; max-width: 100%; }
iframe { border: none; }
/*== icon / svg ==*/
.dtr-icon i, .dtr-icon svg { position: relative; display: inline-block; width: 1em; height: 1em; color: inherit; }
.dtr-icon svg { fill: currentColor; }
/*== Radius classes ==*/
.dtr-radius--square { border-radius: var(--dtr-radius-square); }
.dtr-radius--round { border-radius: var(--dtr-radius-round); }
.dtr-radius--rounded { border-radius: var(--dtr-radius-rounded); }
.dtr-radius--rounded-md { border-radius: var(--dtr-radius-rounded-medium); }
.dtr-radius--rounded-sm { border-radius: var(--dtr-radius-rounded-small); }
/*== Text align ==*/
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
/*== Lists == */
ul, ol { margin: 0 0 10px 0; padding: 0; list-style-position: outside; display: block; }
li>ul, li>ol { margin-top: 10px; margin-bottom: 0; margin-left: 1.5em; }
ol li, ul li { margin-bottom: 10px; }
/*== demensions == */
.spacer { display: block; width: 100%; }
.spacer::after { content: ""; display: block; clear: both; }
.spacer-10 { height: 10px; }
.spacer-15 { height: 15px; }
.spacer-20 { height: 20px; }
.spacer-30 { height: 30px; }
.spacer-40 { height: 40px; }
.spacer-50 { height: 50px; }
.spacer-100 { height: 100px; }
.spacer-section { height: 1.5rem; }
.section-padding { padding-top: 100px; padding-bottom: 100px; }
.section-padding-sm { padding-top: 50px; padding-bottom: 50px; }
.h-100 { height: 100%; }
.h-50 { height: 50%; }
.w-100 { width: 100%; }
.h-w-100 { width: 100%; height: 100%; }
/*----------------------------------------*/
/*----- 3 Layout / Color classes -----*/
/*----------------------------------------*/
.dtr-section { position: relative; }
/* Hero Section with Stunning Background */
.hero-section {
    padding-top: 190px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,
        var(--dtr-bg-color-section) 0%,
        var(--dtr-bg-color-section-contrast) 50%,
        var(--dtr-bg-color-section) 100%);
}

/* Sleek Hero Enhancements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
        rgba(139, 69, 19, 0.08) 0%,
        transparent 70%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
        transparent 0deg,
        rgba(139, 69, 19, 0.03) 90deg,
        transparent 180deg);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

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

/* Hero Background Container */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        rgba(139, 69, 19, 0.1) 0%,
        rgba(160, 82, 45, 0.05) 30%,
        var(--dtr-base-color-primary) 70%);
    z-index: 2;
}

/* Light theme gradient overlay with curves */
[data-theme="light"] .hero-gradient-overlay {
    background:
        linear-gradient(135deg,
            rgba(139, 69, 19, 0.1) 0%,
            rgba(160, 82, 45, 0.15) 25%,
            rgba(139, 69, 19, 0.08) 50%,
            rgba(160, 82, 45, 0.12) 75%,
            rgba(139, 69, 19, 0.05) 100%),
        radial-gradient(ellipse at top left,
            rgba(139, 69, 19, 0.2) 0%,
            transparent 50%),
        radial-gradient(ellipse at bottom right,
            rgba(160, 82, 45, 0.15) 0%,
            transparent 50%),
        var(--dtr-base-color-primary);
}

/* Add curved shapes for light theme */
[data-theme="light"] .hero-gradient-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: linear-gradient(45deg,
        rgba(139, 69, 19, 0.1) 0%,
        rgba(160, 82, 45, 0.08) 50%,
        transparent 100%);
    border-radius: 50% 20% 50% 20%;
    transform: rotate(15deg);
    z-index: 1;
}

[data-theme="light"] .hero-gradient-overlay::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: linear-gradient(-45deg,
        rgba(160, 82, 45, 0.12) 0%,
        rgba(139, 69, 19, 0.06) 50%,
        transparent 100%);
    border-radius: 30% 70% 30% 70%;
    transform: rotate(-10deg);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dtr-primary-color), var(--dtr-primary-color-light));
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 15%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle-6 {
    width: 14px;
    height: 14px;
    top: 70%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 11s;
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 15%;
    background: linear-gradient(45deg, var(--dtr-primary-color), transparent);
    border-radius: 20px;
    transform: rotate(45deg);
    animation-duration: 25s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    border: 2px solid var(--dtr-primary-color-light);
    border-radius: 50%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 30%;
    background: linear-gradient(135deg, var(--dtr-primary-color-light), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-duration: 35s;
}

/* Web3 Network Lines */
.hero-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.network-svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.network-line {
    stroke-dasharray: 5, 10;
    animation: dash 8s linear infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 2s;
}

.line-3 {
    animation-delay: 4s;
}

.network-node {
    animation: pulse-node 3s ease-in-out infinite;
}

.node-1 {
    animation-delay: 0s;
}

.node-2 {
    animation-delay: 1s;
}

.node-3 {
    animation-delay: 2s;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    color: var(--dtr-text-color-three);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: var(--dtr-primary-color);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--dtr-primary-color), transparent);
    margin-bottom: 10px;
    animation: scroll-line 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.scroll-arrow {
    font-size: 14px;
    animation: bounce 2s ease-in-out infinite;
}

/* Enhanced Wave Separator - Edge to Edge */
.hero-wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100vw;
    height: 150px;
    z-index: 6;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
}

.hero-wave-separator svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1.1);
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 30;
    }
}

@keyframes pulse-node {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes scroll-line {
    0%, 100% {
        opacity: 0.3;
        height: 30px;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* New Keyframe Animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            0 20px 60px rgba(139, 69, 19, 0.3),
            0 0 0 20px rgba(139, 69, 19, 0.1);
    }
    50% {
        box-shadow:
            0 25px 80px rgba(139, 69, 19, 0.4),
            0 0 0 25px rgba(139, 69, 19, 0.15);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

@keyframes slide {
    0%, 100% {
        transform: translateX(0) rotate(30deg);
        opacity: 0.2;
    }
    50% {
        transform: translateX(20px) rotate(30deg);
        opacity: 0.4;
    }
}

/* Theme-aware hero enhancements */
[data-theme="light"] .particle {
    background: linear-gradient(135deg,
        var(--dtr-primary-color),
        var(--dtr-primary-color-light));
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.3);
}

[data-theme="light"] .shape {
    opacity: 0.15;
}

[data-theme="light"] .shape-1 {
    background: linear-gradient(45deg,
        rgba(139, 69, 19, 0.2),
        rgba(160, 82, 45, 0.1));
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.2);
}

[data-theme="light"] .shape-2 {
    border-color: rgba(139, 69, 19, 0.3);
    box-shadow: 0 0 25px rgba(160, 82, 45, 0.2);
}

[data-theme="light"] .shape-3 {
    background: linear-gradient(135deg,
        rgba(160, 82, 45, 0.2),
        rgba(139, 69, 19, 0.1));
    box-shadow: 0 0 20px rgba(160, 82, 45, 0.2);
}

[data-theme="light"] .network-svg {
    opacity: 0.5;
}

[data-theme="light"] .hero-scroll-indicator {
    color: var(--dtr-text-color-two);
}

/* Enhanced light theme network lines */
[data-theme="light"] .network-line {
    stroke: url(#lightLineGradient);
    stroke-width: 2.5;
}

[data-theme="light"] .network-node {
    fill: var(--dtr-primary-color);
    filter: drop-shadow(0 0 8px rgba(139, 69, 19, 0.4));
}

/* Enhanced Hero Left Column */
.hero-content-left {
    position: relative;
    z-index: 10;
}

/* Hero Greeting */
.hero-greeting {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.greeting-text {
    font-size: 18px;
    color: var(--dtr-text-color-three);
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}

.hero-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.name-highlight {
    background: linear-gradient(135deg, var(--dtr-primary-color), var(--dtr-primary-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-suffix {
    color: var(--dtr-text-color-two);
}

/* Hero Main Title */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 30px 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line-1,
.title-line-3 {
    display: block;
    color: var(--dtr-text-color-two);
}

.title-line-2 {
    display: block;
    font-size: 4rem;
    margin: 10px 0;
}

.highlight-word {
    position: relative;
    color: var(--dtr-primary-color);
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dtr-primary-color), var(--dtr-primary-color-light));
    border-radius: 2px;
}

/* Hero Description */
.hero-description {
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.main-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dtr-text-color-one);
    margin-bottom: 30px;
}

/* Hero Achievements */
.hero-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fcf4ed;
    border-radius: 25px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    font-size: 14px;
    font-weight: 500;
    color: var(--dtr-text-color-two);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(139, 69, 19, 0.2);
    transform: translateY(-2px);
}

.achievement-icon {
    color: var(--dtr-primary-color);
    font-size: 16px;
}

/* Hero CTA Section */
.hero-cta-section {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta-section .btn-row {
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-primary-btn {
    position: relative;
    overflow: hidden;
}

.hero-primary-btn::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: left 0.5s;
}

.hero-primary-btn:hover::before {
    left: 100%;
}

.hero-secondary-btn {
    border: 2px solid var(--dtr-primary-color);
    color: var(--dtr-primary-color);
    background: transparent;
}

.hero-secondary-btn:hover {
    background: var(--dtr-primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--dtr-border-color-main);
}

.social-proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--dtr-primary-color);
    line-height: 1;
}

.proof-label {
    display: block;
    font-size: 12px;
    color: var(--dtr-text-color-three);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Stunning Hero Image Section */
.hero-image-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}

/* Decorative Elements */
.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--dtr-primary-color);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(45deg, var(--dtr-primary-color), var(--dtr-primary-color-light));
    opacity: 0.4;
    animation: rotate 20s linear infinite;
}

.decoration-line-1 {
    width: 100px;
    height: 2px;
    top: 20%;
    left: -10%;
    transform: rotate(45deg);
}

.decoration-line-2 {
    width: 80px;
    height: 2px;
    bottom: 25%;
    right: -5%;
    transform: rotate(-45deg);
    animation-direction: reverse;
}

/* Main Image Wrapper */
.hero-image-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 460px;
    height: 460px;
    /*border-radius: 50%;*/
    overflow: hidden;
    background: linear-gradient(135deg, var(--dtr-primary-color), var(--dtr-primary-color-light));
    padding: 8px;
    box-shadow:
        0 20px 60px rgba(139, 69, 19, 0.3),
        0 0 0 20px rgba(139, 69, 19, 0.1);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.2) 0%,
        transparent 50%,
        rgba(139, 95, 191, 0.2) 100%);
    border-radius: 50%;
    z-index: 3;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 15px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

.badge-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 25%;
    right: -15%;
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 3s;
}

.badge-4 {
    bottom: 15%;
    right: -10%;
    animation-delay: 4.5s;
}

.badge-icon {
    color: var(--dtr-primary-color);
    font-size: 16px;
}

.badge-text {
    line-height: 1.2;
    text-align: center;
}

/* Light theme badge adjustments */
[data-theme="light"] .floating-badge {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(139, 69, 19, 0.3);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

/* Status Indicator */
.status-indicator {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    font-size: 12px;
    font-weight: 500;
    color: var(--dtr-text-color-two);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Background Pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pattern-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--dtr-primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
}

.pattern-line {
    position: absolute;
    background: linear-gradient(45deg, var(--dtr-primary-color), transparent);
    opacity: 0.2;
}

.pattern-line-1 {
    width: 150px;
    height: 1px;
    top: 30%;
    left: 0;
    transform: rotate(30deg);
    animation: slide 8s ease-in-out infinite;
}

.pattern-line-2 {
    width: 120px;
    height: 1px;
    bottom: 40%;
    right: 0;
    transform: rotate(-30deg);
    animation: slide 8s ease-in-out infinite reverse;
}

/* Fade in animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll indicator click functionality */
.hero-scroll-indicator {
    animation: fadeInUp 1s ease-out 1.5s both;
}

/* Hover effects for hero elements */
.hero-content .dtr-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--dtr-shadow-hover);
}

/* Performance optimizations */
.hero-background * {
    will-change: transform, opacity;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .shape,
    .network-line,
    .network-node,
    .scroll-line,
    .scroll-arrow {
        animation: none;
    }

    .hero-content * {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
.h-center { justify-content: center; }
.v-center { align-items: center; }
.btn-row { display: flex; align-items: center; }
.dtr-box { display: flex; flex-direction: column; padding: 50px; box-sizing: border-box; border-radius: var(--dtr-radius-rounded); }
.bg-color-section { background: var(--dtr-bg-color-section); }
.bg-color-contrast { background: var(--dtr-bg-color-section-contrast); }

/* Reusable Gradient Background Classes */

/* Brown Wave Gradient - Light Theme */
[data-theme="light"] .bg-purple-wave,
[data-theme="light"] .bg-color-section {
    background:
        linear-gradient(180deg,
            #fefcf9 0%,
            #fdf8f3 30%,
            #fcf4ed 60%,
            #fdf8f3 100%);
    position: relative;
}

/* Brown Wave Gradient Enhanced - Light Theme */
[data-theme="light"] .bg-purple-wave-enhanced {
    background:
        linear-gradient(180deg,
            #fefcf9 0%,
            #fdf8f3 20%,
            #fcf4ed 40%,
            #fbf0e7 60%,
            #fcf4ed 80%,
            #fdf8f3 100%);
    position: relative;
}

/* Brown Wave Gradient - Dark Theme */
[data-theme="dark"] .bg-purple-wave,
[data-theme="dark"] .bg-color-section {
    background:
        linear-gradient(180deg,
            #1a1612 0%,
            #1e1a16 30%,
            #221e1a 60%,
            #1e1a16 100%);
    position: relative;
}

/* Brown Wave Gradient Enhanced - Dark Theme */
[data-theme="dark"] .bg-purple-wave-enhanced {
    background:
        linear-gradient(180deg,
            #1a1612 0%,
            #1e1a16 20%,
            #221e1a 40%,
            #25211d 60%,
            #221e1a 80%,
            #1e1a16 100%);
    position: relative;
}

/* Brown Wave Gradient with Overlay - Light Theme */
[data-theme="light"] .bg-purple-wave-overlay {
    background:
        linear-gradient(180deg,
            #fefcf9 0%,
            #fdf8f3 20%,
            #fcf4ed 40%,
            #fbf0e7 60%,
            #fcf4ed 80%,
            #fdf8f3 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .bg-purple-wave-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background:
        radial-gradient(ellipse at top,
            rgba(139, 69, 19, 0.08) 0%,
            transparent 70%);
    z-index: 1;
}

/* Brown Wave Gradient with Overlay - Dark Theme */
[data-theme="dark"] .bg-purple-wave-overlay {
    background:
        linear-gradient(180deg,
            #1a1612 0%,
            #1e1a16 20%,
            #221e1a 40%,
            #25211d 60%,
            #221e1a 80%,
            #1e1a16 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .bg-purple-wave-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background:
        radial-gradient(ellipse at top,
            rgba(139, 69, 19, 0.15) 0%,
            transparent 70%);
    z-index: 1;
}

/* Content positioning for overlay backgrounds */
.bg-purple-wave-overlay .container,
.bg-purple-wave-overlay > * {
    position: relative;
    z-index: 2;
}

/* Additional Gradient Utility Classes */

/* Subtle Brown Wave - Light Theme */
[data-theme="light"] .bg-purple-wave-subtle {
    background:
        linear-gradient(180deg,
            #fffffe 0%,
            #fefcf9 50%,
            #fffffe 100%);
    position: relative;
}

[data-theme="light"] .special-bg {
    background: #fcf4ed !important;
}

[data-theme="dark"] .special-bg {
    background: #000000 !important;
}

/* Subtle Brown Wave - Dark Theme */
[data-theme="dark"] .bg-purple-wave-subtle {
    background:
        linear-gradient(180deg,
            #1c1814 0%,
            #1a1612 50%,
            #1c1814 100%);
    position: relative;
}

/* Diagonal Brown Wave - Light Theme */
[data-theme="light"] .bg-purple-wave-diagonal {
    background:
        linear-gradient(135deg,
            #fefcf9 0%,
            #fdf8f3 25%,
            #fcf4ed 50%,
            #fdf8f3 75%,
            #fefcf9 100%);
    position: relative;
}

/* Diagonal Brown Wave - Dark Theme */
[data-theme="dark"] .bg-purple-wave-diagonal {
    background:
        linear-gradient(135deg,
            #1a1612 0%,
            #1e1a16 25%,
            #221e1a 50%,
            #1e1a16 75%,
            #1a1612 100%);
    position: relative;
}

/* Radial Brown Wave - Light Theme */
[data-theme="light"] .bg-purple-wave-radial {
    background:
        radial-gradient(ellipse at center,
            #fcf4ed 0%,
            #fdf8f3 50%,
            #fefcf9 100%);
    position: relative;
}

/* Radial Brown Wave - Dark Theme */
[data-theme="dark"] .bg-purple-wave-radial {
    background:
        radial-gradient(ellipse at center,
            #221e1a 0%,
            #1e1a16 50%,
            #1a1612 100%);
    position: relative;
}

/* Brown Wave with Bottom Accent - Light Theme */
[data-theme="light"] .bg-purple-wave-bottom-accent {
    background:
        linear-gradient(180deg,
            #fefcf9 0%,
            #fdf8f3 70%,
            #fcf4ed 100%);
    position: relative;
}

/* Brown Wave with Bottom Accent - Dark Theme */
[data-theme="dark"] .bg-purple-wave-bottom-accent {
    background:
        linear-gradient(180deg,
            #1a1612 0%,
            #1e1a16 70%,
            #221e1a 100%);
    position: relative;
}

/* Brown Wave with Top Accent - Light Theme */
[data-theme="light"] .bg-purple-wave-top-accent {
    background:
        linear-gradient(180deg,
            #fcf4ed 0%,
            #fdf8f3 30%,
            #fefcf9 100%);
    position: relative;
}

/* Brown Wave with Top Accent - Dark Theme */
[data-theme="dark"] .bg-purple-wave-top-accent {
    background:
        linear-gradient(180deg,
            #221e1a 0%,
            #1e1a16 30%,
            #1a1612 100%);
    position: relative;
}

/* ===== Compact Services Section Styles ===== */

/* Services Section */
.services-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* Compact Header */
.services-compact-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-compact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.services-compact-header p {
    font-size: 1rem;
    color: var(--dtr-text-color-three);
    margin: 0;
}

/* Horizontal Services Layout */
.services-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Enhanced Service Items - Sleek Design */
.service-item {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    padding: 25px;
    transition: var(--dtr-transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.03) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: var(--dtr-primary-color);
    box-shadow: var(--dtr-shadow-hover);
    background: rgba(26, 26, 26, 0.95);
}

/* Service Item Header */
.service-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.service-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item__icon i {
    font-size: 20px;
    color: white;
}

.service-item__meta {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item__meta h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin: 0;
    line-height: 1.3;
}

.service-item__number {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Description */
.service-item__description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dtr-text-color-three);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

/* Feature Tags */
.service-item__features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: rgba(139, 69, 19, 0.1);
    color: var(--dtr-primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

/* Service CTA */
.service-item__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dtr-primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-item__cta:hover {
    gap: 10px;
    color: var(--dtr-primary-color-light);
}

.service-item__cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-item__cta:hover i {
    transform: translateX(3px);
}

/* Enhanced Services Bottom Section - Sleek Design */
.services-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

/* Compact Stats */
.services-stats-compact {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dtr-text-color-three);
    font-weight: 500;
}

/* Compact CTA */
.services-cta-compact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-text {
    font-size: 0.95rem;
    color: var(--dtr-text-color-two);
    font-weight: 500;
}

.dtr-btn--compact {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Theme-specific adjustments */
[data-theme="light"] .service-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 69, 19, 0.1);
}

[data-theme="light"] .service-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
}

[data-theme="light"] .services-bottom {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .service-item {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .service-item:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .services-bottom {
    background: rgba(28, 28, 28, 0.6);
    border-color: rgba(139, 69, 19, 0.25);
}

/* Enhanced Button Styles - Sleek Design */
.dtr-btn--primary {
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--dtr-transition-smooth);
    text-decoration: none;
    box-shadow: var(--dtr-shadow-sleek);
    position: relative;
    overflow: hidden;
}

.dtr-btn--primary::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: left 0.5s ease;
}

.dtr-btn--primary:hover::before {
    left: 100%;
}

.dtr-btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--dtr-shadow-hover);
    color: white;
}

.dtr-btn--outline {
    background: transparent;
    color: var(--dtr-primary-color);
    border: 2px solid var(--dtr-primary-color);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--dtr-transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--dtr-backdrop-blur);
}

.dtr-btn--outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dtr-primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.dtr-btn--outline:hover::before {
    left: 0;
}

.dtr-btn--outline:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--dtr-shadow-hover);
}

/* ===== Compact Works Section Styles ===== */

/* Works Section */
.works-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

/* Compact Works Header */
.works-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.works-compact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Inline Filter */
.works-filter-inline {
    display: flex;
    gap: 6px;
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 25px;
    padding: 4px;
}

.filter-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--dtr-text-color-three);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    color: white;
    transform: translateY(-1px);
}

/* Compact Works Grid */
.works-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Enhanced Work Cards - Sleek Design */
.work-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    transition: var(--dtr-transition-smooth);
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dtr-shadow-hover);
    border-color: var(--dtr-primary-color);
}

.work-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.work-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .work-card__image img {
    transform: scale(1.05);
}

/* Strong Primary Color Overlay */
.work-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 69, 19, 0.85) 0%,
        rgba(160, 82, 45, 0.9) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.work-card:hover .work-card__overlay {
    opacity: 1;
}

.work-card__content {
    color: white;
    text-align: center;
    width: 100%;
}

.work-card__category {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
}

.work-card__category i {
    font-size: 12px;
}

.work-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.work-card__description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Work Card Actions */
.work-card__actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.work-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-btn--primary {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.work-btn--primary:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.work-btn--secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.work-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Enhanced Compact Works CTA - Sleek Design */
.works-cta-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 16px;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.works-cta-text {
    font-size: 0.95rem;
    color: var(--dtr-text-color-two);
    font-weight: 500;
}

/* Theme-specific adjustments for Compact Works */
[data-theme="light"] .work-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 69, 19, 0.1);
}

[data-theme="light"] .work-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

[data-theme="light"] .works-filter-inline {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 69, 19, 0.15);
}

[data-theme="light"] .works-cta-compact {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .work-card {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .work-card:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .works-filter-inline {
    background: rgba(28, 28, 28, 0.6);
    border-color: rgba(139, 69, 19, 0.25);
}

[data-theme="dark"] .works-cta-compact {
    background: rgba(28, 28, 28, 0.6);
    border-color: rgba(139, 69, 19, 0.25);
}

/* Compact Work Modal */
.work-modal-compact {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.work-modal-compact.active {
    display: flex;
}

.work-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.work-modal__content {
    position: relative;
    background: var(--dtr-bg-color-section-contrast);
    border: 1px solid var(--dtr-border-color-main);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

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

.work-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 14px;
}

.work-modal__close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.work-modal__image {
    height: 200px;
    overflow: hidden;
}

.work-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-modal__info {
    padding: 20px;
}

.work-modal__info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dtr-text-color-two);
    margin-bottom: 12px;
}

.work-modal__info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dtr-text-color-three);
    margin-bottom: 20px;
}

/* Theme-specific modal adjustments */
[data-theme="light"] .work-modal__content {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .work-modal__content {
    background: rgba(28, 28, 28, 0.95);
    border-color: rgba(139, 69, 19, 0.3);
}

/* ===== Modern About Section Styles ===== */

/* About Section */
.about-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-subtitle {
    font-size: 1.125rem;
    color: var(--dtr-text-color-three);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Main Content */
.about-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Enhanced Profile Section - Sleek Design */
.about-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 35px;
    align-items: start;
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.about-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.03) 0%,
        transparent 50%);
    z-index: 1;
}

.about-profile > * {
    position: relative;
    z-index: 2;
}

/* Profile Image */
.about-profile__image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about-profile__image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dtr-primary-color);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.about-profile__status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.about-profile__status i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Profile Content */
.about-profile__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-profile__greeting {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dtr-text-color-two);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-profile__greeting img {
    width: 24px;
    height: 24px;
}

.about-profile__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    margin: 0;
}

/* Profile Roles */
.about-profile__roles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dtr-text-color-three);
}

.role-item i {
    color: var(--dtr-primary-color);
    font-size: 14px;
    width: 16px;
}

.role-item strong {
    color: var(--dtr-text-color-two);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Enhanced About Cards - Sleek Design */
.about-card {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    padding: 25px;
    transition: var(--dtr-transition-smooth);
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dtr-shadow-hover);
    border-color: var(--dtr-primary-color);
    background: rgba(26, 26, 26, 0.9);
}

.about-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-card__header i {
    color: var(--dtr-primary-color);
    font-size: 18px;
}

.about-card__header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin: 0;
}

/* Timeline */
.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.timeline-icon i {
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.timeline-item:hover .timeline-icon i {
    transform: scale(1.1);
}

/* Dark mode timeline icons */
[data-theme="dark"] .timeline-icon {
    background: linear-gradient(135deg,
        var(--dtr-primary-color-light) 0%,
        var(--dtr-primary-color) 100%);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.4);
}

[data-theme="dark"] .timeline-icon i {
    color: #1a1612;
}

/* Legacy image support (in case any remain) */
.timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin: 0 0 4px 0;
}

.timeline-company {
    display: block;
    font-size: 0.875rem;
    color: var(--dtr-text-color-three);
    margin-bottom: 2px;
}

.timeline-period {
    display: block;
    font-size: 0.8rem;
    color: var(--dtr-primary-color);
    font-weight: 500;
}

/* Stats Card */
.about-card--stats {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.1) 0%,
        rgba(160, 82, 45, 0.05) 100%);
    border-color: rgba(139, 69, 19, 0.2);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dtr-text-color-three);
    font-weight: 500;
}

/* Theme-specific adjustments for About */
[data-theme="light"] .about-profile,
[data-theme="light"] .about-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 69, 19, 0.1);
}

[data-theme="light"] .about-profile:hover,
[data-theme="light"] .about-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.08);
}

[data-theme="light"] .about-card--stats {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(250, 249, 255, 0.8) 100%);
    border-color: rgba(139, 69, 19, 0.15);
}

[data-theme="light"] .stat-item {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 69, 19, 0.1);
}

[data-theme="dark"] .about-profile,
[data-theme="dark"] .about-card {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .about-profile:hover,
[data-theme="dark"] .about-card:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15)
}

[data-theme="dark"] .about-card--stats {
    background: linear-gradient(135deg,
        rgba(28, 28, 28, 0.9) 0%,
        rgba(32, 32, 32, 0.8) 100%);
    border-color: rgba(139, 69, 19, 0.25);
}

[data-theme="dark"] .stat-item {
    background: rgba(28, 28, 28, 0.6);
    border-color: rgba(139, 69, 19, 0.2)
}

/* ===== Modern Testimonials Section Styles ===== */

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--dtr-text-color-three);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Enhanced Testimonial Cards - Sleek Design */
.testimonial-card {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--dtr-transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.03) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--dtr-primary-color);
    box-shadow: var(--dtr-shadow-hover);
    background: rgba(26, 26, 26, 0.95);
}

.testimonial-card__content {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.testimonial-card__quote {
    margin-bottom: 15px;
}

.testimonial-card__quote i {
    font-size: 24px;
    color: var(--dtr-primary-color);
    opacity: 0.7;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
}

.testimonial-card__rating i {
    font-size: 14px;
    color: #fbbf24;
}

/* Testimonial Client Info */
.testimonial-card__client {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--dtr-primary-color);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin: 0 0 4px 0;
}

.testimonial-card__position {
    font-size: 0.875rem;
    color: var(--dtr-text-color-three);
    margin: 0;
}

/* Enhanced Testimonials Stats - Sleek Design */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.testimonials-stats__item {
    text-align: center;
}

.testimonials-stats__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.testimonials-stats__label {
    font-size: 0.875rem;
    color: var(--dtr-text-color-three);
    font-weight: 500;
}

/* Enhanced Testimonials CTA - Sleek Design */
.testimonials-cta {
    text-align: center;
    padding: 30px;
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.05) 0%,
        transparent 100%);
    z-index: 1;
}

.testimonials-cta > * {
    position: relative;
    z-index: 2;
}

.testimonials-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dtr-text-color-two);
    margin-bottom: 12px;
    line-height: 1.2;
}

.testimonials-cta__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    max-width: 500px;
    margin: 0 auto 25px auto;
}

/* Theme-specific adjustments for Testimonials */
[data-theme="light"] .testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 69, 19, 0.1);
}

[data-theme="light"] .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
}

[data-theme="light"] .testimonials-stats {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 69, 19, 0.15);
}

[data-theme="light"] .testimonials-cta {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .testimonial-card {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .testimonial-card:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .testimonials-stats {
    background: rgba(28, 28, 28, 0.6);
    border-color: rgba(139, 69, 19, 0.25);
}

[data-theme="dark"] .testimonials-cta {
    background: rgba(28, 28, 28, 0.7);
    border-color: rgba(139, 69, 19, 0.3);
}

/* ===== Modern Blog Section Styles ===== */

/* Blog Section */
.blog-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-subtitle {
    font-size: 1.125rem;
    color: var(--dtr-text-color-three);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Enhanced Blog Cards - Sleek Design */
.blog-card {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--dtr-transition-smooth);
    position: relative;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--dtr-primary-color);
    box-shadow: var(--dtr-shadow-hover);
}

/* Blog Card Image */
.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

/* Category Tags */
.category-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tag--branding {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.category-tag--marketing {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.category-tag--design {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Blog Card Content */
.blog-card__content {
    padding: 25px;
}

.blog-card__title {
    margin-bottom: 12px;
}

.blog-card__title a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--dtr-primary-color);
}

.blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Card Meta */
.blog-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dtr-border-color-main);
}

.blog-card__date,
.blog-card__read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--dtr-text-color-three);
}

.blog-card__date i,
.blog-card__read-time i {
    font-size: 12px;
    color: var(--dtr-primary-color);
}

/* Blog Card Link */
.blog-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dtr-primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-card__link:hover {
    gap: 12px;
    color: var(--dtr-primary-color-light);
}

.blog-card__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card__link:hover i {
    transform: translateX(3px);
}

/* Enhanced Blog CTA - Sleek Design */
.blog-cta {
    text-align: center;
    padding: 30px;
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.05) 0%,
        transparent 100%);
    z-index: 1;
}

.blog-cta > * {
    position: relative;
    z-index: 2;
}

.blog-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dtr-text-color-two);
    margin-bottom: 12px;
    line-height: 1.2;
}

.blog-cta__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    max-width: 500px;
    margin: 0 auto 25px auto;
}

/* Theme-specific adjustments for Blog */
[data-theme="light"] .blog-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 69, 19, 0.1);
}

[data-theme="light"] .blog-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
}

[data-theme="light"] .blog-cta {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .blog-card {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .blog-card:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .blog-cta {
    background: rgba(28, 28, 28, 0.7);
    border-color: rgba(139, 69, 19, 0.3);
}

/* ===== Simple Footer Styles (Original Design) ===== */

/* Keep the original footer simple and clean */
#dtr-footer-section {
    padding: 40px 0 20px 0;
    text-align: center;
}

.dtr-copyright {
    color: var(--dtr-text-color-three);
}

.dtr-custom-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.copyright-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-list li a {
    color: var(--dtr-text-color-three);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.copyright-list li a:hover {
    color: var(--dtr-primary-color);
}

.dtr-social-default {
    display: flex;
    justify-content: center;
}

.dtr-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.dtr-social li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dtr-primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.dtr-social li a:hover {
    background: var(--dtr-primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

/* Back to Top Button */
#take-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

#take-to-top.show {
    opacity: 1;
    visibility: visible;
}

#take-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.4);
}

#take-to-top::before {
    content: '\f077';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
}

/* ===== Comprehensive Dark Mode Enhancements ===== */

/* Enhanced body styling for dark mode */
[data-theme="dark"] body {
    background: linear-gradient(135deg,
        var(--dtr-bg-color-section) 0%,
        var(--dtr-base-color-secondary) 50%,
        var(--dtr-bg-color-section) 100%);
    color: #e5e7eb;
}

/* Enhanced section backgrounds */
[data-theme="dark"] .dtr-section {
    position: relative;
    color: #e5e7eb;
}

[data-theme="dark"] .dtr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
        rgba(139, 69, 19, 0.02) 0%,
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}

[data-theme="dark"] .dtr-section > .container {
    position: relative;
    z-index: 2;
}

/* Enhanced text glow effects for headings */
[data-theme="dark"] .dtr-heading__gradient {
    text-shadow: 0 0 20px rgba(139, 69, 19, 0.3);
}

/* ===== Hero Section Dark Mode ===== */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg,
        #0a0a0a 0%,
        #1a1a1a 50%,
        #0a0a0a 100%);
}

[data-theme="dark"] .hero-gradient-overlay {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.1) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(139, 69, 19, 0.05) 100%);
}

[data-theme="dark"] .hero-main-title,
[data-theme="dark"] .hero-greeting,
[data-theme="dark"] .hero-description {
    color: #f9fafb;
}

[data-theme="dark"] .main-description {
    color: #d1d5db;
}

[data-theme="dark"] .achievement-item {
    color: var(--dtr-primary-color-light);
}

[data-theme="dark"] .achievement-icon {
    color: var(--dtr-primary-color-light);
}

/* ===== About Section Dark Mode ===== */
[data-theme="dark"] .about-subtitle,
[data-theme="dark"] .about-profile__description {
    color: #d1d5db;
}

/* ===== Services Section Dark Mode ===== */
[data-theme="dark"] .services-section {
    background: var(--dtr-bg-color-section);
}

[data-theme="dark"] .service-card {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
    color: #e5e7eb;
}

[data-theme="dark"] .service-card:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .service-card__title {
    color: #f9fafb;
}

[data-theme="dark"] .service-card__description {
    color: #d1d5db;
}

/* ===== Blog Section Dark Mode ===== */
[data-theme="dark"] .blog-section {
    background: var(--dtr-bg-color-section);
}

[data-theme="dark"] .blog-subtitle {
    color: #d1d5db;
}

/* Blog Post Titles Dark Mode Fix */
[data-theme="dark"] .blog-section .card-title a,
[data-theme="dark"] .blog-section .text-dark {
    color: #f9fafb !important;
}

[data-theme="dark"] .blog-section .card-title a:hover {
    color: var(--dtr-primary-color-light) !important;
}

/* Blog Tags Dark Mode */
[data-theme="dark"] .blog-section .badge.bg-light {
    background-color: rgba(139, 69, 19, 0.2) !important;
    color: #e5e7eb !important;
    border-color: rgba(139, 69, 19, 0.3) !important;
}

/* Blog Meta Text Dark Mode */
[data-theme="dark"] .blog-section .text-muted {
    color: #9ca3af !important;
}

[data-theme="dark"] .card {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
    color: #e5e7eb;
}

[data-theme="dark"] .card:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .card-title {
    color: #f9fafb;
}

[data-theme="dark"] .card-title a {
    color: #f9fafb !important;
}

[data-theme="dark"] .card-title a:hover {
    color: var(--dtr-primary-color-light) !important;
}

[data-theme="dark"] .card-text {
    color: #d1d5db;
}

/* ===== Contact Section Dark Mode ===== */
[data-theme="dark"] .contact-section,
[data-theme="dark"] #contact {
    background: var(--dtr-bg-color-section);
}

/* Contact Section Text Elements */
[data-theme="dark"] #contact .dtr-section-heading {
    color: #f9fafb;
}

[data-theme="dark"] #contact p {
    color: #d1d5db;
}

/* Contact Features Dark Mode */
[data-theme="dark"] #contact .dtr-feature__heading a {
    color: var(--dtr-primary-color-light);
}

[data-theme="dark"] #contact .dtr-feature__subtext {
    color: #9ca3af;
}

[data-theme="dark"] #contact .dtr-icon {
    color: var(--dtr-primary-color-light);
}

/* Form Container Dark Mode */
[data-theme="dark"] #contact .dtr-box {
    background: rgba(28, 28, 28, 0.8) !important;
    border: 1px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Form Inputs Dark Mode */
[data-theme="dark"] #contact input,
[data-theme="dark"] #contact textarea,
[data-theme="dark"] #contact select {
    background: rgba(32, 32, 32, 0.9) !important;
    border: 2px solid rgba(139, 69, 19, 0.3) !important;
    color: #e5e7eb !important;
    border-radius: 8px;
}

[data-theme="dark"] #contact input:focus,
[data-theme="dark"] #contact textarea:focus,
[data-theme="dark"] #contact select:focus {
    background: rgba(40, 40, 40, 0.95) !important;
    border-color: var(--dtr-primary-color) !important;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2) !important;
    color: #f9fafb !important;
    outline: none;
}

[data-theme="dark"] #contact input::placeholder,
[data-theme="dark"] #contact textarea::placeholder {
    color: #9ca3af !important;
    opacity: 0.8;
}

/* Form Button Dark Mode */
[data-theme="dark"] #contact .button,
[data-theme="dark"] #contact button {
    background: var(--dtr-primary-color) !important;
    color: white !important;
    border: 2px solid var(--dtr-primary-color) !important;
}

[data-theme="dark"] #contact .button:hover,
[data-theme="dark"] #contact button:hover {
    background: var(--dtr-primary-color-light) !important;
    border-color: var(--dtr-primary-color-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Alert Messages Dark Mode */
[data-theme="dark"] #contact .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

[data-theme="dark"] #contact .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #86efac;
}

[data-theme="dark"] #contact .text-danger {
    color: #fca5a5 !important;
}

[data-theme="dark"] #contact .text-success {
    color: #86efac !important;
}

/* Legacy Form Control Support */
[data-theme="dark"] .form-control {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.3);
    color: #e5e7eb;
}

[data-theme="dark"] .form-control:focus {
    background: rgba(32, 32, 32, 0.9);
    border-color: var(--dtr-primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
    color: #f9fafb;
}

[data-theme="dark"] .form-control::placeholder {
    color: #9ca3af;
}

/* ===== Theme-Aware Wave Separators ===== */
.hero-wave-separator {
    fill: #fcf4ed;
    transition: fill 0.3s ease;
}

[data-theme="dark"] .hero-wave-separator {
    fill: #000000 !important;
}

/* ===== Testimonials Section Dark Mode ===== */
[data-theme="dark"] .testimonials-section {
    background: var(--dtr-bg-color-section);
}

[data-theme="dark"] .testimonials-subtitle {
    color: #d1d5db;
}

[data-theme="dark"] .testimonial-card {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
    color: #e5e7eb;
}

[data-theme="dark"] .testimonial-card:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

[data-theme="dark"] .testimonial-content {
    color: #d1d5db;
}

[data-theme="dark"] .testimonial-author {
    color: #f9fafb;
}

[data-theme="dark"] .testimonial-role {
    color: #9ca3af;
}

/* ===== Footer Dark Mode ===== */
[data-theme="dark"] .footer-section {
    background: linear-gradient(135deg,
        #0a0a0a 0%,
        #111111 100%);
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .footer-content {
    color: #d1d5db;
}

[data-theme="dark"] .footer-link {
    color: #e5e7eb;
}

[data-theme="dark"] .footer-link:hover {
    color: var(--dtr-primary-color-light);
}

/* ===== Preloader Dark Mode ===== */
[data-theme="dark"] .dtr-preloader {
    background: linear-gradient(135deg,
        #0a0a0a 0%,
        #1a1a1a 100%);
}

[data-theme="dark"] .dtr-loader {
    color: var(--dtr-primary-color-light);
}

/* ===== Additional Dark Mode Enhancements ===== */

/* Navigation Dark Mode */
[data-theme="dark"] .dtr-main-nav a {
    color: #e5e7eb;
}

[data-theme="dark"] .dtr-main-nav a:hover {
    color: var(--dtr-primary-color-light);
}

[data-theme="dark"] .dtr-custom-logo {
    color: #f9fafb;
}

/* Button Dark Mode Enhancements */
[data-theme="dark"] .dtr-btn--trans {
    color: #e5e7eb;
    border-color: rgba(229, 231, 235, 0.3);
}

[data-theme="dark"] .dtr-btn--trans:hover {
    background: var(--dtr-primary-color);
    border-color: var(--dtr-primary-color);
    color: white;
}

/* Hero Section Enhancements */
[data-theme="dark"] .floating-badge {
    background: rgba(28, 28, 28, 0.9);
    border-color: rgba(139, 69, 19, 0.3);
    color: #e5e7eb;
}

[data-theme="dark"] .floating-badge:hover {
    background: rgba(32, 32, 32, 0.95);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .badge-icon {
    color: var(--dtr-primary-color-light);
}

/* Particle and Shape Enhancements */
[data-theme="dark"] .particle {
    background: radial-gradient(circle,
        rgba(139, 69, 19, 0.3) 0%,
        rgba(139, 69, 19, 0.1) 50%,
        transparent 100%);
}

[data-theme="dark"] .shape {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.1) 0%,
        rgba(205, 133, 63, 0.05) 100%);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .network-node {
    fill: var(--dtr-primary-color-light);
}

/* Mobile Menu Dark Mode */
[data-theme="dark"] .slicknav_menu {
    background: rgba(28, 28, 28, 0.95);
    border-color: rgba(139, 69, 19, 0.3);
}

[data-theme="dark"] .slicknav_nav a {
    color: #e5e7eb;
    border-bottom-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .slicknav_nav a:hover {
    background: rgba(139, 69, 19, 0.1);
    color: var(--dtr-primary-color-light);
}

/* Selection Colors */
[data-theme="dark"] ::selection {
    background: rgba(139, 69, 19, 0.3);
    color: #f9fafb;
}

[data-theme="dark"] ::-moz-selection {
    background: rgba(139, 69, 19, 0.3);
    color: #f9fafb;
}

/* Focus States */
[data-theme="dark"] *:focus {
    outline-color: var(--dtr-primary-color-light);
}

/* Image Overlays */
[data-theme="dark"] .image-gradient-overlay {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(139, 69, 19, 0.1) 100%);
}

/* Text Selection and Accessibility */
[data-theme="dark"] .text-muted {
    color: #9ca3af !important;
}

[data-theme="dark"] .text-secondary {
    color: #d1d5db !important;
}

[data-theme="dark"] .border {
    border-color: rgba(139, 69, 19, 0.2) !important;
}

[data-theme="dark"] .border-light {
    border-color: rgba(139, 69, 19, 0.1) !important;
}

/* Enhanced scrollbar for dark mode */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 8px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: var(--dtr-bg-color-section);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    border-radius: 4px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg,
        var(--dtr-primary-color-light) 0%,
        var(--dtr-accent-color) 100%);
}

/* ===== Blog Pages Styles ===== */

/* Blogs Page Styles */
.blogs-page {
    padding-top: 100px;
}

/* ===== Blog Pages Dark Mode ===== */

/* Blog Index Page Dark Mode */
[data-theme="dark"] .blogs-page {
    background: var(--dtr-bg-color-section);
    color: #e5e7eb;
}

[data-theme="dark"] .blogs-page .bg-light {
    background: linear-gradient(135deg,
        #1a1612 0%,
        #1e1a16 100%) !important;
}

[data-theme="dark"] .blogs-page .text-dark {
    color: #f9fafb !important;
}

[data-theme="dark"] .blogs-page .text-muted {
    color: #9ca3af !important;
}

[data-theme="dark"] .blogs-page .lead {
    color: #d1d5db !important;
}

/* Blog Cards Dark Mode */
[data-theme="dark"] .blogs-page .card,
[data-theme="dark"] .article-hover-card {
    background: rgba(28, 28, 28, 0.8) !important;
    border-color: rgba(139, 69, 19, 0.2) !important;
    color: #e5e7eb;
}

[data-theme="dark"] .blogs-page .card:hover,
[data-theme="dark"] .article-hover-card:hover {
    background: rgba(32, 32, 32, 0.9) !important;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15) !important;
    transform: translateY(-5px);
}

[data-theme="dark"] .blogs-page .card-title a {
    color: #f9fafb !important;
}

[data-theme="dark"] .blogs-page .card-title a:hover {
    color: var(--dtr-primary-color-light) !important;
}

[data-theme="dark"] .blogs-page .card-text {
    color: #d1d5db !important;
}

/* Blog Search & Filter Dark Mode */
[data-theme="dark"] .blogs-page .form-control {
    background: rgba(32, 32, 32, 0.9) !important;
    border-color: rgba(139, 69, 19, 0.3) !important;
    color: #e5e7eb !important;
}

[data-theme="dark"] .blogs-page .form-control:focus {
    background: rgba(40, 40, 40, 0.95) !important;
    border-color: var(--dtr-primary-color) !important;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2) !important;
    color: #f9fafb !important;
}

[data-theme="dark"] .blogs-page .form-control::placeholder {
    color: #9ca3af !important;
}

[data-theme="dark"] .blogs-page .form-select {
    background: rgba(32, 32, 32, 0.9) !important;
    border-color: rgba(139, 69, 19, 0.3) !important;
    color: #e5e7eb !important;
}

/* Blog Tags Dark Mode */
[data-theme="dark"] .blogs-page .badge.bg-light {
    background-color: rgba(139, 69, 19, 0.2) !important;
    color: #e5e7eb !important;
    border: 1px solid rgba(139, 69, 19, 0.3) !important;
}

/* Blog Empty State Dark Mode */
[data-theme="dark"] .blogs-page .bg-light.d-inline-flex {
    background: rgba(139, 69, 19, 0.1) !important;
}

[data-theme="dark"] .blogs-page .text-muted.fs-2 {
    color: var(--dtr-primary-color-light) !important;
}

/* Blog Pagination Dark Mode */
[data-theme="dark"] .blogs-page .page-link {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.3);
    color: #e5e7eb;
}

[data-theme="dark"] .blogs-page .page-link:hover {
    background: var(--dtr-primary-color);
    border-color: var(--dtr-primary-color);
    color: white;
}

[data-theme="dark"] .blogs-page .page-item.active .page-link {
    background: var(--dtr-primary-color);
    border-color: var(--dtr-primary-color);
    color: white;
}

/* ===== Single Blog Page Dark Mode ===== */

/* Single Blog Page Layout */
[data-theme="dark"] .single-blog-page {
    background: var(--dtr-bg-color-section);
    color: #e5e7eb;
}

[data-theme="dark"] .single-blog-page .bg-light {
    background: linear-gradient(135deg,
        #1a1612 0%,
        #1e1a16 100%) !important;
}

/* Blog Header Dark Mode */
[data-theme="dark"] .single-blog-page .text-dark {
    color: #f9fafb !important;
}

[data-theme="dark"] .single-blog-page .text-muted {
    color: #9ca3af !important;
}

[data-theme="dark"] .single-blog-page .lead {
    color: #d1d5db !important;
}

/* Blog Content Dark Mode */
[data-theme="dark"] .single-blog-page .blog-content {
    color: #e5e7eb;
}

[data-theme="dark"] .single-blog-page .blog-content h1,
[data-theme="dark"] .single-blog-page .blog-content h2,
[data-theme="dark"] .single-blog-page .blog-content h3,
[data-theme="dark"] .single-blog-page .blog-content h4,
[data-theme="dark"] .single-blog-page .blog-content h5,
[data-theme="dark"] .single-blog-page .blog-content h6 {
    color: #f9fafb;
}

[data-theme="dark"] .single-blog-page .blog-content p {
    color: #d1d5db;
    line-height: 1.8;
}

[data-theme="dark"] .single-blog-page .blog-content a {
    color: var(--dtr-primary-color-light);
}

[data-theme="dark"] .single-blog-page .blog-content a:hover {
    color: var(--dtr-primary-color);
}

[data-theme="dark"] .single-blog-page .blog-content blockquote {
    background: rgba(139, 69, 19, 0.1);
    border-left: 4px solid var(--dtr-primary-color);
    color: #e5e7eb;
}

[data-theme="dark"] .single-blog-page .blog-content code {
    background: rgba(32, 32, 32, 0.8);
    color: var(--dtr-primary-color-light);
    border: 1px solid rgba(139, 69, 19, 0.3);
}

[data-theme="dark"] .single-blog-page .blog-content pre {
    background: rgba(28, 28, 28, 0.9);
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: #e5e7eb;
}

/* Blog Sidebar Dark Mode */
[data-theme="dark"] .single-blog-page .card {
    background: rgba(28, 28, 28, 0.8) !important;
    border-color: rgba(139, 69, 19, 0.2) !important;
    color: #e5e7eb;
}

[data-theme="dark"] .single-blog-page .card-header {
    background: rgba(139, 69, 19, 0.1) !important;
    border-bottom-color: rgba(139, 69, 19, 0.2) !important;
    color: #f9fafb;
}

[data-theme="dark"] .single-blog-page .card-title {
    color: #f9fafb !important;
}

[data-theme="dark"] .single-blog-page .card-text {
    color: #d1d5db !important;
}

/* Related Posts Dark Mode */
[data-theme="dark"] .single-blog-page .related-post-card {
    background: rgba(28, 28, 28, 0.8) !important;
    border-color: rgba(139, 69, 19, 0.2) !important;
}

[data-theme="dark"] .single-blog-page .related-post-card:hover {
    background: rgba(32, 32, 32, 0.9) !important;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15) !important;
    transform: translateY(-3px);
}

[data-theme="dark"] .single-blog-page .related-post-card .card-title a {
    color: #f9fafb !important;
}

[data-theme="dark"] .single-blog-page .related-post-card .card-title a:hover {
    color: var(--dtr-primary-color-light) !important;
}

/* Blog Meta Information Dark Mode */
[data-theme="dark"] .single-blog-page .blog-meta {
    color: #9ca3af;
}

[data-theme="dark"] .single-blog-page .blog-meta a {
    color: var(--dtr-primary-color-light);
}

[data-theme="dark"] .single-blog-page .blog-meta a:hover {
    color: var(--dtr-primary-color);
}

/* Blog Navigation Dark Mode */
[data-theme="dark"] .single-blog-page .blog-navigation {
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .single-blog-page .blog-navigation a {
    color: #e5e7eb;
}

[data-theme="dark"] .single-blog-page .blog-navigation a:hover {
    color: var(--dtr-primary-color-light);
    background: rgba(139, 69, 19, 0.1);
}

/* ===== Category Blog Page Dark Mode ===== */

/* Category Blog Page Layout */
[data-theme="dark"] .category-blog-page {
    background: var(--dtr-bg-color-section);
    color: #e5e7eb;
}

[data-theme="dark"] .category-blog-page .bg-light {
    background: linear-gradient(135deg,
        #1a1612 0%,
        #1e1a16 100%) !important;
}

/* Category Header Dark Mode */
[data-theme="dark"] .category-blog-page .text-dark {
    color: #f9fafb !important;
}

[data-theme="dark"] .category-blog-page .text-muted {
    color: #9ca3af !important;
}

[data-theme="dark"] .category-blog-page .lead {
    color: #d1d5db !important;
}

/* Category Cards Dark Mode */
[data-theme="dark"] .category-blog-page .card,
[data-theme="dark"] .category-hover-card {
    background: rgba(28, 28, 28, 0.8) !important;
    border-color: rgba(139, 69, 19, 0.2) !important;
    color: #e5e7eb;
}

[data-theme="dark"] .category-blog-page .card:hover,
[data-theme="dark"] .category-hover-card:hover {
    background: rgba(32, 32, 32, 0.9) !important;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15) !important;
    transform: translateY(-5px);
}

[data-theme="dark"] .category-blog-page .card-title {
    color: #f9fafb !important;
}

[data-theme="dark"] .category-blog-page .card-text {
    color: #d1d5db !important;
}

/* Category Navigation Dark Mode */
[data-theme="dark"] .category-blog-page .breadcrumb {
    background: rgba(28, 28, 28, 0.8);
}

[data-theme="dark"] .category-blog-page .breadcrumb-item a {
    color: var(--dtr-primary-color-light);
}

[data-theme="dark"] .category-blog-page .breadcrumb-item.active {
    color: #9ca3af;
}

/* ===== General Blog Elements Dark Mode ===== */

/* Blog Stats and Badges */
[data-theme="dark"] .badge.bg-dark {
    background-color: rgba(139, 69, 19, 0.8) !important;
    color: white !important;
}

[data-theme="dark"] .badge.bg-warning {
    background-color: #f59e0b !important;
    color: #1f2937 !important;
}

/* Blog List Items */
[data-theme="dark"] .list-group-item {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
    color: #e5e7eb;
}

[data-theme="dark"] .list-group-item:hover {
    background: rgba(32, 32, 32, 0.9);
}

[data-theme="dark"] .list-group-item a {
    color: #e5e7eb;
}

[data-theme="dark"] .list-group-item a:hover {
    color: var(--dtr-primary-color-light);
}

/* Blog Search Results */
[data-theme="dark"] .search-highlight {
    background: rgba(139, 69, 19, 0.3);
    color: #f9fafb;
}

/* Blog Archive Links */
[data-theme="dark"] .archive-link {
    color: #d1d5db;
}

[data-theme="dark"] .archive-link:hover {
    color: var(--dtr-primary-color-light);
}

/* Blog Social Share */
[data-theme="dark"] .social-share-btn {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.3);
    color: #e5e7eb;
}

[data-theme="dark"] .social-share-btn:hover {
    background: var(--dtr-primary-color);
    border-color: var(--dtr-primary-color);
    color: white;
}

/* Blogs Hero Section */
.blogs-hero-section {
    padding: 60px 0;
    text-align: center;
}

.blogs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blogs-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blogs-hero-subtitle {
    font-size: 1.25rem;
    color: var(--dtr-text-color-three);
    margin-bottom: 40px;
    line-height: 1.6;
}

.blogs-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat__label {
    font-size: 0.9rem;
    color: var(--dtr-text-color-three);
    font-weight: 500;
}

/* Featured Articles Section */
.featured-articles-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dtr-text-color-three);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.featured-article-card {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--dtr-transition-smooth);
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.featured-article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dtr-shadow-hover);
    border-color: var(--dtr-primary-color);
}

.featured-article-card--large {
    grid-row: span 2;
}

.featured-article-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-article-card--large .featured-article-card__image {
    height: 300px;
}

.featured-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article-card:hover .featured-article-card__image img {
    transform: scale(1.05);
}

.featured-article-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.featured-article-card__content {
    padding: 25px;
}

.featured-article-card__title {
    margin-bottom: 15px;
}

.featured-article-card__title a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-article-card--large .featured-article-card__title a {
    font-size: 1.75rem;
}

.featured-article-card__title a:hover {
    color: var(--dtr-primary-color);
}

.featured-article-card__excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-article-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
    color: var(--dtr-text-color-three);
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -10px;
    color: var(--dtr-primary-color);
}

.featured-article-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dtr-primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.featured-article-card__link:hover {
    gap: 12px;
    color: var(--dtr-primary-color-light);
}

.featured-article-card__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.featured-article-card__link:hover i {
    transform: translateX(3px);
}

/* Categories Filter Section */
.categories-filter-section {
    padding: 30px 0;
    background: var(--dtr-bg-color-section-contrast);
    border-top: 1px solid var(--dtr-border-color-main);
    border-bottom: 1px solid var(--dtr-border-color-main);
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--dtr-border-color-main);
    background: transparent;
    color: var(--dtr-text-color-three);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    border-color: var(--dtr-primary-color);
    background: var(--dtr-primary-color);
    color: white;
}

/* All Articles Section */
.all-articles-section {
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--dtr-transition-smooth);
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dtr-shadow-hover);
    border-color: var(--dtr-primary-color);
}

.article-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card__image img {
    transform: scale(1.05);
}

.article-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.article-card__featured {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: var(--dtr-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.article-card__content {
    padding: 25px;
}

.article-card__title {
    margin-bottom: 12px;
}

.article-card__title a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-card__title a:hover {
    color: var(--dtr-primary-color);
}

.article-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.article-tag {
    padding: 4px 8px;
    background: rgba(var(--dtr-primary-color), 0.1);
    color: var(--dtr-primary-color);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.article-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--dtr-border-color-main);
}

.article-card__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dtr-primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.article-card__link:hover {
    gap: 10px;
    color: var(--dtr-primary-color-light);
}

.article-card__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.article-card__link:hover i {
    transform: translateX(3px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: var(--dtr-text-color-three);
    line-height: 1.6;
}

.newsletter-form__input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.newsletter-form__input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--dtr-border-color-main);
    border-radius: 50px;
    background: var(--dtr-bg-color-section-contrast);
    color: var(--dtr-text-color-two);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form__input:focus {
    outline: none;
    border-color: var(--dtr-primary-color);
}

.newsletter-form__privacy {
    font-size: 0.875rem;
    color: var(--dtr-text-color-three);
    margin: 0;
}

.newsletter-form__privacy a {
    color: var(--dtr-primary-color);
    text-decoration: none;
}

.newsletter-form__privacy a:hover {
    text-decoration: underline;
}

/* ===== Single Blog Page Styles ===== */

/* Single Blog Page */
.single-blog-page {
    padding-top: 100px;
}

/* Blog Hero Section */
.blog-hero-section {
    padding: 60px 0;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dtr-text-color-three);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--dtr-primary-color);
}

.blog-hero-meta {
    margin-bottom: 25px;
}

.blog-hero-meta__details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--dtr-text-color-three);
}

.blog-hero-meta__details span {
    position: relative;
}

.blog-hero-meta__details span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: var(--dtr-primary-color);
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg,
        var(--dtr-primary-color) 0%,
        var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-excerpt {
    font-size: 1.25rem;
    color: var(--dtr-text-color-three);
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-hero-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-tag {
    padding: 6px 12px;
    background: rgba(var(--dtr-primary-color), 0.1);
    color: var(--dtr-primary-color);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(var(--dtr-primary-color), 0.2);
}

/* Blog Content Section */
.blog-content-section {
    padding: 60px 0;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-featured-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--dtr-shadow-sleek);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    border: 1px solid var(--dtr-glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.blog-content__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dtr-text-color-two);
}

.blog-content__text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dtr-primary-color);
}

.blog-content__text p {
    margin-bottom: 20px;
}

.blog-content__footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--dtr-border-color-main);
}

.blog-tags-section,
.blog-share-section {
    margin-bottom: 25px;
}

.blog-tags-section h4,
.blog-share-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin-bottom: 15px;
}

.blog-tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--dtr-border-color-main);
    background: transparent;
    color: var(--dtr-text-color-three);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    border-color: var(--dtr-primary-color);
    color: var(--dtr-primary-color);
    background: rgba(var(--dtr-primary-color), 0.1);
}

.share-btn i {
    font-size: 14px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.author-card,
.table-of-contents {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.author-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
    border: 3px solid var(--dtr-primary-color);
}

.author-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card__content {
    text-align: center;
}

.author-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin-bottom: 10px;
}

.author-card__bio {
    font-size: 0.9rem;
    color: var(--dtr-text-color-three);
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-card__social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.author-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(var(--dtr-primary-color), 0.1);
    border: 1px solid rgba(var(--dtr-primary-color), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dtr-primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.author-social-link:hover {
    background: var(--dtr-primary-color);
    color: white;
    transform: translateY(-2px);
}

.table-of-contents h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    margin-bottom: 15px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-link {
    color: var(--dtr-text-color-three);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-link:hover {
    color: var(--dtr-primary-color);
}

/* Related Articles Section */
.related-articles-section {
    padding: 60px 0;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-article-card {
    background: var(--dtr-glass-bg);
    border: 1px solid var(--dtr-glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--dtr-transition-smooth);
    backdrop-filter: var(--dtr-backdrop-blur);
    box-shadow: var(--dtr-shadow-sleek);
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dtr-shadow-hover);
    border-color: var(--dtr-primary-color);
}

.related-article-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.related-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-card__image img {
    transform: scale(1.05);
}

.related-article-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.related-article-card__content {
    padding: 20px;
}

.related-article-card__title {
    margin-bottom: 10px;
}

.related-article-card__title a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dtr-text-color-two);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-article-card__title a:hover {
    color: var(--dtr-primary-color);
}

.related-article-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dtr-text-color-three);
    margin-bottom: 15px;
}

.related-article-card__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--dtr-text-color-three);
}

.related-article-card__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dtr-primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.related-article-card__link:hover {
    gap: 10px;
    color: var(--dtr-primary-color-light);
}

.related-article-card__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.related-article-card__link:hover i {
    transform: translateX(3px);
}

[data-theme="light"] .bg-color-contrast {
    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #faf9ff 50%,
            #ffffff 100%);
    position: relative;
}

/* Enhanced section decorations */
[data-theme="light"] .dtr-section:not(#services):nth-child(even) {
    position: relative;
}

[data-theme="light"] .dtr-section:not(#services):nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
        rgba(139, 69, 19, 0.05) 0%,
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

[data-theme="light"] .dtr-section:not(#services):nth-child(odd)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
        rgba(139, 95, 191, 0.04) 0%,
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Services section specific decorations */
[data-theme="light"] #services::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
        rgba(139, 69, 19, 0.06) 0%,
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Smooth section transitions */
.dtr-section {
    position: relative;
    z-index: 2;
}

/* Remove default section spacer after hero */
.hero-section + .spacer-section {
    display: none;
}
.text-color-alt { color: var(--dtr-text-color-three); }
/*----------------------------------------*/
/*----- 4 Buttons -----*/
/*----------------------------------------*/
button, .dtr-btn, .dtr-form-btn, input[type="submit"], button[type="submit"], input[type="reset"], .wp-block-button__link { position: relative; width: auto; height: auto; padding: 15px 30px; border-width: var(--dtr-btn-border-width); border-style: solid; border-radius: var(--dtr-btn-radius); font-size: var(--dtr-btn-font-size, 19px); font-weight: var(--dtr-btn-font-weight); line-height: var(--dtr-btn-line-height); text-align: center; text-decoration: none; outline: none; cursor: pointer; -webkit-backface-visibility: hidden; -webkit-transition: all .3s ease; transition: all .3s ease; }
.dtr-btn--full-width input[type="submit"], .dtr-btn--full-width button { width: 100%; display: block; margin: 0; text-align: center; }
.dtr-btn--large { font-size: 24px; line-height: 32px; padding: 20px 50px 18px 50px; }
.dtr-btn--small { font-size: 14px; line-height: 18px; padding: 10px 15px 8px 15px; }
.dtr-header-btn { margin-left: 20px; }
/* btn radius */
.dtr-btn--square, button[type="submit"].dtr-btn--square { border-radius: var(--dtr-radius-square); }
.dtr-btn--rounded, button[type="submit"].dtr-btn--rounded { border-radius: var(--dtr-radius-rounded-medium); }
.dtr-btn--round, button[type="submit"].dtr-btn--round { border-radius: var(--dtr-radius-round); }
/* flex */
.dtr-btn, input[type="submit"], input[type="reset"] { display: inline-flex; align-items: center; flex-wrap: nowrap; justify-content: center; }
.dtr-btn__icon, .dtr-form-btn i { margin-left: 15px; font-weight: normal; }
.dtr-btn--icon-position-left { flex-direction: row-reverse; }
.dtr-btn--icon-position-left .dtr-btn__icon { margin-right: 15px; margin-left: 0; }
/* common */
.dtr-wrapping-link { display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: 99; }
/* colors */
.dtr-btn__text { color: inherit; }
.dtr-btn, input[type="submit"], button[type="submit"], input[type="reset"], .dtr-form-btn, #submit { background-size: 200%; background-color: var(--dtr-primary-color); background-image: -o-linear-gradient( left, var(--dtr-primary-color) 0%, var(--dtr-primary-color-light) 51%, var(--dtr-primary-color) 100% ); background-image: -webkit-gradient( linear, left top, right top, from(var(--dtr-primary-color)), color-stop(51%, var(--dtr-primary-color-light)), to(var(--dtr-primary-color)) ); background-image: linear-gradient( to right, var(--dtr-primary-color) 0%, var(--dtr-primary-color-light) 51%, var(--dtr-primary-color) 100% ); border-color: var(--dtr-btn-border-color); color: var(--dtr-btn-color); -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
.dtr-btn:hover, button[type="submit"]:hover, input[type="reset"]:hover, .dtr-form-btn:hover, #submit:hover { background-position: -100%; color: var(--dtr-btn-color); }
.dtr-btn--trans { background: none; background-color: transparent; color: var(--dtr-text-color-two); }
.dtr-btn--trans:hover, .dtr-btn--trans .dtr-btn__icon { background: none; color: var(--dtr-text-color-one); }
/*----------------------------------------*/
/*----- 5 Header -----*/
/*----------------------------------------*/
/*== Main header ==*/
#dtr-header-global {
    position: relative;
    position: fixed !important;
    left: 0;
    top: 0;
    right: 0;
    padding: 20px 50px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: transparent;
    z-index: 999;
    background-color: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
}

/* Header with scroll background */
#dtr-header-global.header-scrolled {
    background-color: var(--dtr-base-color-primary);
    backdrop-filter: blur(10px);
    border-color: var(--dtr-border-color-main);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Light theme header scroll background */
[data-theme="light"] #dtr-header-global.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-color: rgba(139, 69, 19, 0.1);
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.1);
}

/* Enhanced Dark theme header scroll background - Sleek Design */
[data-theme="dark"] #dtr-header-global.header-scrolled {
    background: var(--dtr-glass-bg);
    backdrop-filter: var(--dtr-backdrop-blur);
    border-color: var(--dtr-glass-border);
    box-shadow: var(--dtr-shadow-sleek);
}

/* ===== Enhanced Theme Toggle Button ===== */
.theme-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.1) 0%,
        rgba(139, 69, 19, 0.05) 100%);
    transition: all 0.3s ease;
    z-index: 0;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(139, 69, 19, 0.2);
}

.theme-toggle:hover::before {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.15) 0%,
        rgba(139, 69, 19, 0.08) 100%);
}

.theme-toggle:active {
    transform: translateY(0) scale(0.95);
    transition: all 0.15s ease;
}

/* Icon Container - Fixed Size */
.theme-toggle i {
    position: relative;
    z-index: 2;
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dtr-primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1 !important;
}

/* Light Mode Theme Toggle */
[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 69, 19, 0.1);
}

[data-theme="light"] .theme-toggle::before {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.05) 0%,
        rgba(139, 69, 19, 0.02) 100%);
}

[data-theme="light"] .theme-toggle i {
    color: #8B4513 !important;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 69, 19, 0.2);
}

/* Dark Mode Theme Toggle */
[data-theme="dark"] .theme-toggle {
    background: rgba(28, 28, 28, 0.8);
    border-color: rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .theme-toggle::before {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.12) 0%,
        rgba(139, 69, 19, 0.06) 100%);
}

[data-theme="dark"] .theme-toggle i {
    color: #CD853F !important;
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(32, 32, 32, 0.9);
    border-color: rgba(139, 69, 19, 0.3);
}

[data-theme="dark"] .theme-toggle.theme-auto i {
    background: linear-gradient(45deg, #F59E0B 50%, #60A5FA 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Auto Mode Special Styling */
.theme-toggle.theme-auto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #F59E0B 50%, #60A5FA 50%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.theme-toggle.theme-auto:hover::before {
    opacity: 0.3;
}

/* Animation for theme transitions */
.theme-toggle i {
    animation: themeIconPulse 0.3s ease-in-out;
}

@keyframes themeIconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .theme-toggle {
        width: 38px;
        height: 38px;
        margin-right: 0.5rem;
    }

    .theme-toggle i {
        font-size: 14px !important;
        width: 14px !important;
        height: 14px !important;
        line-height: 14px !important;
    }
}

/* Focus states for accessibility */
.theme-toggle:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(139, 69, 19, 0.3),
        0 6px 20px rgba(139, 69, 19, 0.15);
}

/* Prevent icon size changes from different FontAwesome classes */
.theme-toggle i.fa-sun,
.theme-toggle i.fa-moon,
.theme-toggle i.fa-circle-half-stroke,
.theme-toggle i.fas,
.theme-toggle i.far,
.theme-toggle i.fab {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
}
#dtr-header-global.header-fixed { border: 0; }
.dtr-header-global-content { display: flex; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.dtr-header-right { display: flex; align-items: center; }
/*logo*/
.dtr-logo { font-size: 24px; line-height: 24px; font-weight: 500; display: flex; align-items: center; }
.dtr-logo, .dtr-logo:hover { color: var(--dtr-text-color-two); }
.dtr-logo-subtext { margin-left: 10px; }
#dtr-header-global .logo-default, #dtr-header-global.header-fixed .logo-alt { display: flex !important; }
#dtr-header-global .logo-alt, #dtr-header-global.header-fixed .logo-default { display: none !important; }
.main-navigation { padding: 0; text-align: center; }
.main-navigation .sf-menu { margin: 0; }
/*== Page title ==*/
.dtr-page-title--section { position: relative; text-align: center; background-position: center center; z-index: 1; border-width: 0; border-style: solid; padding: 180px 0 100px 0; background-color: var(--dtr-base-color-secondary); }
.dtr-page-title--section .container { position: relative; z-index: 9; }
.dtr-page-title__heading { margin: 0; padding: 0; line-height: 1.1em; color: #bbbaa6; }
/*== Main menu ==*/
.main-navigation .sf-menu { margin: 0; }
.sf-menu, .sf-menu * { list-style: none; padding: 0; margin: 0; }
.sf-menu ul { position: absolute; display: none; top: 100%; z-index: 999; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border: 1px solid var(--dtr-border-color-main); border-radius: var(--dtr-radius-rounded); padding: 30px 0; margin-top: 0; left: -10px; }
.sf-menu ul ul { text-align: center; top: 0; left: 100%; margin-top: -31px; margin-left: 0; }
.sf-menu li { position: relative; float: left; padding: 0; margin: 0; }
.sf-menu ul li { display: block; min-width: 12em; width: 100%; white-space: nowrap; float: none; padding: 0; border: 0; }
.sf-menu li:hover > ul, .sf-menu li.sfHover > ul { display: block; }
.sf-menu li:hover { visibility: inherit; }
.sf-menu a { position: relative; display: block; text-align: center; padding: 5px 20px; border: 0; font-weight: 500; font-style: normal; font-size: 18px; line-height: 20px; }
.sf-menu li:last-child a::after, .sf-menu li li a::after { content: none; }
.sf-menu > li li.menu-item-has-children { position: relative; }
/*dropdown*/
.sf-menu .sub-menu li { padding: 0 10px; }
.sf-menu .sub-menu a { width: 100%; padding: 10px 20px; margin: 1px 0; box-sizing: border-box; text-align: left; border-width: 0; border-radius: var(--dtr-radius-round); }
.sf-menu .sub-menu li:first-child > a { border-top-width: 1px; }
.sf-menu > li li.menu-item-has-children > a::after { font-family: 'icomoon'; content: "\e93d"; position: absolute; top: 50%; right: 20px; -webkit-transform: translateY(-50%); transform: translateY(-50%); color: inherit; background: none; }
.sf-menu a .sf-sub-indicator, .sf-menu li li a .sf-sub-indicator, .sf-menu li li a .sf-sub-indicator:last-child { display: none; }
/*== Main navigation colors ==*/
/* main menu link */
.dtr-menu-default .sf-menu a { color: var(--dtr-text-color-three); }
.dtr-menu-default .sf-menu .sub-menu a:hover { background-color: var(--dtr-base-color-primary); }
.dtr-menu-default .sf-menu li a:hover, .dtr-menu-default .sf-menu li.current-menu-item a, .dtr-menu-default .sf-menu li.current-menu-ancestor > a, .dtr-menu-default .sf-menu .active { color: var(--dtr-text-color-two); }
/*dropdown link color*/
.dtr-menu-default .sf-menu li li a, .dtr-menu-default .sf-menu .sub-menu li.current-menu-item li a, .dtr-menu-default .sf-menu li.current-menu-item li a, .dtr-menu-default .sf-menu ul li.current-menu-item a, .dtr-menu-default .sf-menu li li.current-menu-ancestor > a:hover { color: #bbbaa6; }
/*dropdown hover active color*/
.dtr-menu-default .sf-menu .sub-menu li.current-menu-item li a:hover, .dtr-menu-default .sf-menu .sub-menu li.current-menu-item a, .dtr-menu-default .sf-menu li li.current-menu-ancestor > a, .dtr-menu-default .sf-menu ul li a:hover, .dtr-menu-default .sf-menu ul li:hover > a, .dtr-menu-default .sf-menu > li li.menu-item-has-children a:hover { color: var(--dtr-text-color-two); background-color: var(--dtr-base-color-primary); }
/*dropdown background color*/
.dtr-menu-default .sf-menu ul { background-color: var(--dtr-base-color-secondary); }
/*== Alt Navigation Colors ==*/
/* main menu link */
.dtr-menu-alt .sf-menu a { color: var(--dtr-text-color-three); }
.dtr-menu-alt .sf-menu .sub-menu a:hover { background-color: var(--dtr-base-color-primary); }
.dtr-menu-alt .sf-menu li a:hover, .dtr-menu-alt .sf-menu li.current-menu-item a, .dtr-menu-alt .sf-menu li.current-menu-ancestor > a, .dtr-menu-alt .sf-menu .active { color: var(--dtr-text-color-two); }
/*Dropdown link color*/
.dtr-menu-alt .sf-menu li li a, .dtr-menu-alt .sf-menu .sub-menu li.current-menu-item li a, .dtr-menu-alt .sf-menu li.current-menu-item li a, .dtr-menu-alt .sf-menu ul li.current-menu-item a, .dtr-menu-alt .sf-menu li li.current-menu-ancestor > a:hover { color: #bbbaa6; }
/*dropdown hover active color*/
.dtr-menu-alt .sf-menu .sub-menu li.current-menu-item li a:hover, .dtr-menu-alt .sf-menu .sub-menu li.current-menu-item a, .dtr-menu-alt .sf-menu li li.current-menu-ancestor > a, .dtr-menu-alt .sf-menu ul li a:hover, .dtr-menu-alt .sf-menu ul li:hover > a, .dtr-menu-alt .sf-menu > li li.menu-item-has-children a:hover { color: var(--dtr-text-color-two); background-color: var(--dtr-base-color-primary); }
/*dropdown background color*/
.dtr-menu-alt .sf-menu ul { background-color: var(--dtr-base-color-secondary); }
/*----------------------------------------*/
/*----- 6 Responsive header -----*/
/*----------------------------------------*/
#dtr-responsive-header { position: relative; padding: 15px 0; z-index: 999; border-bottom: 1px solid var(--dtr-border-color-main); }
#dtr-responsive-header .container { position: relative; }
#dtr-responsive-header .dtr-logo.logo-default { display: inline-block; }
#dtr-responsive-header, .slicknav_menu, #dtr-menu-button { display: none; }
#dtr-menu-button { display: block; padding: 0; z-index: 9999; position: absolute; left: auto; right: 12px; top: 50%; margin-top: -8px; }
#dtr-menu-button:focus { outline: none; }
.dtr-responsive-header-menu { position: relative; }
.slicknav_menu { position: relative; z-index: 999; }
/*== Mobile hamburger ==*/
.dtr-hamburger { display: inline-block; padding: 0; margin: 0; cursor: pointer; transition-timing-function: linear; transition-duration: .3s; transition-property: opacity, filter; text-transform: none; border: 0; overflow: visible; color: inherit; background-color: transparent; width: 30px; height: 25px; }
.dtr-hamburger-lines-wrapper { position: relative; display: inline-block; width: 30px; height: 25px; }
.dtr-hamburger-lines, .dtr-hamburger-lines:after, .dtr-hamburger-lines:before { position: absolute; right: 0; width: 30px; height: 2px; transition-timing-function: ease; transition-duration: .3s; transition-property: transform; }
.dtr-hamburger-lines:before { width: 30px; }
.dtr-hamburger-lines:after, .dtr-hamburger-lines:before { display: block; content: ''; }
.dtr-hamburger-lines { display: block; top: 0; transition: background-color 0s linear .13s; }
.dtr-hamburger-lines:before { top: 8px; transition: top .1s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19); }
.dtr-hamburger-lines:after { top: 16px; transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19); }
.dtr-hamburger.is-active .dtr-hamburger-lines { transition-delay: .22s; background-color: transparent!important; }
.dtr-hamburger.is-active .dtr-hamburger-lines:before { top: 0; transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .15s, transform .13s cubic-bezier(.215, .61, .355, 1) .22s; transform: translate3d(0, 10px, 0) rotate(45deg); }
.dtr-hamburger.is-active .dtr-hamburger-lines:after { top: 0; transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), transform .13s cubic-bezier(.215, .61, .355, 1) .22s; transform: translate3d(0, 10px, 0) rotate(-45deg); }
.dtr-hamburger.is-active:hover, .dtr-hamburger:hover { opacity: 1; }
/*== Slicknav menu ==*/
.slicknav_nav { border: 0; margin: 0; padding: 20px 15px; position: absolute; top: 14px; left: 0; right: 0; }
.slicknav_menu { padding: 0; margin: 0; border: 0; }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 5px; }
.slicknav_nav { clear: both; }
.slicknav_nav ul, .slicknav_nav li { display: block; margin-bottom: 0; }
.slicknav_nav ul, .slicknav_nav ul ul { margin: 0; padding: 0; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_item a, .slicknav_nav .slicknav_parent-link a { display: inline; }
.slicknav_menu::before, .slicknav_menu::after { content: ""; display: table; }
.slicknav_menu::after { clear: both; }
.slicknav_nav a { display: block; position: relative; outline: none; padding: 8px 0; margin: 0; text-align: left; text-decoration: none; }
.slicknav_nav li { position: relative; padding: 0; margin: 0; border-width: 0 0 1px 0; border-style: solid; }
.slicknav_nav li:last-child { padding: 0; border: 0; }
.slicknav_menu .slicknav_menutxt { font-weight: bold; text-shadow: none; }
.slicknav_nav a:hover, .slicknav_nav .slicknav_row:hover { border-radius: 0; background: transparent; }
.slicknav_menu .sub-menu { margin: 0; }
.slicknav_arrow { display: inline-block; position: absolute; right: 0; top: 50%; margin-top: -13px; width: 26px; height: 26px; border-radius: var(--dtr-radius-round); text-align: center; -webkit-transition: all .3s ease; transition: all .3s ease; background-color: transparent; color: var(--dtr-text-on-base-primary); }
.slicknav_arrow::after { font-family: 'icomoon'; content: "\e93d"; font-weight: normal; line-height: 26px; }
.slicknav_parent.slicknav_open .slicknav_arrow { transform: rotate(-90deg); }
.slicknav_parent.slicknav_open .slicknav_collapsed .slicknav_arrow { transform: none; }
.slicknav_nav .sub-menu { border-top: 1px solid #000; margin: 0; padding: 0; }
.slicknav_nav li a { position: relative; }
.slicknav_nav .sub-menu a { padding-left: 20px; }
.slicknav_nav .sub-menu a a { padding-left: 0; }
.slicknav_nav li a { padding-right: 40px; }
/*== Responsive menu colors ==*/
#dtr-responsive-header, .slicknav_nav, .slicknav_menu { background-color: var(--dtr-base-color-primary); }
.dtr-hamburger-lines, .dtr-hamburger-lines:after, .dtr-hamburger-lines:before { background-color: var(--dtr-text-color-two); }
.slicknav_nav li, .slicknav_nav .sub-menu { border-color: var(--dtr-border-color-main); }
.slicknav_nav, .slicknav_nav a, .slicknav_menu .slicknav_menutxt, .slicknav_menu .current-menu-item .sub-menu a { color: var(--dtr-text-color-one); }
.slicknav_nav a:hover, .slicknav_menu .current-menu-item a, .slicknav_menu .current-menu-item .sub-menu a:hover, .slicknav_nav .slicknav_row:hover, .slicknav_nav .slicknav_row:hover a { color: var(--dtr-text-color-two); }
/*----------------------------------------*/
/*----- 7 Footer -----*/
/*----------------------------------------*/
#dtr-footer-section { padding: 50px 0; text-align: center; border-style: solid; border-width: 1px 0 0 0; border-color: var(--dtr-border-color-main); color: #fcf4ed; }
#dtr-footer-section a { color: var(--dtr-text-color-three); }
#dtr-footer-section a:hover { color: var(--dtr-text-color-two); }
#dtr-footer-section .dtr-social a:hover { color: #fff; }
.copyright-list { list-style-type: none; padding: 0; margin: 0; }
.copyright-list li { display: inline-block; padding: 0; margin: 0 15px; }
/* take-to-top */
#take-to-top { display: block; position: fixed; bottom: 15px; right: 15px; width: 40px; height: 40px; line-height: 40px; z-index: 99; text-align: center; text-decoration: none; cursor: pointer; opacity: 0; visibility: hidden; border-radius: var(--dtr-radius-round); -webkit-transform: translateY(150px); -ms-transform: translateY(150px); transform: translateY(150px); background-color: var(--dtr-base-color-secondary); color: var(--dtr-text-on-base-secondary); }
#take-to-top::before { display: block; font-family: 'icomoon'; content: "\e93e"; font-size: 16px; line-height: 40px; color: inherit; }
#take-to-top.active { -webkit-animation: CustomInDown 1s; animation: CustomInDown 1s; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); opacity: 1; visibility: visible; }
 @-webkit-keyframes CustomInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -200px, 0);
transform:translate3d(0, -200px, 0)
}
100% {
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
@keyframes CustomInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -200px, 0);
transform:translate3d(0, -200px, 0)
}
100% {
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
/*----------------------------------------*/
/*----- 8 Elements -----*/
/*----------------------------------------*/
/*===== Blockquote =====*/
/*== Blockquote ==*/
blockquote { padding: 30px; margin: 0; border-style: solid; border-width: 0 0 0 3px; border-color: var(--dtr-base-color-tertiary); }
/* theme quote */
.dtr-quote blockquote { font-size: 1.2em; line-height: 1.55; padding: 0; margin: 0; border: 0; }
.dtr-quote blockquote p { padding: 0; margin: 0; }
.dtr-quote { padding: 50px; background-color: var(--dtr-base-color-secondary); }
.dtr-quote__content { padding-left: 30px; border-width: 0 0 0 3px; border-style: solid; border-color: var(--dtr-base-color-tertiary); }
.dtr-quote__content::before { display: inline-block; font-family: 'icomoon'; content: "\e99f"; font-size: 18px; margin-bottom: 25px; }
.dtr-quote__author { display: block; font-size: 1.4em; font-style: normal; margin: 25px 0 0 0; }
.dtr-quote__source { display: block; font-size: .9em; }
.dtr-quote__center-align { text-align: center; }
.dtr-quote__right-align { text-align: right; }
.dtr-quote__right-align .dtr-quote__content { padding-left: 0; padding-right: 30px; border-width: 0 5px 0 0; }
.dtr-quote__center-align .dtr-quote__content { padding-left: 0; padding-right: 0; border-width: 0; }
/*== Feature ==*/
.dtr-feature { display: flex; align-items: flex-start; margin-bottom: 30px; }
.dtr-feature:last-child { margin-bottom: 0; }
.dtr-feature--boxed { padding: 15px; border-radius: var(--dtr-radius-rounded); background-color: var(--dtr-base-color-two); }
.dtr-feature--boxed.dtr-radius--square { border-radius: var(--dtr-radius-square); }
.dtr-feature__subtext { margin: 0; padding: 0 0 5px 0; font-size: var(--dtr-font-size-sm); }
.dtr-feature__heading { margin: 0; padding: 0;  font-size: 20px; font-weight: 300; line-height: 1.4em; }
.dtr-feature__text { margin: 10px 0 0 0; }
.dtr-feature__link { display: inline-flex; align-items: center; margin-top: 20px; }
.dtr-feature__link::after { font-family: 'icomoon'; content: "\e967"; margin-left: 10px; }
/* icon vert align */
.dtr-feature--icon-vert-align-top { align-items: flex-start; }
.dtr-feature--icon-vert-align-center { align-items: center; }
/* icon align */
.dtr-feature--icon-align-right { flex-direction: row-reverse; }
.dtr-feature--icon-align-left .dtr-feature__content { margin-left: 30px; }
.dtr-feature--icon-align-right .dtr-feature__content { margin-right: 30px; }
.dtr-feature--icon-align-left.dtr-feature--size-small .dtr-feature__content { margin-left: 20px; }
.dtr-feature--icon-align-right.dtr-feature--size-small .dtr-feature__content { margin-right: 20px; }
.dtr-feature--icon-align-top, .dtr-feature--icon-align-top .dtr-feature__content, .dtr-feature--icon-align-top .dtr-feature__icon { display: block; }
.dtr-feature--icon-align-top .dtr-feature__content { margin-top: 20px; }
/* text align */
.dtr-feature--icon-align-top.dtr-feature--text-left { text-align: left; }
.dtr-feature--icon-align-top.dtr-feature--text-right { text-align: right; }
.dtr-feature--icon-align-top.dtr-feature--text-center { text-align: center; }
.dtr-feature--icon-align-top.dtr-feature--text-center .dtr-feature__icon { margin: 0 auto; }
.dtr-feature--icon-align-top.dtr-feature--text-right .dtr-feature__icon { display: inline-block; margin-left: auto; }
.dtr-feature--text-right { text-align: right; }
.dtr-feature--text-center { text-align: center; }
/* icon style */
.dtr-feature--style-default .dtr-feature__icon { font-size: 32px; }
.dtr-feature--style-circle .dtr-feature__icon, .dtr-feature--style-square .dtr-feature__icon, .dtr-feature--style-rounded .dtr-feature__icon { display: flex; align-items: center; justify-content: center; border: 1px solid var(--dtr-base-color-secondary); background-color: var(--dtr-base-color-secondary); color: var(--dtr-text-on-base-secondary); }
/* circle / square */
.dtr-feature--size-small .dtr-feature__icon { width: 60px; height: 60px; min-width: 60px; font-size: 24px; line-height: 1; }
.dtr-feature--size-medium .dtr-feature__icon { width: 80px; height: 80px; min-width: 80px; font-size: 32px; line-height: 1; }
.dtr-feature--size-large .dtr-feature__icon { width: 120px; height: 120px; min-width: 120px; font-size: 64px; line-height: 1; }
.dtr-feature--style-circle .dtr-feature__icon svg, .dtr-feature--style-square .dtr-feature__icon svg { display: block; }
.dtr-feature--style-circle .dtr-feature__icon { border-radius: 50%; }
.dtr-feature--style-rounded .dtr-feature__icon { border-radius: var(--dtr-radius-rounded); }
.dtr-feature--style-square .dtr-feature__icon { border-radius: 0; }
/* elementor align */
.elementor-align-center .dtr-feature__icon { margin: 0 auto; }
.elementor-align-right .dtr-feature__icon { margin-left: auto; }
/*== Icon + heading ==*/
.dtr-iconhead { display: inline-flex; align-items: center; }
.dtr-iconhead__icon { display: inline-flex; align-items: center; }
.dtr-iconhead__heading { margin: 0; padding: 0; }
.dtr-iconhead--align-left .dtr-iconhead__icon { margin-right: 10px; }
.dtr-iconhead--align-right { flex-direction: row-reverse; }
.dtr-iconhead--align-right .dtr-iconhead__icon { margin-left: 10px; }
.dtr-iconhead--style-default .dtr-iconhead__icon { font-size: 16px; }
.dtr-iconhead--style-circle .dtr-iconhead__icon, .dtr-iconhead--style-square .dtr-iconhead__icon { text-align: center; border: 1px solid rgba(187,179,158,0.4); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; min-width: 40px; border-radius: 50%; font-size: 16px; line-height: 1; }
.dtr-iconhead--style-square .dtr-iconhead__icon { border-radius: 0; }
.dtr-iconhead--style-circle .dtr-iconhead__icon svg, .dtr-iconhead--style-square .dtr-iconhead__icon svg { display: block; }
.dtr-iconhead--boxed { padding: 10px 20px; }
.dtr-iconhead--boxed a { color: inherit; }
/*== Icon list ==*/
.dtr-icon-list { margin: 0; padding: 0; }
.dtr-icon-list__list-item { position: relative; list-style-type: none; display: flex; flex-direction: row; align-items: center; align-content: center; padding: 0 0 15px 0; margin: 0 0 15px 0; font-size: 18px; border-bottom: 1px solid var(--dtr-border-color-main); }
.dtr-icon-list--no-border .dtr-icon-list__list-item { border: 0; padding: 0; }
.dtr-icon-list__list-item:last-child { margin: 0; border: 0; }
.dtr-icon-list__link { display: flex; }
.dtr-icon-list__icon { margin-right: 15px; }
/*== Theme heading ==*/
.dtr-heading__gradient, .dtr-section-heading {
    display: inline-flex;
    background-image: linear-gradient(135deg, var(--dtr-primary-color) 0%, var(--dtr-primary-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dtr-heading-light { color: var(--dtr-base-color-tertiary); }
/*== Recent post carousel ==*/
.dtr-post-block__content-wrapper { padding: 20px; background-color: var(--dtr-base-color-secondary); }
.dtr-post-block__content-wrapper, .dtr-post-block__img-wrapper, .dtr-post-block__img-wrapper img { border-radius: var(--dtr-radius-rounded); }
.dtr-post-block__img-wrapper { margin-bottom: 20px; }
.dtr-post-block__title, .dtr-post__button-wrap .dtr-post__button { margin: 0; padding: 0; border: 0; }
.dtr-post-block .dtr-meta-category { margin-bottom: 20px; }
.dtr-post-block__meta { margin-top: 50px; }
.dtr-post-block__excerpt { margin-top: 20px; }
.dtr-post__button-wrap { margin-top: 50px; }
.dtr-recentposts-carousel .dtr-meta-category { font-size: var(--dtr-font-size-sm); }
/*== About ==*/
.dtr-hero-about { display: flex; justify-content: flex-end; }
.dtr-about__img { position: relative; display: inline-flex; border-radius: 500px 500px 500px 500px; }
.dtr-about__img img { border-radius: 500px 500px 500px 500px; height: 425px; }
.dtr-about-title__left { position: absolute; left: 0; top: 70%; }
.dtr-about-title__right { position: absolute; right: 2rem; bottom: 5%; }
.dtr-about-title { position: relative; padding: 5px 10px; border-radius: 8px; background-color: var(--dtr-base-color-quaternary); font-size: var(--dtr-font-size-sm); font-weight: var(--dtr-font-weight-bold); color: var(--dtr-text-on-base-quaternary); }
.dtr-about-title::after { position: absolute; top: -22px; font-size: 16px; font-family: 'icomoon'; content: "\e95e"; color: #FDC000; }
.dtr-about-title__left .dtr-about-title::after { right: -15px; }
.dtr-about-title__right .dtr-about-title::after { left: -15px; transform: rotate(-90deg); }
@keyframes aboutCursorLeft {
0% {
transform:translate(0)
}
15% {
transform:translate(1rem, -4rem)
}
50% {
transform:translate(0)
}
75% {
transform:translate(-4rem, -5rem)
}
}
@keyframes aboutCursorRight {
0% {
transform:translate(0)
}
15% {
transform:translate(1rem, -5rem)
}
50% {
transform:translate(0)
}
75% {
transform:translate(-5rem, -6rem)
}
}
@keyframes aboutCursorLeftsm {
0% {
transform:translate(0)
}
15% {
transform:translate(1rem, -2rem)
}
50% {
transform:translate(0)
}
75% {
transform:translate(-2rem, -3rem)
}
}
@keyframes aboutCursorRightsm {
0% {
transform:translate(0)
}
15% {
transform:translate(1rem, -3rem)
}
50% {
transform:translate(0)
}
75% {
transform:translate(-3rem, -4rem)
}
}

.text-link {
    color: #0a53be !important;
}
@media (min-width: 993px) {
.dtr-aboutCursorLeft { animation: aboutCursorLeft 12s ease infinite; }
.dtr-aboutCursorRight { animation: aboutCursorRight 12s cubic-bezier(.40, .20, .50, 1.20) infinite; }
}

.hide {
    display: none;
}

@media (max-width: 992px) {
.dtr-about-title__left { position: absolute; left: 2rem; bottom: 18rem; }
.dtr-about-title__right { position: absolute; right: 2rem; bottom: 2rem; }
.dtr-aboutCursorLeft { animation: aboutCursorLeftsm 12s ease infinite; }
.dtr-aboutCursorRight { animation: aboutCursorRightsm 12s cubic-bezier(.40, .20, .50, 1.20) infinite; }
}
/*== number ==*/
.dtr-number-feature { position: relative; }
.dtr-number-feature--boxed { padding: 20px; background-color: var(--dtr-bg-color-section-contrast); border-radius: var(--dtr-radius-rounded); }
.dtr-number-feature__number { display: inline-flex; align-items: center; justify-content: center; border-radius: var(--dtr-radius-rounded-medium); font-size: 15px; line-height: 15px; font-weight: normal; z-index: 9; border: 1px solid var(--dtr-border-color-main); padding: 5px 10px; background-color: transparent; }
.dtr-number-feature__content { margin-top: 50px; }
.dtr-number-feature__heading { margin: 0; padding: 0; }
.dtr-number-feature__text { margin: 20px 0 0 0; }
.dtr-number-feature__link::after { font-family: 'icomoon'; content: "\e967"; font-size: 32px; font-weight: normal; }
.dtr-number-feature__link { display: inline-flex; position: absolute; right: -10px; top: -10px; transform: rotate(-45deg); }
.dtr-number-feature--boxed .dtr-number-feature__link { right: 20px; top: 5px; }
.dtr-number-feature:hover .dtr-number-feature__link { transform: rotate(0); }
/*== Testimonial ==*/
.dtr-testimonial { padding: 50px; background-color: var(--dtr-base-color-secondary); border-radius: var(--dtr-radius-rounded); }
.dtr-testimonial__content img { margin-top: 15px; }
.dtr-testimonial__client-info { display: flex; flex-direction: column; align-items: flex-start; }
.dtr-testimonial__client-name { margin: 0; padding: 0; }
.dtr-testimonial__client-job { margin: 0; padding: 0; font-size: .9em; }
.dtr-testimonial__client-info-wrapper { display: flex; flex-direction: row; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.dtr-testimonial__client-img-wrapper { position: relative; width: 70px; height: 70px; margin-left: 15px; }
.dtr-testimonial .dtr-testimonial__client-img, .dtr-testimonial .dtr-testimonial__client-img-wrapper img { width: 70px; height: 70px; border-radius: var(--dtr-radius-round); }
.dtr-testimonial__icon { display: block; margin-bottom: 20px; }
.dtr-testimonial__icon::before { font-family: 'icomoon'; content: "\e99f"; font-size: 18px; color: inherit; }
/*== Marquee ==*/
.dtr-marquee-wrapper { max-width: 100%; overflow: hidden; }
.dtr-marquee { white-space: nowrap; display: flex; align-items: center; font-size: 1.7em; animation-duration: 15s; animation-timing-function: linear; animation-iteration-count: infinite; animation-name: dtr-marquee; color: var(--dtr-text-color-three); }
.dtr-marquee-l { animation-direction: reverse; }
.dtr-marquee__text { margin: 0 75px 0 0; }
.dtr-marquee__icon { display: inline-flex; padding: 0; margin: 0 0 0 50px; }
@keyframes dtr-marquee {
0% {
 transform: translate3d(0, 0, 0);
}
100% {
 transform: translate3d(-50%, 0, 0);
}
}
/*== Timeline ==*/
.dtr-timeline { display: flex; align-items: center; margin-bottom: 30px; }
.dtr-timeline:last-child { margin-bottom: 0; }
.dtr-timeline__heading { margin: 0; padding: 0; color: var(--dtr-text-color-two); }
.dtr-timeline__heading-subtext { color: var(--dtr-text-color-one); }
.dtr-timeline__text { display: inline-flex; align-items: center; align-content: center; padding: 5px 10px; margin: 5px 0 0 0; border-radius: var(--dtr-radius-rounded-medium); font-size: var(--dtr-font-size-sm); line-height: 1em; border: 1px solid var(--dtr-border-color-main); color: var(--dtr-text-color-one); }
.dtr-timeline--icon-align-right { flex-direction: row-reverse; }
.dtr-timeline--icon-align-left .dtr-timeline__content { margin-left: 20px; }
.dtr-timeline--icon-align-right .dtr-timeline__content { margin-right: 20px; }
.dtr-timeline--style-default .dtr-timeline__icon { font-size: 32px; }
.dtr-timeline--style-circle .dtr-timeline__icon, .dtr-timeline--style-square .dtr-timeline__icon, .dtr-timeline--style-rounded .dtr-timeline__icon { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; min-width: 60px; font-size: 24px; line-height: 1; border: 0; background-color: var(--dtr-base-color-primary); color: var(--dtr-text-on-base-primary); }
.dtr-timeline--style-circle .dtr-timeline__icon, .dtr-timeline--style-square.dtr-timeline--size-small .dtr-timeline__icon { border-radius: 50%; }
.dtr-timeline--style-square .dtr-timeline__icon { border-radius: 0; }
.dtr-timeline--style-rounded .dtr-timeline__icon { border-radius: var(--dtr-radius-rounded); }
.dtr-timeline--style-circle .dtr-timeline__icon svg, .dtr-timeline--style-square .dtr-timeline__icon svg { display: block; }
.arrow { display: inline-flex; }
.arrow::after { font-family: 'icomoon'; content: "\e93d"; margin: 0 2px; color: inherit; }
/*== skills ==*/
.dtr-skills-wrapper { width: 100%; display: flex; flex-direction: row; }
.dtr-skills { text-align: center; flex: 1; margin: 0 10px; }
.dtr-skills:first-child { margin: 0 10px 0 0; }
.dtr-skills:last-child { margin: 0 0 0 10px; }
.dtr-skills__icon { display: flex; justify-content: center; font-size: 32px; }
.dtr-skills__content { padding: 20px; border-radius: var(--dtr-radius-rounded); background-color: var(--dtr-bg-color-section); }
.dtr-skills__heading { margin: 20px 0 0 0; padding: 0; }
.dtr-skills__number { margin: 30px 0 0 0; font-size: var(--dtr-font-size-sm); }
/*===== Counter =====*/
.dtr-counter { display: flex; justify-content: center; flex-direction: column; align-items: center; height: 100%; }
.dtr-counter-number, .dtr-counter-suffix { font-size: 48px; line-height: 1em; font-weight: 500; text-align: center; margin-bottom: 5px; color: var(--dtr-text-color-two); }
.dtr-counter-text { margin: 0; font-size: 20px; line-height: 1.2em; text-align: center; }
/*== Video ==*/
.dtr-video-popup { display: flex; align-items: center; }
.dtr-video-button { position: relative; display: inline-block; width: 100px; height: 100px; text-align: center; border-radius: 50%; z-index: 9; background-color: var(--dtr-base-color-primary); color: var(--dtr-text-on-base-primary); }
.dtr-video-button::after { font-family: 'icomoon'; content: "\e939"; font-size: 32px; vertical-align: middle; line-height: 100px; margin-left: 2px; color: inherit; }
.dtr-border-animation { width: 100%; height: 100%; position: absolute; top: 0; left: 0; border-width: 1px; border-style: solid; -webkit-border-radius: 100%; -khtml-border-radius: 100%; -moz-border-radius: 100%; -ms-border-radius: 100%; -o-border-radius: 100%; border-radius: 100%; -webkit-animation: pulse-border 4.5s linear 0s infinite; -ms-animation: pulse-border 4.5s linear 0s infinite; -o-animation: pulse-border 4.5s linear 0s infinite; animation: pulse-border 4.5s linear 0s infinite; -webkit-animation-play-state: running; -moz-animation-play-state: running; -o-animation-play-state: running; animation-play-state: running; opacity: 0; z-index: 9; }
.dtr-video-button:hover .dtr-border-animation { -webkit-animation-play-state: paused; -moz-animation-play-state: paused; -o-animation-play-state: paused; animation-play-state: paused }
.dtr-video-btn-text { padding-left: 10px; }
.dtr-video-button:hover { background-color: var(--dtr-base-color-primary); color: var(--dtr-text-on-base-primary); }
.dtr-border-animation.dtr-border-1 { -webkit-animation-delay: 0s; animation-delay: 0s; }
.dtr-border-animation.dtr-border-2 { -webkit-animation-delay: 1s; animation-delay: 1s; }
/* pulse border */
@-webkit-keyframes pulse-border {
0% {
-webkit-transform:scale(1);
transform:scale(1);
opacity:0
}
20% {
-webkit-transform:scale(1.6);
transform:scale(1.6);
opacity:1
}
50% {
-webkit-transform:scale(1.9);
transform:scale(1.9);
opacity:1
}
100% {
-webkit-transform:scale(2.3);
transform:scale(2.3);
opacity:0
}
}
@-moz-keyframes pulse-border {
0% {
-moz-transform:scale(1);
transform:scale(1);
opacity:0
}
20% {
-moz-transform:scale(1.6);
transform:scale(1.6);
opacity:1
}
40% {
-moz-transform:scale(1.9);
transform:scale(1.9);
opacity:1
}
100% {
-moz-transform:scale(2.3);
transform:scale(2.3);
opacity:0
}
}
@keyframes pulse-border {
0% {
-webkit-transform:scale(1);
-moz-transform:scale(1);
-o-transform:scale(1);
transform:scale(1);
opacity:0
}
20% {
-webkit-transform:scale(1.6);
-moz-transform:scale(1.6);
-o-transform:scale(1.6);
transform:scale(1.6);
opacity:1
}
40% {
-webkit-transform:scale(1.9);
-moz-transform:scale(1.9);
-o-transform:scale(1.9);
transform:scale(1.9);
opacity:1
}
100% {
-webkit-transform:scale(2.3);
-moz-transform:scale(2.3);
-o-transform:scale(2.3);
transform:scale(2.3);
opacity:0
}
}
/*===== portfolio grid =====*/
.dtr-portfolio-grid-2col, .dtr-portfolio-grid-3col, .dtr-portfolio-grid-4col, .dtr-portfolio-grid-5col { margin: 0 -10px; }
.dtr-portfolio-grid-2col.dtr-portfolio-compact, .dtr-portfolio-grid-3col.dtr-portfolio-compact, .dtr-portfolio-grid-4col.dtr-portfolio-compact, .dtr-portfolio-grid-5col.dtr-portfolio-compact { margin: 0; }
.dtr-portfolio-grid-2col .dtr-portfolio-item { width: 50%; padding: 0 10px; }
.dtr-portfolio-grid-3col .dtr-portfolio-item { width: 33.33333333%; padding: 0 10px; }
.dtr-portfolio-grid-4col .dtr-portfolio-item { width: 25%; padding: 0 10px; }
.dtr-portfolio-grid-5col .dtr-portfolio-item { width: 20%; padding: 0 10px; }
.dtr-portfolio-grid-2col.dtr-portfolio-compact .dtr-portfolio-item, .dtr-portfolio-grid-3col.dtr-portfolio-compact .dtr-portfolio-item, .dtr-portfolio-grid-4col.dtr-portfolio-compact .dtr-portfolio-item, .dtr-portfolio-grid-5col.dtr-portfolio-compact .dtr-portfolio-item { padding: 0; }
.dtr-portfolio-grid .dtr-portfolio-item { margin-bottom: 20px; }
.dtr-portfolio-compact .dtr-portfolio-item { margin-bottom: 0; }
/*== filter nav ==*/
.dtr-portfolio__head-wrapper { display: flex; align-items: center; align-content: center; justify-content: space-between; margin-bottom: 30px; }
.dtr-portfolio__main-title { margin: 0; }
.dtr-filter-nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.dtr-filter-nav li { padding: 0; margin: 0; display: inline-flex; list-style-type: none; }
.dtr-filter-nav a { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 7px 30px; margin: 0 0 0 10px; font-size: 18px; line-height: 24px; font-weight: var(--dtr-btn-font-weight); text-align: center; border: 1px solid var(--dtr-border-color-main); border-radius: var(--dtr-radius-round); background-color: transparent; color: var(--dtr-text-color-three); background-size: 200%; }
.dtr-filter-nav a:hover { color: var(--dtr-text-color-two); }
.dtr-filter-nav a.active { background-color: var(--dtr-primary-color); background-image: -o-linear-gradient( left, var(--dtr-primary-color) 0%, var(--dtr-primary-color-light) 51%, var(--dtr-primary-color) 100% ); background-image: -webkit-gradient( linear, left top, right top, from(var(--dtr-primary-color)), color-stop(51%, var(--dtr-primary-color-light)), to(var(--dtr-primary-color)) ); background-image: linear-gradient( to right, var(--dtr-primary-color) 0%, var(--dtr-primary-color-light) 51%, var(--dtr-primary-color) 100% ); color: var(--dtr-btn-hover-color); }
.dtr-filter-nav a:hover { background-position: -100%; }
.dtr-filter-nav a.active:hover { background-position: 0; }
/*== portfolio item ==*/
.dtr-portfolio-item { position: relative; float: left; overflow: hidden; }
.dtr-portfolio-item__wrapper { position: relative; overflow: hidden;  border-radius: var(--dtr-radius-rounded); padding: 20px; background-color: var(--dtr-base-color-secondary); }
.dtr-portfolio-item__img { overflow: hidden; border-radius: var(--dtr-radius-rounded-medium); }
.dtr-portfolio-item__img img { position: relative; width: 100%; height: auto; display: block; border-radius: var(--dtr-radius-rounded-medium); -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -o-transition: all 300ms linear; -ms-transition: all 300ms linear; transition: all 300ms linear; }
.dtr-portfolio-item:hover .dtr-portfolio-item__img img { -webkit-transform: scale(1.1); transform: scale(1.1); }
.dtr-portfolio-item__wrap-link { display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: 90; }
.dtr-portfolio-item__content { position: relative; padding: 15px 50px 0 0; }
.dtr-portfolio-item__heading { padding: 0; margin: 0; }
.dtr-portfolio-item__subheading { padding: 0; margin: 10px 0 0 0; line-height: var(--dtr-line-height-heading); }
.dtr-portfolio-item__link { position: absolute; left: auto; right: 0; top: 10px; z-index: 99; transform: rotate(-45deg); }
.dtr-portfolio-item__link::after { font-family: 'icomoon'; content: "\e967"; font-size: 32px; line-height: 32px; font-weight: normal; }
.dtr-portfolio-item:hover .dtr-portfolio-item__link { transform: rotate(0); }
/* portfolio single */
.dtr-portfolio-thumb, .dtr-portfolio-thumb img { border-radius: var(--dtr-radius-rounded); }
.portfolio-info__item { display: flex; flex-direction: row; align-items: center; margin-bottom: 10px; }
.portfolio-info__heading, .portfolio-info__item p { margin: 0; padding: 0; }
.portfolio-info__heading { margin-right: 5px; color: var(--dtr-text-color-one); }
/*== Custom - Social Widget ==*/
.dtr-social li { list-style: none; display: inline-block; text-align: center; margin: 0 5px; }
.dtr-social-circle li, .dtr-social-square li { margin: 2px; }
.text-left .dtr-social li:first-child { margin-left: 0; margin-right: 2px; }
.text-right .dtr-social li:last-child { margin-left: 2px; margin-right: 0; }
.dtr-social li a { display: flex; border-width: 1px; border-style: solid; border-radius: var(--dtr-radius-round); width: 40px; height: 40px; font-size: 16px; padding: 0; justify-content: center; align-items: center; }
.dtr-social-default .dtr-social li a { font-size: 24px; }
.dtr-social-share.dtr-social-default .dtr-social li a { font-size: 16px; width: 18px; height: 18px; margin-left: 15px; }
.dtr-social-share.dtr-social-default .dtr-social li:first-child a { margin-left: 0; }
.dtr-social a::before { color: inherit; }
.dtr-social-square .dtr-social li a { border-radius: var(--dtr-radius-square); }
/*== social icons ==*/
.dtr-social a::before, .dtr-social a i, .dtr-social-share-list li a::before { display: inline-block; font-family: 'icomoon'; vertical-align: middle; font-weight: var(--dtr-font-weight-normal); }
.dtr-social .dtr-facebook::before, .dtr-social-share-list .dtr-facebook-share::before { content: "\e97a"; }
.dtr-social .dtr-twitter::before, .dtr-social-share-list .dtr-twitter-share::before { content: "\e99d"; }
.dtr-social .dtr-pinterest::before, .dtr-social-share-list .dtr-pinterest-share::before { content: "\e985"; }
.dtr-social .dtr-google::before, .dtr-social-share-list .dtr-google-share::before { content: "\e97e"; }
.dtr-social .dtr-linkedin::before, .dtr-social-share-list .dtr-linkedin-share::before { content: "\e980"; }
.dtr-social .dtr-instagram::before, .dtr-social-share-list .dtr-instagram-share::before { content: "\e97f"; }
.dtr-social .dtr-meta::before { content: "\e984"; }
.dtr-social .dtr-threads::before { content: "\e995"; }
.dtr-social .dtr-behance::before { content: "\e975"; }
.dtr-social .dtr-vimeo::before { content: "\e999"; }
.dtr-social .dtr-mail::before { content: "\e962"; }
.dtr-social .dtr-youtube::before { content: "\e99e"; }
.dtr-social .dtr-dribbble::before { content: "\e977"; }
.dtr-social .dtr-whatsapp::before { content: "\e99c"; }
.dtr-social .dtr-telegram::before { content: "\e994"; }
.dtr-social .dtr-dropbox::before { content: "\e978"; }
.dtr-social .dtr-messenger::before { content: "\e97b"; }
.dtr-social .dtr-medium::before { content: "\e983"; }
.dtr-social .dtr-mastodon::before { content: "\e982"; }
.dtr-social a:focus { outline: none; }
.dtr-social-default .dtr-social li a { border-color: transparent; }
.dtr-social-with-bg .dtr-social li a { background-color: var(--dtr-base-color-secondary); border-color: var(--dtr-base-color-secondary); color: var(--dtr-text-on-base-secondary); }
/*===== preloader =====*/
.dtr-preloader { width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; margin: auto; opacity: 1; -webkit-transition: linear .3s ease; -moz-transition: linear .3s ease; transition: linear .3s ease; z-index: 9999; background-color: var(--dtr-bg-color-section-contrast); }
.dtr-preloader .dtr-preloader-inner { width: 100vw; height: 100vh; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; overflow: hidden; }
.dtr-loader, .dtr-loader:before, .dtr-loader:after { width: 1.5em; height: 1.5em; border-radius: 50%; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation: loadtwinkle 1.8s infinite ease-in-out; animation: loadtwinkle 1.8s infinite ease-in-out; }
.dtr-loader { position: relative; font-size: 10px; text-indent: -9999em; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0); -webkit-animation-delay: -0.12s; animation-delay: -0.12s; }
.dtr-loader:before, .dtr-loader:after { content: ''; position: absolute; top: 0; }
.dtr-loader:before { left: -2.5em; -webkit-animation-delay: -0.30s; animation-delay: -0.30s; }
.tmp-logo {
    border-radius: 34%;
}
.dtr-loader:after { left: 2.5em; }
 @-webkit-keyframes loadtwinkle {
 0%, 80%, 100% {
 box-shadow: 0 2.5em 0 -1.2em var(--dtr-base-color-primary);
}
 40% {
 box-shadow: 0 2.5em 0 0 var(--dtr-base-color-primary);
}
}
 @keyframes loadtwinkle {
 0%, 80%, 100% {
 box-shadow: 0 2.5em 0 -1.2em var(--dtr-base-color-primary);
}
 40% {
 box-shadow: 0 2.5em 0 0 var(--dtr-base-color-primary);
}
}
/*----------------------------------------*/
/*----- 9 Forms -----*/
/*----------------------------------------*/
form { margin: 0; padding: 0; z-index: 0; }
form p { margin: 0; padding: 0; }
label { width: 100%; height: auto; font-size: 16px; line-height: 1.2; font-weight: var(--dtr-font-weight-bold); margin-bottom: 10px; }
select, textarea, input { position: relative; display: block; width: 100%; padding: 10px 15px; margin: 0 0 10px 0; border-width: var(--dtr-input-border-width); border-style: solid; border-radius: var(--dtr-input-border-radius); font-weight: var(--dtr-font-weight-normal); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
select { background-image: url(../images/select-arrow-dark.png); background-repeat: no-repeat; background-position: top 50% right 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; padding: 10px 0; }
input[type=radio], input[type=checkbox] { margin: 0 10px 0 0; vertical-align: middle; width: auto; display: inline-block; }
textarea, #commentform textarea { width: 100% !important; height: auto; border-radius: var(--dtr-input-border-radius); }
select, textarea, input, input[type="search"] { background-color: var(--dtr-input-bg); border-color: var(--dtr-input-border-color); color: var(--dtr-input-color); }
select:focus, textarea:focus, input:focus { outline: none; border-color: var(--dtr-border-color-primary); }
label, option { color: var(--dtr-text-color-one); }
form label.error { font-size: .85em; line-height: 1; font-weight: var(--dtr-font-weight-normal); color: #dc3232; }
.dtr-form-field { margin-bottom: 25px; }
.antispam { display: none; }
.success-msg { margin-top: 10px; padding: 15px; border-radius: var(--dtr-radius-rounded-sm); background-color: var(--dtr-bg-gray); }
/* placeholder */
::-webkit-input-placeholder {
 color: var(--dtr-text-color-one);
 opacity: 0.5;
}
:-moz-placeholder {
 color: var(--dtr-text-color-one);
 opacity: 0.5;
}
::-moz-placeholder {
 color: var(--dtr-text-color-one);
 opacity: 0.5;
}
:-ms-input-placeholder {
 color: var(--dtr-text-color-one);
 opacity: 0.5;
}
/* form colors */
select, textarea, input, input[type="search"] { background-color: var(--dtr-input-bg); border-color: var(--dtr-input-border-color); color: var(--dtr-input-color); }
select:focus, textarea:focus, input:focus { border: 1px solid var(--dtr-input-focus-border-color); }
/*----------------------------------------*/
/*----- 10 Blog -----*/
/*----------------------------------------*/
.dtr-post-item__content-wrapper { padding: 20px; border: 0 solid var(--dtr-border-color-main); border-radius: var(--dtr-radius-rounded); background-color: var(--dtr-base-color-secondary); }
.dtr-entry-thumb, .dtr-entry-thumb img { border-radius: var(--dtr-radius-rounded); }
.dtr-archive-post-title { font-size: 36px; }
/*== meta ==*/
.dtr-meta { display: flex; align-items: center; align-content: center; flex-direction: row; flex-wrap: wrap; font-size: var(--dtr-font-size-sm); }
.text-center.dtr-meta { justify-content: center; }
.text-right.dtr-meta { justify-content: flex-end; }
.dtr-meta-item { margin: 0 20px 0 0; display: inline-flex; align-items: center; }
.dtr-entry-meta { margin: 30px 0 20px 0; }
.dtr-meta-item:last-child { margin-right: 0; }
.dtr-meta-item::before { display: inline-flex; color: var(--dtr-text-color-three); }
.dtr-meta-author::before { font-family: 'icomoon'; content: "\e952"; font-size: 16px; margin-right: 10px; }
.dtr-meta-date::before { font-family: 'icomoon'; content: "\e958"; font-size: 16px; margin-right: 10px; }
.dtr-meta a { color: inherit; }
.dtr-meta a:hover { color: var(--dtr-text-color-two); }
/*== category ==*/
.dtr-meta-category { display: flex; }
.dtr-meta-category a { padding: 7px 15px; margin: 0; border: 1px solid var(--dtr-border-color-main); border-radius: var(--dtr-radius-rounded-medium); background-color: transparent; }
.dtr-single-category { margin-bottom: 30px; }
.dtr-entry-meta .dtr-meta-category { margin-right: 15px; }
/*== single post ==*/
.dtr-single-post__img, .dtr-single-post__img img { border-radius: var(--dtr-radius-rounded); overflow: hidden; }
.dtr-single-post__img { margin-bottom: 30px; }
.dtr-single-post__meta { margin-bottom: 20px; }
/*== Single post nav ==*/
.dtr-single-post-nav { display: flex; justify-content: space-between; align-items: center; max-width: 100%; margin: 50px 0 0 0; }
.dtr-single-nav-prev { width: 50%; padding-right: 10px; }
.dtr-single-nav-next { width: 50%; padding-left: 10px; }
.dtr-single-nav-text a { display: flex; align-items: center; }
.dtr-single-nav-next a { justify-content: flex-end; }
.dtr-single-nav-prev a::before, .dtr-single-nav-next a::after { width: 40px; height: 40px; display: inline-flex; padding: 0; margin: 0; border: 0; justify-content: center; align-items: center; border-radius: var(--dtr-radius-pagination); font-size: 16px; font-weight: var(--dtr-font-weight-normal); background-color: var(--dtr-base-color-secondary); }
.dtr-single-nav-prev a::before { font-family: 'icomoon'; content: "\e968"; font-size: 32px; }
.dtr-single-nav-next a::after { font-family: 'icomoon'; content: "\e967"; font-size: 32px; }
.dtr-single-nav-prev a::before { margin-right: 10px; }
.dtr-single-nav-next a::after { margin-left: 10px; }
/*----------------------------------------*/
/*----- 11 Misc -----*/
/*----------------------------------------*/
/*== Swiper ==*/
.dtr-slider-has-arrows, .swiper.dtr-slider-has-arrows { padding-bottom: 80px; }
.dtr-slider-has-dots, .swiper.dtr-slider-has-dots { padding-bottom: 50px; }
/*== Swiper ==*/
.dtr-swiper .dtr-swiper-button { background-image: none; width: 40px; height: 40px; margin-top: -20px; border: 1px solid #eee; border-radius: var(--dtr-radius-round); text-align: center; opacity: 1; top: auto; bottom: 0; background-color: var(--dtr-base-color-secondary); border-color: var(--dtr-base-color-secondary); color: var(--dtr-text-on-base-secondary); }
.dtr-swiper .dtr-swiper-button:hover { background-color: var(--dtr-base-color-tertiary); border-color: var(--dtr-base-color-tertiary); color: var(--dtr-text-on-base-tertiary); }
.dtr-swiper:hover .dtr-swiper-button { opacity: 1; }
.dtr-swiper .dtr-swiper-button.swiper-button-disabled, .dtr-swiper:hover .dtr-swiper-button.swiper-button-disabled { opacity: 0; }
.dtr-swiper .swiper-button-next::after, .dtr-swiper .swiper-button-prev::after { font-family: 'icomoon'; font-size: 32px; line-height: 30px; color: inherit; }
.dtr-swiper .swiper-button-prev::after, .dtr-swiper.swiper-container-rtl .swiper-button-next::after { content: "\e968"; }
.dtr-swiper .swiper-button-next::after, .dtr-swiper.swiper-container-rtl .swiper-button-prev::after { content: "\e967"; }
.dtr-swiper .swiper-button-prev, .dtr-swiper.swiper-container-rtl .swiper-button-next { left: 50%; right: auto; margin-left: -43px; }
.dtr-swiper .swiper-button-next, .dtr-swiper.swiper-container-rtl .swiper-button-prev { right: 50%; left: auto; margin-right: -43px; }
/*bullet*/
.dtr-swiper .swiper-pagination { width: 100%; bottom: 0; text-align: center; }
.dtr-swiper .swiper-pagination-bullet { position: relative; width: 10px; height: 10px; opacity: 1; margin: 0 10px; background-color: var(--dtr-border-color-main); }
.dtr-swiper .swiper-pagination-bullet:hover, .dtr-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active { background-color: var(--dtr-base-color-tertiary); }
/*===== vbox =====*/
.vbox-close { top: 20px; right: 20px; }
/*===== 404 error page =====*/
.error-404 { text-align: center; margin-top: 80px; }
.subtext-404 { margin-top: 30px; font-size: 40px; }
.text-404 { font-size: 20px; }
.heading-404 { font-size: 8em; line-height: 1em; margin-bottom: 30px; }
.link-404 { margin-top: 30px; }

/*===== bootstrap overridde for smooth scroll =====*/
/* default: smooth */
@media (prefers-reduced-motion:no-preference) {
:root { scroll-behavior: auto }
}
/*----------------------------------------*/
/*----- 12 Common  -----*/
/*----------------------------------------*/
a:link, .dtr-nav a, #dtr-header-global, .dtr-form-btn, input, select, textarea, .dtr-swiper-button, .wp-block-categories-list li a::after, .wp-block-archives-list li a::after, .widget_nav_menu li, .elementor-widget-wp-widget-nav_menu li, .dtr-media-link, .dtr-search-modal, .swiper-pagination-bullet, .dtr-nav__button a, .post-page-numbers, .dtr-feature--boxed, .dtr-feature__icon, .dtr-icon-list__icon, .dtr-icon-list__list-text, .dtr-icon-list__list-item, .dtr-icon-list__icon, .dtr-single-nav-prev a::before, .dtr-single-nav-next a::after { -webkit-transition: all .3s ease; transition: all .3s ease; }
/*== common gradient ==*/
.dtr-number-feature__number, button.dtr-search-submit, .dtr-search-submit, .wp-block-search .wp-block-search__button, #take-to-top, .dtr-meta-category a, .dtr-social-with-bg .dtr-social li a, .dtr-meta-category a, .wp-block-tag-cloud a, .dtr-meta-tags a { -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
.dtr-number-feature:hover .dtr-number-feature__number, button.dtr-search-submit, .dtr-search-submit, .wp-block-search .wp-block-search__button, .dtr-social-with-bg .dtr-social li a:hover, #take-to-top:hover, .dtr-post-block:hover .dtr-meta-category a, .dtr-meta-category a:hover, .wp-block-tag-cloud a:hover, .dtr-meta-tags a:hover, .dtr-single-nav-prev:hover a::before, .dtr-single-nav-next:hover a::after, .dtr-nav__button a:hover, .page-numbers.current, .dtr-single-nav-prev:hover a::before, .dtr-single-nav-next:hover a::after, .post-page-numbers:hover, .post-page-numbers.current, .dtr-reply a:hover { background-size: 200%; background-color: var(--dtr-primary-color); background-image: -o-linear-gradient( left, var(--dtr-primary-color) 0%, var(--dtr-primary-color-light) 51%, var(--dtr-primary-color) 100% ); background-image: -webkit-gradient( linear, left top, right top, from(var(--dtr-primary-color)), color-stop(51%, var(--dtr-primary-color-light)), to(var(--dtr-primary-color)) ); background-image: linear-gradient( to right, var(--dtr-primary-color) 0%, var(--dtr-primary-color-light) 51%, var(--dtr-primary-color) 100% ); border-color: var(--dtr-btn-border-color); color: var(--dtr-btn-color); }
.dtr-number-feature__number, #take-to-top, .dtr-social-with-bg .dtr-social li a { background-position: -100%; }
.dtr-number-feature:hover .dtr-number-feature__number, #take-to-top:hover, .dtr-social-with-bg .dtr-social li a:hover, .dtr-post-block:hover .dtr-meta-category a, .wp-block-tag-cloud a:hover, .dtr-meta-tags a:hover, .dtr-single-nav-prev:hover a::before, .dtr-single-nav-next:hover a::after, .dtr-nav__button a:hover, .page-numbers.current, .dtr-single-nav-prev:hover a::before, .dtr-single-nav-next:hover a::after, .post-page-numbers:hover, .post-page-numbers.current, .dtr-reply a:hover { background-position: -200%; }
#take-to-top:hover:before { color: var(--dtr-btn-color); }
