        
            /* MAIN HERO WRAPPER */
            .inner-hero {
                position: relative;
                width: 100%;
                height: 80vh;
                min-height: 640px;
                overflow: hidden;
                display: flex;
                align-items: center;
            }
        
            /* BACKGROUND VIDEO */
            .inner-hero-video {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        
            /* DARK OVERLAY */
            .inner-hero-overlay {
                position: absolute;
                inset: 0;
                background: #0000004d;
                z-index: 1;
            }
        
            /* LEFT TEXT CONTAINER */
            .inner-hero-content {
                position: relative;
                z-index: 3;
                max-width: 720px;
                padding: 0 1rem;
                color: #ffffff;
                margin-top: 10%;
            }
        
            /* HEADING */
            .inner-hero-title {
                font-family: "Gilda Display", serif;
                font-size: clamp(40px, 6vw, 54px);
                font-weight: 600;
                margin-bottom: 0.5rem;
            }
        
            /* SUB HEADING */
            .inner-hero-sub {
                font-family: "Gilroy", sans-serif;
                font-size: clamp(20px, 3vw, 26px);
                color: #fff;
                margin-bottom: 1rem;
            }
        
            /* DESCRIPTION TEXT */
            .inner-hero-text {
                font-family: "Gilroy", sans-serif;
                font-size: 14px;
                color: #e9e9e9;
                line-height: 1.65;
                margin-bottom: 1.5rem;
            }
        
            /* CTA BUTTON */
            .inner-hero-btn {
                padding: 0.75rem 1.4rem;
                border-radius: 0;
                font-weight: 700;
                    background: #fff;
    color: #444;
            }
        
            /* FORM WRAPPER */
            .query-form-wrap {
                position: relative;
                z-index: 3;
                margin-top: 70px;
            }
        
            /* FORM CARD */
            .query-form {
                background: #ffffff;
                padding: 1.4rem;
                border-radius: 8px;
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
                display: flex;
                flex-direction: column;
                gap: 0.85rem;
            }
        
            /* INPUTS */
            .query-input,
            .query-textarea {
                width: 100%;
                background: #fff;
                border: 1px solid rgba(0, 0, 0, 0.12);
                padding: 0.5rem 0.5rem;
                font-family: "Gilroy", sans-serif;
                font-size: 0.95rem;
                border-radius: 0;
                transition:
                    border-color 0.18s ease,
                    box-shadow 0.18s ease;
            }
        
            .query-input:focus,
            .query-textarea:focus {
                border-color: var(--theme-red);
                box-shadow: 0 0 0 3px rgba(186, 0, 0, 0.12);
            }
        
            /* TEXTAREA */
            .query-textarea {
                min-height: 60px;
                resize: vertical;
            }
        
            /* SUBMIT BUTTON */
            .query-submit {
                padding: 0.7rem 1rem;
                border-radius: 0;
                font-weight: 700;
            }
        
            /* SMALL NOTE */
            .query-note {
                font-family: "Gilroy", sans-serif;
                color: #444;
                font-size: 0.8rem;
            }
            .query-note a {
                color: var(--theme-red);
                text-decoration: none;
                font-weight: 600;
            }
        
            /* RESPONSIVE */
            @media (max-width: 991.98px) {
                .inner-hero {
                    height: auto;
                    padding: 60px 0;
                    min-height: auto;
                }
            }
        
            @media (max-width: 575.98px) {
                .inner-hero-title {
                    font-size: clamp(30px, 9vw, 42px);
                }
                .query-textarea {
                    min-height: 100px;
                }
            }
        


        
            /* SECTION WRAPPER */
            .residential-about-section {
                background: #ffffff;
                color: #0b0b0b;
            }
        
            /* IMAGE STYLE */
            .residential-about-img-wrap {
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
            }
        
            .residential-about-img {
                width: 100%;
                height: 420px;
                object-fit: cover;
                display: block;
            }
        
            /* TEXT CONTENT */
            .residential-about-content {
                padding-left: 0;
            }
        
            .res-about-title {
                font-family: "Gilda Display", serif;
                font-size: clamp(26px, 4vw, 36px);
                font-weight: 600;
                margin-bottom: 1rem;
                color: #0b0b0b;
            }
        
            .res-about-text {
                font-family: "Gilroy", sans-serif;
                font-size: 14px;
                color: #444;
                line-height: 1.7;
                margin-bottom: 1.2rem;
            }
        
            /* RESPONSIVE */
            @media (max-width: 991.98px) {
                .residential-about-img {
                    height: 340px;
                }
            }
        
            @media (max-width: 575.98px) {
                .residential-about-img {
                    height: 260px;
                }
            }
        


        
            /* Section background - soft luxury gradient */
            .res-philosophy-premium {
                background: linear-gradient(180deg, #fafafa 0%, #ffffff 40%, #f6f6f6 100%);
                padding-top: 4rem;
                padding-bottom: 4rem;
            }
        
            /* Base card box */
            .res-ph-box {
                padding: 2rem;
                border-radius: 14px;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(0, 0, 0, 0.06);
                transition:
                    transform 0.25s ease,
                    box-shadow 0.25s ease;
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
            }
        
            /* Gold accent bar */
            .res-ph-accent {
                position: absolute;
                top: 0;
                left: 0;
                width: 6px;
                height: 70px;
                background: linear-gradient(180deg, #d4a44b, #b8892a);
                border-radius: 2px;
            }
        
            /* Light block with soft luxury beige tint */
            .res-ph-box.light {
                background: #fdf8f2; /* FIX: Premium contrasting light tone */
                color: #0b0b0b;
            }
        
            /* Dark block for contrast */
            .res-ph-box.darker {
                background: #0e0e0e;
                border: 1px solid rgba(255, 255, 255, 0.08);
                color: #e8e8e8;
                box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
            }
        
            /* Hover Elevation */
            .res-ph-box:hover {
                transform: translateY(-6px);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            }
        
            /* Titles */
            .res-ph-title {
                font-family: "Gilda Display", serif;
                font-size: clamp(20px, 3vw, 30px);
                font-weight: 600;
                margin-bottom: 1rem;
                padding-left: 1rem;
                color: inherit;
            }
        
            /* Body text */
            .res-ph-text {
                font-family: "Gilroy", sans-serif;
                font-size: 14px;
                color: inherit;
                line-height: 1.75;
                margin-bottom: 1.2rem;
                padding-left: 1rem;
            }
        
            /* Responsive tweaks */
            @media (max-width: 768px) {
                .res-ph-box {
                    padding: 1.6rem;
                }
                .res-ph-title {
                    padding-left: 0.75rem;
                }
                .res-ph-text {
                    padding-left: 0.75rem;
                }
            }
        


        
            :root {
                --theme-red: #2e2e2e;
            }
        
            /* SECTION BASE */
            .process-luxury {
                background: #ffffff;
            }
        
            /* Titles */
            .process-title {
                font-family: "Gilda Display", serif;
                font-size: clamp(28px, 4vw, 40px);
                font-weight: 600;
                color: #0b0b0b;
            }
        
            .process-sub {
                font-family: "Gilroy", sans-serif;
                color: #555;
                margin-top: 0.5rem;
            }
        
            /* TIMELINE WRAPPER */
            .lux-timeline {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 2rem;
                position: relative;
                padding-top: 2rem;
            }
        
            /* LINE BEHIND ICONS */
            .lux-timeline::before {
                content: "";
                position: absolute;
                top: 48px;
                left: 0;
                right: 0;
                height: 2px;
                background: rgba(0, 0, 0, 0.08);
            }
        
            /* EACH STEP */
            .lux-step {
                width: 100%;
                max-width: 260px;
                text-align: center;
                position: relative;
            }
        
            /* ICON WRAPPER */
            .lux-icon-wrap {
                position: relative;
                z-index: 3;
                background: #ffffff;
                padding: 0 1rem;
            }
        
            .lux-number {
                display: block;
                font-family: "Gilroy", sans-serif;
                font-weight: 700;
                color: #999;
                font-size: 0.85rem;
                margin-bottom: 0.25rem;
            }
        
            .lux-icon {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background: rgba(186, 0, 0, 0.08);
                backdrop-filter: blur(4px);
                color: #c80300;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 22px;
                box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
                margin: 0 auto;
            }
        
            /* CARD */
            .lux-card {
                margin-top: 2.2rem;
                background: #ffffff;
                border-radius: 14px;
                padding: 1.6rem;
                text-align: left;
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
                transition: all 0.25s ease;
                min-height: 260px;
            }
        
            /* Hover effect */
            .lux-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
            }
        
            /* Card text */
            .lux-card h4 {
                font-family: "Gilroy", sans-serif;
                font-size: 1.1rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
                color: #0b0b0b;
            }
        
            .lux-card p {
                font-family: "Gilroy", sans-serif;
                color: #444;
                line-height: 1.6;
                font-size: 0.86rem;
            }
        
            /* RESPONSIVE */
            @media (max-width: 991.98px) {
                .lux-timeline {
                    flex-wrap: wrap;
                    justify-content: center;
                    gap: 2rem;
                }
                .lux-timeline::before {
                    display: none;
                }
            }
        


        
            /* PREMIUM FEATURES + WHY THINKING BEYOND SECTION */
            .features-why-section {
                background: #f6f6f6;
                color: #0b0b0b;
            }
        
            /* Card base */
            .fw-card {
                background: #fff;
                border-radius: 12px;
                padding: 1.6rem;
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 16px 40px rgba(6, 6, 6, 0.06);
                height: 100%;
            }
        
            /* Header inside card */
            .fw-header {
                display: flex;
                gap: 1rem;
                align-items: center;
                margin-bottom: 1rem;
            }
        
            .fw-icon {
                width: 56px;
                height: 56px;
                border-radius: 8px;
                background: linear-gradient(180deg, rgba(186, 0, 0, 0.08), rgba(186, 0, 0, 0.02));
                color: #c80300;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.35rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            }
        
            .fw-title {
                font-family: "Gilda Display", serif;
                font-size: 1.4rem;
                margin: 0;
            }
        
            .fw-sub {
                margin: 0;
                font-family: "Gilroy", sans-serif;
                color: #666;
                font-size: 0.95rem;
            }
        
            /* Premium Features list */
            .fw-list {
                list-style: none;
                padding: 0;
                margin: 1rem 0 0 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem 1.2rem;
            }
        
            .fw-list li {
                font-family: "Gilroy", sans-serif;
                color: #333;
                font-size: 0.98rem;
                display: flex;
                align-items: center;
                gap: 0.6rem;
                padding-left: 0.2rem;
            }
        
            .fw-list li i {
                color: #c80300;
                font-size: 14px;
                min-width: 20px;
            }
        
            /* Why Thinking Beyond list */
            .why-list {
                list-style: none;
                padding: 0;
                margin: 1rem 0 0 0;
                display: flex;
                flex-direction: column;
                gap: 0.9rem;
            }
        
            .why-list li {
                display: flex;
                gap: 0.8rem;
                align-items: flex-start;
            }
        
            /* small numeric badge */
            .why-badge {
                background: linear-gradient(180deg, #d4a44b, #b8892a);
                color: #fff;
                font-weight: 700;
                width: 44px;
                height: 44px;
                border-radius: 8px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-family: "Gilroy", sans-serif;
                font-size: 14px;
            }
        
            /* Icon for other items */
            .why-list li i {
                font-size: 1.25rem;
                color: #c80300;
                min-width: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        
            /* content body */
            .why-body {
                flex: 1;
            }
        
            .why-body strong {
                display: block;
                font-family: "Gilroy", sans-serif;
                font-weight: 700;
                color: #0b0b0b;
                margin-bottom: 0.18rem;
            }
        
            .why-desc {
                font-family: "Gilroy", sans-serif;
                color: #555;
                font-size: 0.95rem;
                line-height: 1.6;
            }
        
            /* Responsive adjustments */
            @media (max-width: 991.98px) {
                .fw-list {
                    grid-template-columns: 1fr;
                }
                .fw-icon {
                    width: 50px;
                    height: 50px;
                    font-size: 1.15rem;
                }
                .why-badge {
                    width: 40px;
                    height: 40px;
                    font-size: 0.95rem;
                }
                .fw-card {
                    padding: 1.25rem;
                }
            }
        
            @media (max-width: 575.98px) {
                .fw-title {
                    font-size: 1.3rem;
                }
                .fw-sub {
                    font-size: 0.8rem;
                }
                .fw-list li {
                    font-size: 0.95rem;
                }
            }
        


        
            /* SERVICES GRID — image boxes */
            .services-grid-section {
                background: #fff;
                color: #0b0b0b;
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        
            .section-title {
                font-family: "Gilda Display", serif;
                font-size: clamp(24px, 3.6vw, 32px);
                margin-bottom: 0.35rem;
            }
        
            .section-sub {
                font-family: "Gilroy", sans-serif;
                color: #6b6b6b;
                margin-bottom: 1.5rem;
            }
        
            /* grid wrapper */
            .service-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
        
            /* Each card */
            .inner-service-card {
                border-radius: 10px;
                overflow: hidden;
                position: relative;
                cursor: pointer;
                transition:
                    transform 0.28s ease,
                    box-shadow 0.28s ease;
                min-height: 260px;
                display: flex;
                align-items: flex-end;
            }
        
            /* image area - using data-img attribute set in markup for graceful fallback */
            .inner-service-img {
                position: absolute;
                inset: 0;
                background-size: cover;
                background-position: center;
                filter: saturate(0.98);
                transition: transform 0.5s ease;
            }
        
            /* overlay for contrast */
            .inner-service-card::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0.45) 65%, rgba(6, 6, 6, 0.6) 100%);
                z-index: 1;
            }
        
            /* caption area */
            .service-caption {
                position: relative;
                z-index: 3;
                padding: 22px;
                width: 100%;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
            }
        
            /* title */
            .service-caption h5 {
                font-family: "Gilroy", sans-serif;
                font-weight: 700;
                color: #fff;
                margin: 0;
                font-size: 14px;
                letter-spacing: 0.2px;
            }
        
            /* hover states */
            .inner-service-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
            }
        
            .inner-service-card:hover .inner-service-img {
                transform: scale(1.06);
            }
        
            /* small screens / responsive */
            @media (max-width: 1199.98px) {
                .service-grid {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 20px;
                }
                .inner-service-card {
                    min-height: 240px;
                }
            }
        
            @media (max-width: 767.98px) {
                .service-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 16px;
                }
                .inner-service-card {
                    min-height: 200px;
                }
            }
        
            @media (max-width: 479.98px) {
                .service-grid {
                    grid-template-columns: 1fr;
                }
                .inner-service-card {
                    min-height: 180px;
                }
            }
        
            /* graceful background-image injection using data-img attribute (no JS required for modern browsers) */
            .inner-service-img {
                background-image: none;
            }
        
            /* If the browser supports attr() for url (very limited support) this will help — fallback below uses inline CSS via server rendering */
            @supports (background-image: attr(data-img url)) {
                .inner-service-img {
                    background-image: attr(data-img url);
                }
            }
        
            /* Fallback: expect server-side to set style attribute or copy data-img into CSS. If not possible, you can replace
           the <div class="service-img" data-img="..."> with inline style background-image in your template. */
        


        
            .projects-include-section {
                background: #f4f4f4;
            }
        
            .projects-include-section .section-title {
                font-family: "Gilda Display", serif;
                font-size: clamp(24px, 3vw, 32px);
                margin-bottom: 0.35rem;
                color: #0b0b0b;
            }
        
            .projects-include-section .section-sub {
                font-family: "Gilroy", sans-serif;
                color: #555;
                margin-bottom: 1.5rem;
                font-size: 14px;
            }
        
            /* Cards */
            .proj-card {
                background: #ffffff;
                border-radius: 10px;
                padding: 2rem 1.5rem;
                text-align: center;
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
                transition: all 0.25s ease;
            }
        
            .proj-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
            }
        
            /* Icons */
            .proj-icon {
                width: 60px;
                height: 60px;
                margin: 0 auto 1rem;
                border-radius: 50%;
                background: rgba(186, 0, 0, 0.08);
                display: flex;
                align-items: center;
                justify-content: center;
            }
        
            .proj-icon i {
                font-size: 28px;
                color: #c80300;
            }
        
            .proj-card h5 {
                font-family: "Gilroy", sans-serif;
                font-weight: 700;
                color: #0b0b0b;
                font-size: 1.1rem;
                margin: 0;
            }
        


        
            .res-faqs-section {
                background: #ffffff;
                color: #0b0b0b;
            }
        
            /* Title */
            .faq-title {
                font-family: "Gilda Display", serif;
                font-size: clamp(26px, 3.4vw, 34px);
                font-weight: 600;
                margin-bottom: 0.5rem;
            }
        
            /* Accordion base */
            .faq-accordion .accordion-item {
                border: 1px solid rgba(0, 0, 0, 0.08);
                border-radius: 8px;
                margin-bottom: 1rem;
                overflow: hidden;
                box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
            }
        
            .faq-accordion .accordion-button {
                font-family: "Gilroy", sans-serif;
                font-weight: 600;
                font-size: 14px;
                padding: 1rem 1.25rem;
                border: none;
                box-shadow: none !important;
                color: #0b0b0b;
                background: #f9f9f9;
            }
        
            .faq-accordion .accordion-button:not(.collapsed) {
                background: rgba(186, 0, 0, 0.06);
                color: var(--theme-red);
            }
        
            .faq-accordion .accordion-button::after {
                filter: brightness(0.3);
            }
        
            .faq-accordion .accordion-button:not(.collapsed)::after {
                filter: brightness(1);
            }
        
            /* Body */
            .faq-accordion .accordion-body {
                font-family: "Gilroy", sans-serif;
                color: #444;
                font-size: 0.86rem;
                padding: 1rem 1.25rem;
                line-height: 1.6;
                background: #ffffff;
            }
          /* CTA DARK SECTION */
