/* =========================================
           1. LUXURY BRAND VARIABLES
           ========================================= */

:root {
    /* Brand Colors */
    --duha-dark: #0f0f0f;
    /* Pitch Black for Contrast */
    --duha-maroon: #5C140C;
    /* Brand Core (Deep Red) */
    --duha-gold: #C5A065;
    /* Metallic Gold Accent */
    --duha-white: #ffffff;
    /* Typography */
    --font-nav: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    /* Transitions */
    --ease-lux: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* =========================================
           2. GLOBAL RESET
           ========================================= */

body {
    font-family: var(--font-nav);
    background-color: #f9f9f9;
}

body,
html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}





/* HERO HEADER CONTAINER */
.page-header {
    position: relative;
    height: 60vh;
    /* Shorter than homepage slider */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

/* BACKGROUND IMAGE WITH PARALLAX */
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/new-banners/about-ban.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Parallax Effect */
    animation: zoomHeader 20s infinite alternate;
}

@keyframes zoomHeader {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* DARK OVERLAY */
.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(92, 20, 12, 0.6));
    /* Maroon tint */
    z-index: 1;
}

/* CONTENT */
.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.3s;
}

.page-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

/* BREADCRUMB */
.breadcrumb-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.9s;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-list li {
    color: #fff;
}

.breadcrumb-list li a {
    color: var(--duha-gold);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-list li a:hover {
    color: #fff;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ANIMATIONS */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-title {
        font-size: 3rem;
    }

    .page-header {
        height: 50vh;
    }

    .page-header-bg {
        background-attachment: scroll;
    }

    /* Mobile fix */
}




#duha-story {
    padding: 100px 0;
    background-color: #fff;
}

/* HEADER */
.story-header {
    margin-bottom: 40px;
}

.story-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--duha-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--duha-dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

/* CONTENT */
.story-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--duha-maroon);
    font-style: italic;
    border-left: 3px solid var(--duha-gold);
    padding-left: 20px;
    margin: 30px 0;
}

/* IMAGE COMPOSITION */
.story-img-wrapper {
    position: relative;
    padding-top: 50px;
    padding-right: 50px;
}

.img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Decorative Frame */
.img-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--duha-gold);
    z-index: 0;
    transform: translate(30px, -30px);
    opacity: 0.5;
}

/* TIMELINE STRIP */
.timeline-row {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: -45px;
    /* Aligns with border-top */
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--duha-gold);
    border-radius: 50%;
}

.t-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--duha-maroon);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.t-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .story-img-wrapper {
        padding: 0;
        margin-bottom: 50px;
    }

    .img-frame {
        display: none;
    }

    .timeline-row {
        gap: 30px;
    }

    .timeline-item::after {
        display: none;
    }
}



#duha-values {
    padding: 100px 0;
    background-color: var(--duha-bg-light);
    position: relative;
}

/* HEADER */
.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--duha-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.values-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--duha-dark);
    margin: 0;
    font-weight: 700;
}

/* CARD DESIGN */
.value-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 4px solid transparent;
    /* Hidden border initially */
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

/* Icon Circle */
.value-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 101, 0.1);
    /* Faint Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s ease;
    color: var(--duha-gold);
    font-size: 2rem;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--duha-dark);
    font-weight: 700;
    transition: 0.3s;
}

.value-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Watermark Number */
.value-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: 0.4s;
}

/* HOVER EFFECTS */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--duha-maroon);
}

.value-card:hover .value-icon-box {
    background: var(--duha-maroon);
    color: #fff;
    transform: scale(1.1) rotateY(180deg);
}

.value-card:hover .value-title {
    color: var(--duha-maroon);
}

.value-card:hover .value-num {
    color: rgba(197, 160, 101, 0.1);
    /* Gold tint */
    transform: translateY(5px);
}




#duha-infra {
    padding: 100px 0;
    background-color: var(--duha-dark);
    /* Dark theme for contrast */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.infra-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
    pointer-events: none;
}

/* TEXT CONTENT */
.infra-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--duha-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.infra-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.infra-desc {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

/* TECH FEATURES LIST */
.tech-feature {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 101, 0.1);
    border: 1px solid var(--duha-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--duha-gold);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.tech-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.tech-text p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.tech-feature:hover .tech-icon {
    background: var(--duha-gold);
    color: var(--duha-dark);
}

/* IMAGE GRID */
.infra-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.infra-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 300px;
}

.infra-img-box:first-child {
    margin-top: 50px;
    /* Offset effect */
}

.infra-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.infra-img-box:hover .infra-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Gold Border Frame */
.infra-img-grid::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(197, 160, 101, 0.3);
    z-index: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .infra-img-grid {
        margin-top: 50px;
    }

    .infra-img-box {
        height: 200px;
    }
}