/* ============================================================
   DMG ESTATE — New Color Palette Design Architecture
   ============================================================ */
:root {
    /* Green System */
    --emerald-950:  #003a3f; /* Deep Dark Green */
    --emerald-900:  #004d52; 
    --emerald-800:  #006a6f; /* Primary Theme Green */
    --emerald-700:  #008289;
    --emerald-500:  #009ca4;
    --emerald-300:  #49cbd2;
    --emerald-100:  #d2f6f8;
    /* Gold/Beige System */
    --gold-500:      #b09252; /* Primary Deep Gold */
    --gold-400:      #c7b171; /* Accent Medium Gold */
    --gold-300:      #d2c081; /* Soft Light Gold */
    --gold-100:      #f4eedb;
    --ivory:        #f5f2ec;
    --ivory-dark:   #ede9e0;
    --accent:       #7c5c2e;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --font-mono:    'DM Mono', monospace;
    --nav-h: 72px;
    --section-gap: 120px;
}

/* ---- RESET & BASICS ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--emerald-950);
    font-size: 20px;
    line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-gap) 0; }

.label-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-500);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.label-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold-500);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--emerald-950);
}
.section-title--light { color: var(--ivory); }


/*--- Banner----*/

.carousel-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Scaled to screen height like a hero banner */
    min-height: 600px;
    overflow: hidden;
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
}

.carousel-images {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Overall image overlay tint to match image_d7d985.jpg */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 60, 0.25); /* Subtle dark cyan/teal overlay hint */
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}
.slide-content h1 {
    font-size: 4rem; /* इमेज के हिसाब से बड़ा साइज */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff; /* pure white text */
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4); /* बेहतर विजिबिलिटी के लिए */
}

.slide-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ffffff; /* pure white text */
    opacity: 1; /* पूरी तरह से ओपेक (दिखने योग्य) */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.modern-slide-tag {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.slide-content h1 {
    font-size: 4rem; /* Prominent size matching your reference image */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.slide-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Circular Minimalist Navigation Buttons */
.nav-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 4;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.prev { left: 40px; }
.next { right: 40px; }

/* Custom Pill Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}

.dot {
    cursor: pointer;
    height: 4px;
    width: 24px; /* Rectangular pill shape mimicking the indicator in image */
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content h1 { font-size: 2.5rem; }
    .nav-button { width: 40px; height: 40px; font-size: 1rem; }
    .prev { left: 15px; }
    .next { right: 15px; }
}


/* Premium Stats Counter Section */
.dmg-stats-counter-section {
    background-color: #002d2d; /* आपकी वेबसाइट का डार्क बैकग्राउंड */
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Glassmorphism Premium Card */
.stat-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effect */
.stat-premium-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.4); /* गोल्डन बॉर्डर टच */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Icon Design with subtle glow */
.stat-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.1); /* गोल्डन टिंट */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
}

.stat-icon-box i {
    font-size: 1.6rem;
    color: #d4af37; /* प्रीमियम गोल्डन कलर */
    transition: transform 0.4s ease;
}

.stat-premium-card:hover .stat-icon-box {
    background: #d4af37;
}

.stat-premium-card:hover .stat-icon-box i {
    color: #002d2d;
    transform: scale(1.1);
}

/* Typography */
.stat-number-wrapper {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-plus {
    color: #d4af37; /* प्लस साइन का कलर हमेशा गोल्डन रहेगा */
    margin-left: 2px;
}

.stat-label {
    font-size: 1rem;
    color: #a0aec0; /* सटल ग्रे कलर टेक्स्ट के लिए */
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2 कॉलम */
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr; /* मोबाइल पर 1 कॉलम */
        padding: 0 10px;
    }
    .stat-number-wrapper {
        font-size: 2.4rem;
    }
}

/* ---- BANNER BOTTOM & NAV BUTTONS ---- */
.ul-banner .bottom {
    background: var(--emerald-950) !important;
    border-top: 1px solid var(--emerald-800);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ul-banner-slider-nav button {
    background: var(--emerald-800) !important;
    color: var(--ivory) !important;
    border: 1px solid var(--emerald-700) !important;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
.ul-banner-slider-nav button:hover {
    background: var(--gold-500) !important;
    color: var(--emerald-950) !important;
    border-color: var(--gold-500) !important;
}
button.nav-button.next {
    color: #fff !important;
}
button.nav-button.prev {
    color: #fff !important;
}
/* ---- MARQUEE ---- */
.marquee-section {
    background: var(--emerald-950);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--emerald-700);
    border-bottom: 1px solid var(--emerald-700);
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 15px;
    letter-spacing: .1em;
    color: var(--emerald-100);
    text-transform: uppercase;
}
.marquee-item .dot {
    width: 4px; height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- PROJECTS GRID RE-ARCHITECTURE ---- */
.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.view-all-link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-500);
    border-bottom: 1px solid var(--gold-500);
    padding-bottom: 2px;
    transition: color .2s;
}
.view-all-link:hover { color: var(--accent); border-color: var(--accent); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-rows: minmax(220px, auto); /* Rows ki auto height setting */
}

/* First child container layout structure */
.projects-grid .project-card:first-child {
    grid-row: span 2;
    min-height: 480px; /* Force minimum height for large card */
}

.project-card {
    position: relative;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    background: var(--emerald-950) !important;
    aspect-ratio: 4/5;
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

/* First card dynamic height adjustment */
.projects-grid .project-card:first-child {
    aspect-ratio: auto !important;
}

/* Image layering configuration */
.project-card .project-card-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .6s ease;
    z-index: 1 !important;
}
.project-card:hover .project-card-img { 
    transform: scale(1.06); 
}

/* Premium gradient shielding layer overlay */
.project-card-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(0, 37, 40, 0.98) 0%, rgba(0, 58, 63, 0.6) 40%, transparent 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 25px !important;
    z-index: 2 !important; /* Image ke upar ensure karega */
}

/* Force explicit typographic rendering to override external frameworks */
.project-tag {
    position: relative;
    z-index: 3 !important;
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold-500, #b09252) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 10px;
    width: fit-content;
}

.project-name {
    position: relative;
    z-index: 3 !important;
    font-family: var(--font-display), serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #ffffff !important; /* Clear visibility text code */
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
    text-transform: none !important;
}

