
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v13-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v13-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/inter-v13-latin-800.woff2') format('woff2');
}


:root {
    --djt-color-bg: #F0F4F8;
    --djt-color-text: #2C3E50;
    --djt-color-accent: #2C3E50;
    --djt-color-accent-dark: #2980B9;
    --djt-bg-color-accent: #db3434;
    --djt-color-white: #FFFFFF;
    --djt-font-main: 'Inter', sans-serif;
    --djt-shadow-soft: 0 10px 30px -10px rgba(44, 62, 80, 0.1);
}


h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }


:where(section, article) h1 {
    font-size: 2.5rem;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: sans-serif; 
}

body {
    background-color: var(--djt-color-bg);
    color: var(--djt-color-text);
    font-family: var(--djt-font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}


.djt-icon-fix-zyn {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    min-height: 50px;
    object-fit: contain;
}



.djt-w-limit-zyn {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.zmh-flex-c-djx {
    display: flex;
    align-items: center;
    justify-content: center;
}

.djt-grid-3-zyn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


.zmh-head-wrapper-djx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--djt-shadow-soft);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.djt-top-level-zmh {
    width: 100%;
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.zmh-head-wrapper-djx.scrolled .djt-top-level-zmh {
    padding: 10px 0;
}


.djt-partner-bar-zyn {
    width: 100%;
    background-color: var(--djt-color-text);
    color: var(--djt-color-white);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 0;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.djt-partner-bar-zyn::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--djt-color-accent);
    border-radius: 50%;
}

.djt-nav-flex-zyn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.djt-logo-zmh {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--djt-color-accent);
    text-decoration: none;
    letter-spacing: -0.5px;
}


.zmh-ham-btn-djx {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.zmh-ham-line-zyn {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--djt-color-text);
    transition: 0.3s;
}


.djt-mob-overlay-zmh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--djt-color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.djt-mob-overlay-zmh.active {
    opacity: 1;
    visibility: visible;
}

.djt-mob-link-djx {
    font-size: 1.8rem;
    color: var(--djt-color-text);
    text-decoration: none;
    margin: 15px 0;
    font-weight: 700;
}


.djt-hero-sec-zmh {
    position: relative;
    padding-bottom: 40px;
    min-height: 600px; 
}

@media (max-width: 768px) {
    .djt-hero-sec-zmh {
        min-height: auto;
    }
}

.djt-hero-slide-zyn {
    display: none;
    width: 100%;
    animation: fadeEffect 1s ease-in-out;
}

.djt-hero-slide-zyn.active {
    display: block;
}

.djt-hero-content-djx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

@media (max-width: 768px) {
    .djt-hero-content-djx {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .djt-hero-text-zmh h1 {
        font-size: 1.8rem;
    }
}

.djt-hero-text-zmh {
    flex: 1;
}

.djt-hero-text-zmh h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--djt-color-text);
}

.djt-hero-img-wrap-zyn {
    flex: 1;
    width: 100%;
    background: #eef2f5; 
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 3/2;
}

.djt-hero-img-obj-djx {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes fadeEffect {
    from {opacity: 0;} 
    to {opacity: 1;}
}

.djt-anim-fade-up-zyn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.djt-anim-fade-up-zyn.visible {
    opacity: 1;
    transform: translateY(0);
}


.djt-card-zmh {
    background: var(--djt-color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--djt-shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.djt-card-zmh:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.djt-card-title-djx {
    margin: 15px 0;
    font-size: 1.25rem;
    color: var(--djt-color-text);
}

.djt-act-btn-zyn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--djt-color-accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}


.djt-srv-img-box-zyn {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.djt-srv-thumb-djx {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.djt-card-zmh:hover .djt-srv-thumb-djx {
    transform: scale(1.05);
}


.djt-mob-foot-fixed-zmh {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
}

@media (max-width: 768px) {
    .djt-mob-foot-fixed-zmh {
        display: flex;
    }
    body {
        padding-bottom: 60px;
    }
}

.djt-mob-foot-btn-djx {
    flex: 1;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.djt-btn-wa-zyn { background-color: #075E54; }
.djt-btn-call-zyn { background-color: var(--djt-color-text); }

.djt-scroll-top-zmh {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--djt-color-text);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1400;
    border: none;
}

.djt-page-head-zmh {
    text-align: center;
    padding: 10px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}


.djt-slider-box-fix {

    background-color: rgba(44, 62, 80, 0.85); 
    

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    
    color: #ffffff !important;

    padding: 12px 24px;
    border-radius: 12px;
    

    display: inline-block;
    width: fit-content;
    line-height: 1.4;
    

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.15);
}


.djt-slider-box-fix span {
    color: #63C2DE !important;
    font-weight: 700;
}