.cta-dark-section {
    background: #0d0d0d;
    color: #f4f4f4;
    padding: 70px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.cta-sub {
    font-size: 14px;
    color: #cccccc;
    margin-top: 10px;
}

.cta-btn-group .btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* Call button */
.cta-btn-call {
    background: #1f1f1f;
    border: 1px solid #444;
    color: #fff;
}
.cta-btn-call:hover {
    background: #ffffff;
    color: #000;
}

/* WhatsApp button */
.cta-btn-wa {
    background: #25D366;
    border: 1px solid #25D366;
    color: #000;
}
.cta-btn-wa:hover {
    background: #1eb957;
    border-color: #1eb957;
    color: #fff;
}

/* Contact page button */
.cta-btn-contact {
    background: #ffffff;
    color: #000;
    border: 1px solid transparent;
}
.cta-btn-contact:hover {
    background: #e3e3e3;
    color: #000;
    border-color: #d4d4d4;
}

/* Responsive */
@media (max-width: 576px) {
    .cta-title {
        font-size: 1.4rem;
    }
    .cta-btn-group .btn {
        width: 100%;
    }
}
       /* INNER HERO (with dark overlay) */
.inner-hero-core-section {
    position: relative;
    padding: 140px 0 60px;
    background: url('/assets/img/breadbg.jpg') center/cover no-repeat;
    color: #ffffff;
    z-index: 1;
}

/* Dark overlay */
.inner-hero-core-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* smooth dark overlay */
    z-index: -1;
}