.project-loc {
    position: relative;
    z-index: 3 !important;
    font-size: 14px !important;
    color: #d2f6f8 !important; /* Soft cyan text fallback tint */
    margin-bottom: 15px !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.project-loc svg { width: 14px; height: 14px; fill: none; flex-shrink: 0; }

.project-meta {
    position: relative;
    z-index: 3 !important;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.project-meta-item {
    font-size: 12px !important;
    color: #ede9e0 !important;
    display: flex;
    align-items: center;
    gap: 5px;
}
.project-meta-item svg { width: 13px; height: 13px; fill: none; }
.project-meta-item strong { color: #ffffff !important; font-weight: 700; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid .project-card:first-child {
        grid-row: auto;
        min-height: unset;
        aspect-ratio: 4/5;
    }
}
@media (max-width: 575px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* ---- CATEGORIES ---- */
.categories-section {
    background: var(--emerald-950);
    padding: var(--section-gap) 0;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.cat-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}
.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}
.cat-card:hover .cat-card-img {
    transform: scale(1.08);
    filter: brightness(.45);
}
.cat-card-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
    background: linear-gradient(to top, rgba(0,58,63,.8) 0%, transparent 50%);
    transition: background 0.4s ease;
    z-index: 1;
}
.cat-card:hover .cat-card-body {
    background: linear-gradient(to top, rgba(0,40,44,.9) 0%, rgba(0,58,63,.2) 60%);
}
.cat-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gold-400);
    margin-bottom: 8px;
}
.cat-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 10px;
}
.cat-desc {
    font-size: 15px;
    color: rgba(245,242,236,.65);
}
.cat-count {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--gold-500);
    border-top: 1px solid rgba(176,146,82,.25);
    padding-top: 16px;
}
.cat-arrow {
    position: absolute;
    right: 28px;
    bottom: 36px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(176,146,82,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}
.cat-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}
.cat-card:hover .cat-arrow {
    background: var(--gold-500, #b09252);
    color: var(--emerald-950) !important;
    border-color: var(--gold-500) !important;
    box-shadow: 0 4px 12px rgba(176, 146, 82, 0.3);
}
.cat-card:hover .cat-arrow svg {
    transform: scale(1.1) rotate(0deg);
}


/* Brand Colors & Variables */
:root {
    --primary-color: #003a3f;
    --accent-color: #b99f60;
    --text-dark: #333333;
    --bg-light: #f9fbfb;
    --gap: 30px;
}

.ul-testimonial {
    padding: 60px 0;
    background-color: var(--bg-light);
    overflow: hidden; /* बाहर जाने वाले कार्ड्स को छुपाने के लिए */
}

/* Heading Styles */
.ul-section-heading {
    margin-bottom: 40px;
    text-align: center;
}
.ul-section-heading .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.label-eyebrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.label-eyebrow-wrapper .line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}
.label-eyebrow {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* CSS Slider Wrapper */
.ul-testimonial-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Animation Track (यह हिस्सा कार्ड्स को चलाता है) */
.ul-testimonial-slider-track {
    display: flex;
    gap: var(--gap);
    width: max-content;
    /* 20s का मतलब है स्पीड। इसे धीरे करने के लिए 30s या तेज़ करने के लिए 15s कर सकते हैं */
    animation: CSSAutoslide 20s linear infinite; 
}

/* जब यूजर कार्ड पर माउस ले जाए तो स्लाइडर रुक जाए (Pause on Hover) */
.ul-testimonial-slider-track:hover {
    animation-play-state: paused;
}

/* Desktop: एक स्क्रीन पर ठीक 3 बॉक्स दिखाने का लॉजिक */
.ul-testimonial-slide {
    flex-shrink: 0;
    width: calc((1140px - (var(--gap) * 2)) / 3); /* Standard Bootstrap container max-width (~1140px) पर आधारित */
    max-width: 350px; 
    display: flex;
}

/* Testimonial Card UI */
.ul-testimony {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 58, 63, 0.05);
    border: 1px solid rgba(0, 58, 63, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ul-testimony:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 58, 63, 0.1);
    border-color: var(--accent-color);
}

.ul-testimony.testimony-highlighted {
    border: 2px solid var(--accent-color);
    background-color: rgba(185, 159, 96, 0.03);
}

.ul-testimony .top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ul-testimony-reviewer-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}

.ul-testimony-reviewer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ul-testimony-reviewer-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.ul-testimony-reviewer-role {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ul-testimony-txt p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* --- Pure CSS Auto-Slide Keyframes --- */
@keyframes CSSAutoslide {
    0% {
        transform: translateX(0);
    }
    100% {
        /* आधे ट्रैक (पहले लूप के खत्म होने) पर वापस 0 पर आ जाएगा, जिससे लूप अनंत (Infinite) लगेगा */
        transform: translateX(calc(-50% - (var(--gap) / 2)));
    }
}

/* Responsive: Mobile & Tablets */
@media (max-width: 991px) {
    .ul-testimonial-slide {
        width: 280px; /* छोटी स्क्रीन पर बॉक्स थोड़े छोटे हो जाएंगे ताकि लेआउट न बिगड़े */
    }
}

/*==================================================
2. GENERAL SWIPER PROTECTION (AWARDS KO SAFE RAKHNE KE LIYE)
====================================================*/
/* Kisi bhi normal .swiper-slide par lagne wali global width forcing ko reset karein */
.swiper-container, .swiper {
    overflow: hidden;
}
/* ---- QUICK ENQUIRY FORM ---- */
.ul-enquiry {
    background: var(--emerald-950) !important; 
    padding: 60px 0;
}
.ul-enquiry form {
    background: #ffffff !important; 
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    border: 1px solid #e2e8f0; 
}
.ul-enquiry .form-control {
    background: #f4f7f6 !important; 
    border: 1px solid #cedcd9 !important; 
    color: #0b3935 !important; 
    padding: 14px 18px;
    font-size: 15px;
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s ease;
}
.ul-enquiry .form-control:focus {
    background: #ffffff !important; 
    border-color: var(--emerald-950) !important; 
    box-shadow: 0 0 0 3px rgba(11, 57, 53, 0.1); 
    color: #000000 !important;
}
.ul-enquiry .form-control::placeholder {
    color: #7a8c89 !important; 
    opacity: 1;
}
.ul-enquiry .btn-submit {
    background: var(--gold-500, #c5a880) !important; 
    color: #ffffff !important; 
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 16px 45px !important;
    border-radius: var(--radius-sm) !important;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3); 
}
.ul-enquiry .btn-submit:hover {
    background: var(--emerald-950) !important; 
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 57, 53, 0.2);
}


