body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #000;
    color: #fff;
}




/* ────────────────────────────────────────────────
   Hero Section with hr-our-de- prefix
───────────────────────────────────────────────── */

.hr-our-de-hero-section {
    margin: 100px auto 60px;
    padding: 80px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.hr-our-de-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Small golden gradient subtitle */
.hr-our-de-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 1.4rem 0;
    background: linear-gradient(90deg, #d4af37, #f0d082, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main big title */
.hr-our-de-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    margin: 0 0 2.5rem 0;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hr-our-de-highlight {
    color: transparent;
    -webkit-text-stroke: 1.5px #d4af37;
    text-stroke: 1.5px #d4af37;
    background: linear-gradient(90deg, #d4af37, #f0d082, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

/* Shine animation for the highlighted word */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Buttons wrapper */
.hr-our-de-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hr-our-de-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.1rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Golden 3D gradient button */
.hr-our-de-btn-primary {
    background: linear-gradient(135deg, #b8860b, #d4af37, #eec97f, #d4af37, #b8860b);
    background-size: 300% 300%;
    color: #000;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.45),
        inset 0 -4px 12px rgba(0,0,0,0.4),
        inset 0 4px 8px rgba(255,255,255,0.25);
    border: none;
    animation: gradientFlow 6s ease infinite;
}

.hr-our-de-btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 14px 35px rgba(212, 175, 55, 0.6),
        inset 0 -6px 15px rgba(0,0,0,0.35);
}

/* Outline button */
.hr-our-de-btn-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.hr-our-de-btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

/* Gradient animation */
@keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ──────────────── Responsive ──────────────── */
@media (max-width: 768px) {
    .hr-our-de-hero-section {
        margin: 70px auto 40px;
        padding: 60px 15px;
    }

    .hr-our-de-title {
        font-size: clamp(2.4rem, 8vw, 4.2rem);
    }

    .hr-our-de-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }

    .hr-our-de-btn {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hr-our-de-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .hr-our-de-title {
        line-height: 1.1;
    }
}





#our-de-p-main-section {
    padding: 30px 20px;
    max-width: 1600px;
    margin: 50px auto;
}

/* Filter Buttons */
.our-de-p-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
}

.our-de-p-filter-btn {
    background: #0f0f0f;
    border: 1px solid transparent;
    border-image: linear-gradient(90deg, #d4af37, #b8860b) 1;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.our-de-p-filter-btn i {
    font-size: 28px;
    color: #9b9b9b;
    margin-bottom: 10px;
}

.our-de-p-filter-btn span {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.our-de-p-filter-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

/* Sections */
section {
    margin-bottom: 100px;
}

.our-de-p-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.our-de-p-header h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.our-de-p-nav {
    display: flex;
    background: #111;
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.6), inset 0 2px 6px rgba(212,175,55,0.25);
}

.our-de-p-nav button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 14px;
    transition: all 0.3s ease;
}

.our-de-p-nav button:hover {
    color: #fff;
    transform: scale(1.15);
}

/* Slider */
.our-de-p-slider {
    overflow: hidden;
    position: relative;
}

.our-de-p-cards-container {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.our-de-p-card {
    flex: 0 0 450px;
    height: 280px;
    margin-right: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.7);
    background: #111;
    transition: transform 0.4s ease;
}

.our-de-p-card:last-child {
    margin-right: 0;
}

.our-de-p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.our-de-p-card:hover img {
    transform: scale(1.08);
}

.our-de-p-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-de-p-card:hover .our-de-p-overlay {
    opacity: 1;
}

.our-de-p-btn {
    background: rgba(255,255,255,0.95);
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.our-de-p-btn:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .our-de-p-card {
        flex: 0 0 380px;
        height: 240px;
        margin-right: 18px;
    }
}

@media (max-width: 768px) {
    .our-de-p-card {
        flex: 0 0 85vw;
        height: 210px;
        margin-right: 15px;
    }

    .our-de-p-filters {
        gap: 12px;
    }

    .our-de-p-filter-btn {
        padding: 12px 18px;
    }

    .our-de-p-header h2 {
        font-size: 26px;
    }

    .our-de-p-nav button {
        font-size: 18px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .our-de-p-card {
        height: 180px;
    }
}