/* Content */
.inner-hero-core-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #bbbbbb;
}

/* Responsive */
@media (max-width: 768px) {
    .inner-hero-core-title {
        font-size: 2rem;
    }

    .inner-hero-core-section {
        padding: 120px 0 50px;
    }
}

       
            /* MISSION SECTION */
            .mission-section {
                background: #0f0f0f;
                color: #e5e5e5;
                padding: 80px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.07);
                border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            }
        
            .mission-title {
                font-size: 2rem;
                font-weight: 700;
                color: #ffffff;
                margin-bottom: 10px;
            }
        
            .mission-line {
                width: 60px;
                height: 3px;
                background: #ffffff;
                border-radius: 2px;
                margin-top: 5px;
            }
        
            .mission-text {
                font-size: 14px;
                line-height: 1.8;
                color: #cccccc;
            }
        
            /* Responsive */
            @media (max-width: 768px) {
                .mission-title {
                    font-size: 1.7rem;
                }
        
                .mission-section {
                    padding: 60px 0;
                }
            }
       



            /* DIRECTOR SECTION */
            .director-section {
                background: #ffffff;
                color: #333;
                padding: 80px 0;
            }
        
            .director-title {
                font-size: 2rem;
                font-weight: 700;
                color: #000;
            }
        
            .director-line {
                width: 70px;
                height: 3px;
                background: var(--theme-red);
                margin-top: 6px;
                border-radius: 2px;
            }
        
            .director-text {
                font-size: 14px;
                line-height: 1.8;
                color: #555;
            }
        
            .director-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }
        
            .director-list li {
                margin-bottom: 10px;
                color: #444;
                font-size: 0.86rem;
                display: flex;
                align-items: center;
                gap: 8px;
            }
        
            .director-list i {
                font-size: 1.1rem;
                color: #c80300;
            }
        
            /* Name Signature */
            .director-name {
                font-size: 1.1rem;
                font-weight: 600;
                color: #000;
            }
        
            /* IMAGE */
            .director-img-wrap {
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            }
        
            .director-img {
                width: 100%;
                object-fit: cover;
                display: block;
            }
        
            /* Responsive */
            @media (max-width: 768px) {
                .director-title {
                    font-size: 1.7rem;
                }
        
                .director-section {
                    padding: 60px 0;
                }
            }
       
        
        
            /* VALUES SECTION */
            .values-section {
                background: #f4f4f4;
                color: #333;
                padding: 80px 0;
            }
        
            .values-title {
                font-size: 2rem;
                font-weight: 700;
                color: #000;
            }
        
            .values-sub {
                font-size: 14px;
                color: #555;
                margin-top: 10px;
            }
        
            /* Value Box */
            .value-box {
                background: #ffffff;
                padding: 25px 20px;
                border-radius: 10px;
                text-align: center;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                height: 100%;
                transition:
                    transform 0.25s ease,
                    box-shadow 0.25s ease;
            }
        
            .value-box:hover {
                transform: translateY(-5px);
                box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
            }
        
            .value-icon {
                font-size: 2rem;
                color: #000;
                margin-bottom: 15px;
            }
        
            .value-head {
                font-size: 1.2rem;
                font-weight: 600;
                color: #000;
            }
        
            .value-text {
                font-size: 0.95rem;
                color: #555;
                margin-top: 8px;
                line-height: 1.6;
            }
        
            /* Responsive */
            @media (max-width: 768px) {
                .values-section {
                    padding: 60px 0;
                }
            }
       
        
               
            /* DUAL CONTENT SECTION (Facilities & Reach) */
            .about-dual-section {
                background: #ffffff;
                color: #333;
                padding: 80px 0;
            }
        
            .about-box {
                background: #fff;
                border: 1px solid #e5e5e5;
                border-radius: 10px;
                padding: 30px 28px;
                height: 100%;
                box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
                transition:
                    transform 0.25s ease,
                    box-shadow 0.25s ease;
            }
        
            .about-box:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            }
        
            .about-box-title {
                font-size: 1.4rem;
                font-weight: 700;
                color: #000;
            }
        
            .about-box-line {
                width: 60px;
                height: 3px;
                background: #c80300;
                margin-top: 6px;
                border-radius: 2px;
            }
        
            .about-box-text {
                font-size: 14px;
                line-height: 1.8;
                color: #555;
            }
        
            /* Responsive */
            @media (max-width: 768px) {
                .about-dual-section {
                    padding: 60px 0;
                }
                .about-box-title {
                    font-size: 1.4rem;
                }
            }
       .inner-hero-core-content{
           text-align: center;
       }
       ol.breadcrumb.mb-0 {
    justify-content: center;
}


    .inner-service-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.inner-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-bg{
    background: url('/assets/img/blog-bg.jpg') center/cover no-repeat!important
    ;

    
}

    /* CLIENT LOGO GRID (Unique Namespace: clientgrid-*) */
.clientgrid-section {
    background: #ffffff;
    padding: 80px 0;
}

.clientgrid-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.clientgrid-sub {
    color: #666;
    font-size: 1rem;
    margin-top: 5px;
}

.clientgrid-wrapper {
    margin-top: 10px;
}

.clientgrid-item {
    text-align: center;
}

.clientgrid-logo {
    width: 100%;
    max-width: 120px;
    transition: all 0.3s ease;
}

.clientgrid-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

/* Responsive */
@media(max-width: 768px) {
    .clientgrid-logo {
        max-width: 100px;
    }
}

@media(max-width: 480px) {
    .clientgrid-logo {
        max-width: 90px;
    }
}