/* ---- PARTNERS AREA ---- */
.ul-partners-slider {
    width: 100%;
    overflow: hidden;
}
.ul-partners-slider .swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}
.ul-partners-slider .swiper-slide img {
    max-height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto !important;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.ul-partners-slider .swiper-slide img:hover {
    opacity: 1;
}

/* ---- BLOGS SECTION ---- */
.ul-blogs-custom-section {
    background-color: #f7f9fc !important;
    padding: 90px 0;
}
.ul-blogs-custom-section .ul-section-heading { margin-bottom: 50px; }
.ul-blogs-custom-section .ul-section-sub-title {
    font-family: var(--font-mono), monospace;
    font-size: 13px;
    color: #b09252 !important; 
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
}
.ul-blogs-custom-section .ul-section-title {
    font-family: var(--font-display), sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #003a3f !important; 
}
.ul-blog-card-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 58, 63, 0.04);
    border: 1px solid #eef2f5;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ul-blog-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 58, 63, 0.1);
    border-color: rgba(176, 146, 82, 0.2);
}
.ul-blog-card-img-holder {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 240px;
    background-color: #003a3f;
}
.ul-blog-card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.ul-blog-card-wrapper:hover .ul-blog-card-img-holder img { transform: scale(1.06); }
.ul-blog-card-text-scope {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.ul-blog-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f4f7;
    padding-bottom: 15px;
}
.ul-blog-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #7a8c89;
}
.ul-blog-meta-item i { color: #b09252; }
.ul-blog-card-main-title {
    font-family: var(--font-display), sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #003a3f !important;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.ul-blog-card-main-title:hover { color: #b09252 !important; }
.ul-blog-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #556866;
    margin-bottom: 25px;
    flex-grow: 1;
}
.ul-blog-card-action-trigger {
    font-size: 14px;
    font-weight: 600;
    color: #003a3f !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    margin-top: auto;
}
.ul-blog-card-action-trigger i { font-size: 12px; transition: transform 0.3s ease; }
.ul-blog-card-wrapper:hover .ul-blog-card-action-trigger { color: #b09252 !important; }
.ul-blog-card-wrapper:hover .ul-blog-card-action-trigger i { transform: translateX(5px); }


/* ---- AWARDS SECTION ---- */

:root {
    --primary-color: #003a3f;
    --accent-color: #b99f60;
    --slider-gap: 30px;
    --radius-lg: 12px;
}

/* ---- AWARDS SECTION ---- */
.ul-awards-section {
    background-color: #ffffff !important; 
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Testimonials जैसा लेआउट बनाने के लिए फ्लेक्सबॉक्स:
   हेडिंग लेफ्ट में और सबहेडिंग राइट में वर्टिकली सेंटर अलाइन रहेगी 
*/
.ul-awards-section .ul-section-heading { 
    margin-bottom: 50px; 
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important; 
    width: 100%;
}

/* मुख्य हेडिंग (Left Side) */
.ul-awards-section .ul-section-title {
    font-family: var(--font-display), sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-align: left !important;
    margin-bottom: 0 !important;
}

/* सबहेडिंग रैपर (Right Side) */
.ul-awards-section .ul-section-sub-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* टेक्स्ट और लाइन्स के बीच का गैप */
}

/* सबहेडिंग के बाईं और दाईं तरफ गोल्ड लाइन्स (——) बनाने के लिए */
.ul-awards-section .ul-section-sub-title-wrapper::before,
.ul-awards-section .ul-section-sub-title-wrapper::after {
    content: "";
    display: inline-block;
    width: 40px; /* लाइन की चौड़ाई */
    height: 1px;  /* लाइन की मोटाई */
    background-color: var(--accent-color); /* गोल्ड कलर */
    opacity: 0.8;
}

/* सबहेडिंग टेक्स्ट स्टाइल (Excellence & Trust) */
.ul-awards-section .ul-section-sub-title {
    font-family: var(--font-mono), monospace;
    font-size: 13px;
    color: var(--accent-color) !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 0 !important;
    white-space: nowrap;
}

/* ---- CSS Slider Wrapper Setup ---- */
.ul-awards-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Animation Track */
.ul-awards-slider-track {
    display: flex;
    gap: var(--slider-gap);
    width: max-content;
    animation: CSSAwardScroll 20s linear infinite;
}

/* Hover होने पर स्लाइडर रुक जाएगा */
.ul-awards-slider-track:hover {
    animation-play-state: paused;
}

/* Desktop Width Logic (एक स्क्रीन पर परफेक्ट 3 बॉक्स) */
.ul-award-slide {
    flex-shrink: 0;
    width: calc((1140px - (var(--slider-gap) * 2)) / 3); 
    max-width: 360px;
    display: flex;
}

/* Core Card UI */
.ul-award-card {
    background: #f7f9fc; 
    border: 1px solid #eef2f5;
    border-radius: var(--radius-lg, 12px);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ul-award-year {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-mono), monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color); 
    background: rgba(185, 159, 96, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Award Image Container */
.ul-award-img-box {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.ul-award-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ul-award-title {
    font-family: var(--font-display), sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color) !important;
    margin-bottom: 8px;
    line-height: 1.4;
}

.ul-award-authority {
    font-size: 14px;
    color: #7a8c89;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Hover Effects */
.ul-award-card:hover {
    transform: translateY(-8px);
    background: #ffffff; 
    border-color: var(--accent-color); 
    box-shadow: 0 15px 35px rgba(0, 58, 63, 0.08);
}

.ul-award-card:hover .ul-award-img-box {
    transform: scale(1.1) rotate(3deg);
}

/* ---- Pure CSS Auto-Slide Keyframes ---- */
@keyframes CSSAwardScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - (var(--slider-gap) / 2)));
    }
}

/* Responsive: Tablets Breakpoints */
@media (max-width: 991px) {
    .ul-award-slide {
        width: 290px; 
    }
    .ul-awards-section .ul-section-title {
        font-size: 28px;
    }
}

/* Responsive: मोबाइल स्क्रीन्स पर लेआउट को टूटने से बचाने के लिए */
@media (max-width: 767px) {
    .ul-awards-section .ul-section-heading {
        flex-direction: column !important;
        align-items: flex-start !important; 
        gap: 12px;
    }
    .ul-awards-section .ul-section-title {
        text-align: left !important;
    }
    .ul-awards-section .ul-section-sub-title-wrapper {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ---- WHY CHOOSE US ---- */
.ul-why-choose-us { 
    background-color: #003a3f; 
    color: #ffffff; 
    padding: 80px 0; 
}
.ul-section-sub-title { 
    color: #c7b171; 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600; 
    display: inline-block; 
    margin-bottom: 10px; 
}
.ul-section-title { 
    color: #ffffff; 
    font-size: 38px; 
    font-weight: 700; 
}

/* Card Styling */
.card-feature { 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(199, 177, 113, 0.2); 
    padding: 30px; 
    border-radius: 8px; 
    transition: all 0.3s ease-in-out; 
}
.card-feature i { 
    color: #c7b171; 
    font-size: 32px; 
    margin-bottom: 20px; 
    display: inline-block; 
}
.card-feature h3 { 
    color: #ffffff; 
    font-size: 20px; 
    margin-bottom: 15px; 
    font-weight: 600; 
}
.card-feature p { 
    color: #e0e0e0; 
    font-size: 15px; 
    line-height: 1.6; 
    margin-bottom: 0; 
}

/* Active / Hover State */
.card-feature.active, .card-feature:hover { 
    background: #c7b171; 
    border-color: #c7b171; 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(199, 177, 113, 0.3); 
}
.card-feature.active i, .card-feature:hover i, 
.card-feature.active h3, .card-feature:hover h3 { 
    color: #003a3f; 
}
.card-feature.active p, .card-feature:hover p { 
    color: #111111; 
}

/* Custom Dots Positioning Fix */
.custom-indicators {
    position: absolute !important;
    bottom: -50px !important; /* यह डॉट्स को कार्ड्स के नीचे धकेलेगा */
    left: 0;
    right: 0;
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
    padding-left: 0;
    z-index: 15;
}

.custom-indicators [data-bs-target] {
    background-color: #ffffff !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: none !important;
    opacity: 0.4 !important;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.custom-indicators .active {
    background-color: #c7b171 !important; /* आपका गोल्ड कलर */
    opacity: 1 !important;
    width: 25px !important; /* एक्टिव होने पर थोड़ा लंबा दिखेगा */
    border-radius: 5px !important;
}

/* सेक्शन में नीचे एक्स्ट्रा पैडिंग ताकि डॉट्स नीचे न छुपें */
.ul-why-choose-us {
    padding: 80px 0 120px 0 !important; 
}



/* Swiper container alignment fixes */
      .ul-partners-slider {
         padding: 15px 0;
         width: 100%;
         overflow: hidden;
      }

      /* Light Box Effect: Creates a clean white card for each logo */
      .ul-partners-slider .swiper-slide {
         background: #ffffff;
         border-radius: 8px; /* Smooth rounded corners */
         padding: 15px 25px; /* Spacing inside the box */
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); /* Subtle, premium shadow */
         border: 1px solid rgba(0, 0, 0, 0.06); /* Light outline for the box look */
         
         /* Flexbox centering for logos */
         display: flex;
         align-items: center;
         justify-content: center;
         
         /* Smooth animation transition */
         transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
         cursor: pointer;
         height: 80px; /* Keeps all boxes at an equal height */
         max-width: 180px; /* Fixes the uniform width of the boxes */
         margin: 0 10px; /* Gap between the partner boxes */
      }

      /* Hover Effect: Moves the box up and deepens the shadow */
      .ul-partners-slider .swiper-slide:hover {
         transform: translateY(-6px); /* Lifts the box upwards */
         box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08); /* Gives a premium floating look */
         border-color: var(--emerald-700); /* Optional: changes border color to match your theme */
      }

      /* Image Styling inside the Light Box */
      .ul-partners-slider .swiper-slide img {
         max-width: 100%;
         max-height: 100%;
         object-fit: contain; /* Prevents logos from cropping or stretching */
         filter: grayscale(20%); /* Slightly desaturates logos for a uniform corporate feel */
         transition: transform 0.3s ease;
      }

      /* Hover Effect for Image: Brings back full color and adds subtle zoom */
      .ul-partners-slider .swiper-slide:hover img {
         filter: grayscale(0%); /* Brings back 100% original color on hover */
         transform: scale(1.04); /* Gentle zoom effect for interactive motion */
      }



/* FAQ Section */
.dmg-faq-section-white {
    background-color: #ffffff; /* शुद्ध सफेद बैकग्राउंड */
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.dmg-faq-section-white .faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.dmg-faq-section-white .faq-title {
    color: #002d2d; /* आपकी ब्रांड का डार्क ग्रीन कलर हेडलाइन के लिए */
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.dmg-faq-section-white .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dmg-faq-section-white .faq-item {
    background: #f9fbfb; /* हल्का सा ऑफ-व्हाइट टच ताकि बॉक्स अलग दिखे */
    border: 1px solid #e2ecec; /* सॉफ्ट बॉर्डर */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 45, 45, 0.03); /* बहुत हल्की शैडो */
}

/* Hover Effect */
.dmg-faq-section-white .faq-item:hover {
    border-color: #ccdcdc;
    box-shadow: 0 4px 12px rgba(0, 45, 45, 0.06);
}

.dmg-faq-section-white .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a3f3f; /* डार्क टेक्स्ट पढ़ने में आसान */
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.dmg-faq-section-white .faq-icon {
    font-size: 1rem;
    color: #bfa15f; /* थोड़ा डार्क और सटल गोल्डन शेड सफेद पर अच्छा दिखने के लिए */
    transition: transform 0.3s ease;
}

/* Active State Styles (जब कोई FAQ खुला हो) */
.dmg-faq-section-white .faq-item.active {
    background: #ffffff;
    border-color: #002d2d; /* ओपन होने पर आपकी मुख्य डार्क ग्रीन बॉर्डर */
    box-shadow: 0 10px 20px rgba(0, 45, 45, 0.08);
}

.dmg-faq-section-white .faq-item.active .faq-question {
    color: #002d2d;
}

.dmg-faq-section-white .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #002d2d;
}

.dmg-faq-section-white .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.dmg-faq-section-white .faq-answer p {
    padding: 0 25px 22px 25px;
    margin: 0;
    color: #4a6060; /* पैराग्राफ के लिए सॉलिड ग्रे-ग्रीन मिक्स कलर */
    line-height: 1.65;
    font-size: 0.98rem;
}

/* ---- RESPONSIVE MEDIA QUERIES ---- */
@media (max-width: 1100px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: 1fr; }
    .cat-card { height: 320px; }
}
@media (max-width: 1024px) {
    .modern-floating-filter-wrapper { position: relative; bottom: 0; transform: none; left: 0; margin-top: -30px; }
    .modern-filter-bar { border-radius: 20px; flex-direction: column; padding: 25px; gap: 20px; }
    .filter-inputs-grid { flex-direction: column; width: 100%; gap: 15px; }
    .filter-field-item { border-right: none; padding-right: 0; margin-right: 0; width: 100%; border-bottom: 1px solid #e2e8f0; padding-bottom: 10px; }
    .filter-inputs-grid .filter-field-item:last-of-type { margin-right: 0; }
    .btn-search-submit { width: 100%; justify-content: center; }
    .modern-slider-nav { display: none; }
}
@media (max-width: 991px) {
    .custom-show-case { padding: 0 30px !important; gap: 25px; }
    .custom-show-case-box { min-width: 45%; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .categories-grid { grid-template-columns: 1fr; }
    .cat-card { height: 400px; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .projects-grid { grid-template-columns: 1fr; }
    .ul-testimony { padding: 25px !important; }
}
@media (max-width: 575px) {
    .custom-show-case { padding: 0 20px !important; gap: 30px; }
    .custom-show-case-box { min-width: 100%; gap: 15px; }
    .custom-show-case-box .number, .custom-show-case-box .plus { font-size: 30px !important; }
}



/*----Section For About Page----*/

/* ==========================================================================
   DMG ESTATE - PREMIUM ARCHITECTURAL DESIGN SYSTEM (FULL STYLESHEET)
   Colors Theme: Deep Teal (#003a3f) & Rich Gold (#b09252)
   ========================================================================== */


:root {
    /* Main Branding Colors */
    --dmg-teal: #003a3f;
    --dmg-teal-dark: #00282c;
    --dmg-gold: #b09252;
    --dmg-gold-light: rgba(176, 146, 82, 0.12);
    
    /* Layout & Surface Colors */
    --dmg-bg-pure: #ffffff;
    --dmg-bg-soft: #f4f7f6;
    --dmg-text-dark: #111a1c;
    --dmg-text-muted: #596567;
    
    /* Configs */
    --dmg-radius: 16px;
    --dmg-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --dmg-shadow-sm: 0 10px 30px rgba(0, 58, 63, 0.04);
    --dmg-shadow-md: 0 20px 45px rgba(0, 58, 63, 0.08);
}

/* Global Adjustments */
.dmg-premium-about-scope {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dmg-text-dark);
    background-color: var(--dmg-bg-pure);
    overflow-x: hidden;
}

/* Common Typography & UI Elements */
.dmg-section-badge {
    display: inline-block;
    background: var(--dmg-gold-light);
    color: var(--dmg-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.dmg-main-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dmg-teal);
    margin-bottom: 22px;
}

.gold-gradient-text {
    color: var(--dmg-gold) !important;
}

/* 1. Modern Hero Breadcrumb Area */
.dmg-hero-breadcrumb {
    background-color: var(--dmg-teal);
    background-image: linear-gradient(135deg, rgba(0, 58, 63, 0.98) 0%, rgba(0, 40, 44, 0.92) 100%);
    padding: 110px 0 95px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--dmg-gold);
}

.dmg-tagline-badge {
    color: var(--dmg-gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.dmg-hero-title {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.dmg-breadcrumb-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.dmg-breadcrumb-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--dmg-transition);
}

.dmg-breadcrumb-links a:hover {
    color: var(--dmg-gold);
}

.dmg-split-dot {
    width: 6px;
    height: 6px;
    background: var(--dmg-gold);
    border-radius: 50%;
}

.dmg-breadcrumb-links .active-item {
    color: var(--dmg-gold);
    font-weight: 600;
}

.dmg-shape-overlay {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(176, 146, 82, 0.12) 0%, transparent 75%);
    pointer-events: none;
}

/* 2. Intro Section Grid Layout */
.dmg-intro-section {
    padding: 100px 0;
}

.dmg-asymmetric-grid {
    position: relative;
    padding-right: 35px;
}

.dmg-grid-block.main-frame img {
    width: 100%;
    height: auto;
    border-radius: var(--dmg-radius);
    box-shadow: var(--dmg-shadow-md);
}

.dmg-grid-block.floating-badge {
    position: absolute;
    bottom: -25px;
    right: 0;
    background: var(--dmg-teal);
    color: #ffffff;
    padding: 24px 32px;
    border-radius: var(--dmg-radius);
    border-left: 5px solid var(--dmg-gold);
    box-shadow: 0 15px 35px rgba(0, 58, 63, 0.25);
}

.dmg-grid-block.floating-badge .number {
    font-size: 34px;
    font-weight: 800;
    color: var(--dmg-gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.dmg-grid-block.floating-badge .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.4;
}

.dmg-narrative p {
    font-size: 16px;
    color: var(--dmg-text-muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

.dmg-narrative .lead-text {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--dmg-teal);
}

/* 3. Purpose Pillars Section */
.dmg-pillars-section {
    background-color: var(--dmg-teal-dark);
    padding: 100px 0;
}

.dmg-interactive-pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--dmg-radius);
    padding: 50px 35px;
    height: 100%;
    position: relative;
    transition: var(--dmg-transition);
    cursor: pointer;
}

.dmg-interactive-pillar-card .pillar-icon {
    width: 65px;
    height: 65px;
    background: rgba(176, 146, 82, 0.12);
    color: var(--dmg-gold);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: var(--dmg-transition);
}

.dmg-interactive-pillar-card .pillar-title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.dmg-interactive-pillar-card .pillar-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Pillars Interactions */
.dmg-interactive-pillar-card:hover,
.dmg-interactive-pillar-card.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--dmg-gold);
    transform: translateY(-8px);
}

.dmg-interactive-pillar-card:hover .pillar-icon,
.dmg-interactive-pillar-card.active .pillar-icon {
    background: var(--dmg-gold);
    color: var(--dmg-teal-dark);
    box-shadow: 0 10px 20px rgba(176, 146, 82, 0.3);
}

/* 4. Advantage / Why Choose Us Stack */
.dmg-advantage-section {
    padding: 100px 0;
}

.section-intro-text {
    font-size: 16px;
    color: var(--dmg-text-muted);
    margin-bottom: 40px;
}

.dmg-advantage-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dmg-stack-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.dmg-stack-item .stack-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--dmg-gold);
    background: var(--dmg-gold-light);
    padding: 6px 14px;
    border-radius: 8px;
}

.dmg-stack-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dmg-teal);
    margin-bottom: 8px;
}

.dmg-stack-item p {
    font-size: 15px;
    color: var(--dmg-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Montage Layout Images */
.dmg-overlapping-montage {
    position: relative;
    padding-left: 30px;
}

.dmg-overlapping-montage .img-base {
    width: 85%;
    border-radius: var(--dmg-radius);
    box-shadow: var(--dmg-shadow-sm);
}

.dmg-overlapping-montage .img-overlay-float {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 52%;
    border-radius: var(--dmg-radius);
    border: 6px solid #ffffff;
    box-shadow: var(--dmg-shadow-md);
}

/* 5. Legacy & History Section */
.dmg-history-section {
    background-color: var(--dmg-teal);
    padding: 100px 0;
    color: #ffffff;
}

.text-secondary-light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.dmg-custom-slider-controls {
    display: flex;
    gap: 15px;
}

.dmg-slider-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--dmg-transition);
    cursor: pointer;
}

.dmg-slider-arrow:hover {
    background: var(--dmg-gold);
    border-color: var(--dmg-gold);
    color: #ffffff;
}

.dmg-milestone-capsule {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 45px;
    border-radius: var(--dmg-radius);
}

.capsule-timeline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.capsule-timeline-header .year-stamp {
    font-size: 38px;
    font-weight: 800;
    color: var(--dmg-gold);
}

.capsule-timeline-header .capsule-tag {
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--dmg-gold);
}

.dmg-milestone-capsule h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.dmg-milestone-capsule p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* 6. Editorial Insights Blog Cards */
.dmg-editorial-section {
    padding: 100px 0;
    background-color: var(--dmg-bg-soft);
}

.dmg-editorial-card {
    background: #ffffff;
    border-radius: var(--dmg-radius);
    overflow: hidden;
    box-shadow: var(--dmg-shadow-sm);
    transition: var(--dmg-transition);
    height: 100%;
}

.dmg-editorial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dmg-shadow-md);
}

.dmg-editorial-card .thumb-cover {
    position: relative;
    overflow: hidden;
}

.dmg-editorial-card .thumb-cover img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--dmg-transition);
}

.dmg-editorial-card:hover .thumb-cover img {
    transform: scale(1.05);
}

.post-meta-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.post-meta-date .day {
    font-size: 20px;
    font-weight: 800;
    color: var(--dmg-teal);
    display: block;
    line-height: 1;
}

.post-meta-date .month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dmg-gold);
}

.card-details {
    padding: 28px;
}

.author-meta {
    font-size: 13px;
    color: var(--dmg-text-muted);
    margin-bottom: 12px;
}

.editorial-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.editorial-title a {
    color: var(--dmg-teal);
    text-decoration: none;
    transition: var(--dmg-transition);
}

.editorial-title a:hover {
    color: var(--dmg-gold);
}

.editorial-excerpt {
    font-size: 14px;
    color: var(--dmg-text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

.dmg-readmore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dmg-teal);
    text-decoration: none;
    transition: var(--dmg-transition);
}

.dmg-readmore-link:hover {
    color: var(--dmg-gold);
}



/*----Section For Blog Page----*/

/* ==========================================================================
   DMG Estate - Premium Architectural Blog Layout System
   Colors: Rich Deep Teal (#184b50) & Luxury Warm Gold (#c3ab75)
   ========================================================================== */


:root {
    --dmg-teal-primary: #184b50;
    --dmg-teal-dark: #0f3236;
    --dmg-gold-accent: #c3ab75;
    --dmg-gold-translucent: rgba(195, 171, 117, 0.12);
    
    --dmg-canvas-white: #ffffff;
    --dmg-canvas-soft: #f6f8f8;
    --dmg-typography-dark: #162022;
    --dmg-typography-muted: #5e6b6d;
    
    --dmg-box-radius: 12px;
    --dmg-smooth-motion: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --dmg-premium-shadow: 0 15px 40px rgba(24, 75, 80, 0.05);
    --dmg-hover-shadow: 0 25px 60px rgba(24, 75, 80, 0.12);
}

/* Page Scope Reset */
.dmg-editorial-page-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dmg-canvas-soft);
    color: var(--dmg-typography-dark);
}

/* 1. Sleek Breadcrumb Block (Blue Entirely Removed) */
.dmg-modern-breadcrumb {
    background-color: var(--dmg-teal-primary);
    background-image: linear-gradient(135deg, var(--dmg-teal-primary) 0%, var(--dmg-teal-dark) 100%);
    padding: 95px 0 85px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 4px solid var(--dmg-gold-accent);
}
.dmg-context-tag {
    color: var(--dmg-gold-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2.5px;
    font-size: 12px;
    display: block;
    margin-bottom: 12px;
}
.dmg-page-heading {
    font-size: 46px;
    font-weight: 800;
    color: var(--dmg-canvas-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.dmg-crumb-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}
.dmg-crumb-navigation a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--dmg-smooth-motion);
}
.dmg-crumb-navigation a:hover {
    color: var(--dmg-gold-accent);
}
.dmg-crumb-divider {
    color: var(--dmg-gold-accent);
    font-size: 11px;
}
.dmg-crumb-active {
    color: var(--dmg-gold-accent);
    font-weight: 600;
}
.dmg-breadcrumb-geometry {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 171, 117, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* 2. Blog Grid Section Container */
.dmg-blog-grid-section {
    padding: 90px 0;
}

/* 3. The New Structural Box Layout (The Architectural Card) */
.dmg-architectural-card-box {
    background: var(--dmg-canvas-white);
    border-radius: var(--dmg-box-radius);
    border: 1px solid rgba(24, 75, 80, 0.06);
    overflow: hidden;
    box-shadow: var(--dmg-premium-shadow);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: var(--dmg-smooth-motion);
}
.dmg-architectural-card-box:hover {
    transform: translateY(-8px);
    border-color: rgba(195, 171, 117, 0.3);
    box-shadow: var(--dmg-hover-shadow);
}

/* Media Frame Adjustments */
.dmg-card-media-frame {
    position: relative;
    overflow: hidden;
    background-color: var(--dmg-teal-dark);
}
.dmg-media-link {
    display: block;
    width: 100%;
}
.dmg-lazy-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--dmg-smooth-motion);
}
.dmg-architectural-card-box:hover .dmg-lazy-img {
    transform: scale(1.04) rotate(0.5deg);
    opacity: 0.9;
}

/* Floating Gold Calendar Token Token */
.dmg-calendar-token {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--dmg-gold-accent);
    color: var(--dmg-canvas-white);
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(24, 75, 80, 0.15);
    z-index: 3;
}
.token-day {
    font-size: 20px;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.token-month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

/* Card Body Area & Spacing Hooks */
.dmg-card-body-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.dmg-card-meta-row {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dmg-gold-accent);
}
.dmg-card-meta-row i {
    margin-right: 4px;
}
.dmg-card-main-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}
.dmg-card-main-title a {
    color: var(--dmg-typography-dark);
    text-decoration: none;
    transition: var(--dmg-smooth-motion);
}
.dmg-architectural-card-box:hover .dmg-card-main-title a {
    color: var(--dmg-teal-primary);
}
.dmg-card-short-excerpt {
    font-size: 14.5px;
    color: var(--dmg-typography-muted);
    line-height: 1.65;
    margin-bottom: 25px;
}

/* 4. Elegant Action Button Controls (No Blue Elements) */
.dmg-card-footer-trigger {
    margin-top: auto; /* Pushes button to exact bottom of grid bounds */
    padding-top: 15px;
    border-top: 1px solid var(--dmg-canvas-soft);
}
.dmg-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--dmg-teal-primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--dmg-smooth-motion);
}
.dmg-action-btn .btn-arrow-wrapper {
    width: 32px;
    height: 32px;
    background: var(--dmg-canvas-soft);
    color: var(--dmg-teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--dmg-smooth-motion);
}
.dmg-action-btn .btn-arrow-wrapper i {
    transform: rotate(180deg); /* Right Direction Fix */
    font-size: 12px;
}

/* Hover Micro-Interactions */
.dmg-architectural-card-box:hover .dmg-action-btn {
    color: var(--dmg-gold-accent);
}
.dmg-architectural-card-box:hover .btn-arrow-wrapper {
    background: var(--dmg-gold-accent);
    color: var(--dmg-canvas-white);
    transform: translateX(4px);
}


/*----Contact Page -----*/

/* ==========================================================================
   DMG Estate - Premium Architectural Contact Dashboard Stylesheet
   Theme Elements: Deep Teal (#184b50) & Rich Luxury Gold (#c3ab75)
   ========================================================================== */

:root {
    --dmg-teal-base: #184b50;
    --dmg-teal-shadow: #0f3236;
    --dmg-gold-base: #c3ab75;
    --dmg-gold-soft: rgba(195, 171, 117, 0.15);
    
    --dmg-surface-light: #ffffff;
    --dmg-surface-canvas: #f5f8f8;
    --dmg-font-dark: #12191a;
    --dmg-font-muted: #5a6668;
    
    --dmg-interface-radius: 12px;
    --dmg-motion-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Page Container Root Initialization */
.dmg-contact-interface-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dmg-surface-canvas);
    color: var(--dmg-font-dark);
}

/* Modern Header Banner */
.dmg-modern-breadcrumb {
    background-color: var(--dmg-teal-base);
    background-image: linear-gradient(135deg, var(--dmg-teal-base) 0%, var(--dmg-teal-shadow) 100%);
    padding: 95px 0 85px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 4px solid var(--dmg-gold-base);
}
.dmg-context-tag {
    color: var(--dmg-gold-base);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2.5px;
    font-size: 12px;
    display: block;
    margin-bottom: 12px;
}
.dmg-page-heading {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.dmg-crumb-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}
.dmg-crumb-navigation a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--dmg-motion-smooth);
}
.dmg-crumb-navigation a:hover {
    color: var(--dmg-gold-base);
}
.dmg-crumb-divider {
    color: var(--dmg-gold-base);
    font-size: 11px;
}
.dmg-crumb-active {
    color: var(--dmg-gold-base);
    font-weight: 600;
}

/* Section Shell Base */
.dmg-contact-grid-section {
    padding: 90px 0;
}

/* Architectural Component Main Box */
.dmg-architectural-contact-box {
    background: var(--dmg-surface-light);
    border-radius: var(--dmg-interface-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(24, 75, 80, 0.06);
    border: 1px solid rgba(24, 75, 80, 0.05);
}

/* Left Panel: Deep Teal Context Structure */
.dmg-identity-info-panel {
    background-color: var(--dmg-teal-base);
    background-image: linear-gradient(145deg, var(--dmg-teal-base) 0%, var(--dmg-teal-shadow) 100%);
    padding: 55px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.dmg-identity-info-panel .panel-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}
.dmg-identity-info-panel .panel-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.panel-communication-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}
.communication-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15.5px;
    transition: var(--dmg-motion-smooth);
}
.communication-item:not(.address-item):hover {
    color: var(--dmg-gold-base);
    transform: translateX(4px);
}
.communication-item .icon-box {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--dmg-gold-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.communication-item .detail-txt {
    line-height: 1.5;
}

/* Social Icon Ecosystem */
.panel-social-ecosystem {
    display: flex;
    gap: 15px;
}
.panel-social-ecosystem a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--dmg-motion-smooth);
}
.panel-social-ecosystem a:hover {
    background: var(--dmg-gold-base);
    border-color: var(--dmg-gold-base);
    color: var(--dmg-teal-shadow);
    transform: translateY(-3px);
}

/* Right Panel: Clean Interaction Form Area */
.dmg-interactive-form-panel {
    padding: 55px 45px;
}
.dmg-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dmg-input-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dmg-teal-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dmg-input-group input,
.dmg-input-group textarea {
    width: 100%;
    background: var(--dmg-surface-canvas);
    border: 1px solid rgba(24, 75, 80, 0.1);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--dmg-font-dark);
    transition: var(--dmg-motion-smooth);
}

/* Absolute Removal of Default/Blue Color Focusing Elements */
.dmg-input-group input:focus,
.dmg-input-group textarea:focus {
    outline: none !important;
    background: #ffffff;
    border-color: var(--dmg-gold-base) !important;
    box-shadow: 0 5px 15px rgba(195, 171, 117, 0.12) !important;
}

/* Premium Form Submit Action Element */
.dmg-form-submit-trigger {
    background: var(--dmg-teal-base);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(24, 75, 80, 0.15);
    transition: var(--dmg-motion-smooth);
}
.dmg-form-submit-trigger:hover {
    background: var(--dmg-gold-base);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(195, 171, 117, 0.25);
    transform: translateY(-2px);
}

/* Immersive Geolocation Frame */
.dmg-immersive-map-frame {
    margin-top: 30px;
    line-height: 0;
    border-top: 4px solid var(--dmg-gold-base);
    filter: grayscale(30%) contrast(105%);
    transition: var(--dmg-motion-smooth);
}
.dmg-immersive-map-frame:hover {
    filter: grayscale(0%) contrast(100%);
}

/* ---Why Choose Us  --- */

/* --- DMG Estate Theme Variables --- */
:root {
    --dmg-teal: #003a3f;        /* Primary Dark Teal Color */
    --dmg-gold: #c3ab75;        /* Secondary Accent Gold/Beige */
    --dmg-dark: #1a2b2c;        /* Dark Charcoal for Headings */
    --dmg-bg-light: #f4f7f7;    /* Soft Teal-tinted light background */
    --dmg-text-muted: #556668;  /* Muted color for paragraph text */
}

/* --- Breadcrumb Section --- */
.dmg-breadcrumb-section {
    background: linear-gradient(rgba(0, 58, 63, 0.85), rgba(0, 58, 63, 0.85)), url('/frontend/assets/img/breadcrumb-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #ffffff;
}

.dmg-breadcrumb-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.dmg-breadcrumb-nav a {
    color: var(--dmg-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dmg-breadcrumb-nav a:hover {
    color: #ffffff;
}

.dmg-breadcrumb-nav .separator {
    margin: 0 10px;
    color: #ffffff;
    font-size: 12px;
}

.dmg-breadcrumb-nav .current-page {
    color: #e0e6e7;
    text-transform: capitalize;
}

/* --- Content Wrapper & Grid Layout --- */
.dmg-content-wrapper {
    padding: 70px 0;
    background-color: #ffffff;
}

.dmg-inner-container {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Space between rows */
    padding: 5spx;
}

/* Step Layout (Alternating Layout) */
.dmg-step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--dmg-bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--dmg-teal);
    box-shadow: 0 5px 20px rgba(0, 58, 63, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dmg-step-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 58, 63, 0.08);
}

/* Alternate row flip (Left image, Right text) */
.dmg-step-row:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 5px solid var(--dmg-teal);
}

/* Text & Info Styling */
.dmg-step-txt-box {
    flex: 1;
    display: flex;
    gap: 20px;
}

.dmg-step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.dmg-step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--dmg-teal);
    line-height: 1;
    margin-bottom: 15px;
    font-family: serif;
}

.dmg-step-vertical-txt {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dmg-gold);
    font-weight: 600;
    white-space: nowrap;
}

.dmg-step-body {
    flex: 1;
}

.dmg-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dmg-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.dmg-step-descr {
    font-size: 15px;
    color: var(--dmg-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Image Wrapper Styling */
.dmg-step-img-box {
    flex: 1;
    max-width: 45%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dmg-step-img-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dmg-step-row:hover .dmg-step-img-box img {
    transform: scale(1.05);
}

/* --- Responsive Layout (Mobile Friendly) --- */
@media (max-width: 991px) {
    .dmg-step-row, .dmg-step-row:nth-child(even) {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 25px;
    }
    .dmg-step-img-box {
        max-width: 100%;
    }
    .dmg-step-img-box img {
        height: 220px;
    }
}

/* --- Awards & Recognition --- */

/* --- DMG Color Codes --- */
:root {
    --dmg-teal: #003a3f;
    --dmg-gold: #c3ab75;
    --dmg-dark: #0f2224;
    --dmg-bg-card: #fcfdfe;
    --dmg-text-muted: #607173;
}

/* --- Breadcrumb Style --- */
.dmg-breadcrumb-section {
    background: linear-gradient(rgba(0, 58, 63, 0.9), rgba(0, 58, 63, 0.9)), url('/frontend/assets/img/breadcrumb-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    color: #ffffff;
}
.dmg-breadcrumb-title {
    font-size: 36px;
    font-weight: 700;
}
.dmg-breadcrumb-nav a {
    color: var(--dmg-gold);
    text-decoration: none;
}

/* --- Section Header Row (Matches your design exactly) --- */
.dmg-modern-grid-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.dmg-grid-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
}
.dmg-grid-main-title {
    color: var(--dmg-teal);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}
.dmg-grid-side-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dmg-grid-side-badge .line {
    display: inline-block;
    width: 35px;
    height: 1px;
    background-color: var(--dmg-gold);
}
.dmg-grid-side-badge .badge-text {
    color: var(--dmg-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* --- Big Image Grid Cards --- */
.dmg-modern-award-card {
    background: var(--dmg-bg-card);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 25px rgba(0, 58, 63, 0.03);
    border: 1px solid rgba(0, 58, 63, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Big Image Container */
.dmg-modern-img-container {
    position: relative;
    width: 100%;
    height: 280px; /* बड़ी इमेज दिखाने के लिए हाइट बढ़ाई गई है */
    overflow: hidden;
    background-color: #eeeeee;
}
.dmg-modern-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज बिना क्रॉप हुए पूरे बॉक्स को कवर करेगी */
    transition: transform 0.6s ease;
}

/* Modern Year Badge Overlay */
.dmg-modern-year-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--dmg-teal);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid var(--dmg-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Card Text Styling */
.dmg-modern-card-body {
    padding: 30px 25px;
    border-top: 3px solid transparent;
    transition: border-color 0.4s ease;
}
.dmg-modern-subtitle {
    color: var(--dmg-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}
.dmg-modern-title {
    color: var(--dmg-teal);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.dmg-modern-desc {
    color: var(--dmg-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Hover Effects --- */
.dmg-modern-award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 58, 63, 0.09);
    border-color: rgba(195, 171, 117, 0.2);
}
.dmg-modern-award-card:hover .dmg-modern-img-container img {
    transform: scale(1.06); /* इमेज ज़ूम इफेक्ट */
}
.dmg-modern-award-card:hover .dmg-modern-card-body {
    border-top-color: var(--dmg-gold); /* होवर पर नीचे गोल्ड लाइन का इफ़ेक्ट */
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .dmg-grid-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .dmg-grid-main-title {
        font-size: 30px;
    }
    .dmg-modern-img-container {
        height: 230px;
    }
}



/*-----Project ----------*/

/* --- 1. Root Variables --- */
:root {
    --dmg-teal: #003a3f;
    --dmg-gold: #c7b171;
    --dmg-white: #ffffff;
    --dmg-bg: #f4f4f4;
}

/* --- 2. Global Row & Column Spacing (Fixes the "sticking" issue) --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

[class*="col-"] {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-bottom: 30px !important; /* Space below each card */
}

/* --- 3. Breadcrumb Section --- */
.dmg-breadcrumb-section {
    background-color: var(--dmg-teal) !important;
    padding: 60px 0;
    text-align: center;
}
.dmg-breadcrumb-title { color: var(--dmg-white) !important; font-size: 32px; font-weight: 600; margin-bottom: 10px; }
.dmg-breadcrumb-nav a { color: var(--dmg-gold) !important; font-weight: 500; text-decoration: none; }
.dmg-separator, .dmg-current-page { color: var(--dmg-white) !important; opacity: 0.8; }

/* --- 4. Premium Project Card Design --- */
.dmg-projects-wrapper { padding: 60px 0; background: var(--dmg-bg); }

.dmg-project-card {
    background: var(--dmg-teal) !important;
    color: var(--dmg-white) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none !important;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.dmg-project-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* Image Area */
.dmg-img-wrap { height: 240px; overflow: hidden; position: relative; }
.dmg-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.dmg-feat-badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--dmg-gold) !important;
    color: var(--dmg-teal) !important;
    padding: 4px 12px; font-weight: 700; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- 5. Content Area --- */
.dmg-content-wrap { 
    padding: 24px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column;
}

.dmg-project-title { color: var(--dmg-white) !important; font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.dmg-project-location { color: #d1d1d1 !important; font-size: 13px; margin-bottom: 15px; }

.dmg-details-box {
    display: flex; gap: 15px; 
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px; 
    margin-top: auto; 
    margin-bottom: 20px; 
    font-size: 13px;
}

/* --- 6. View Project Button --- */
.dmg-view-btn {
    display: inline-block;
    align-self: center;
    padding: 8px 22px; 
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--dmg-white) !important;
    color: var(--dmg-teal) !important;
    text-decoration: none;
    border: 2px solid var(--dmg-white);
    transition: all 0.3s ease;
}
.dmg-view-btn:hover {
    background: transparent !important;
    color: var(--dmg-white) !important;
    border-color: var(--dmg-gold);
}

/* --- 7. Responsive Fixes --- */
@media (max-width: 767px) {
    .col-lg-4, .col-md-6 { width: 100%; flex: 0 0 100%; max-width: 100%; }
}