:root {
    --primary-orange: #FF6B35;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
    font-family: 'Space Grotesk', sans-serif;
}

/* Top Bar Dual Tone Responsive */
.top-bar {
    background: linear-gradient(90deg,
            var(--primary-orange) 0%,
            var(--primary-orange) 55%,
            #000 55%,
            #000 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--primary-orange);
}

/* Mobile Fix */
@media (max-width: 991px) {
    .top-bar {
        background: var(--primary-orange);
        /* Dual tone remove for mobile */
    }
}


/* Button Cross to Arrow */
.btn-custom {
    background: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Navbar */
.navbar {
    /* padding: 15px 0; */
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 90px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 15px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

/* Active menu item - current page */
.navbar-nav .nav-item.active .nav-link {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Underline for active items - only for non-dropdown so Services keeps its caret */
.navbar-nav .nav-item.active:not(.dropdown) .nav-link::after {
    /* removed underline for active nav items (desktop) */
    display: none !important;
}

.navbar-nav .nav-item.active .btn-quote {
    background: #e55a2b;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Dropdown item active */
.navbar-nav .dropdown-item.active {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    font-weight: 600;
}

/* Offcanvas active */
.offcanvas-body .nav-item.active .nav-link {
    color: var(--primary-orange);
    font-weight: 600;
}

.offcanvas-services-list li a.active {
    color: var(--primary-orange);
    font-weight: 600;
}

.btn-quote {
    background: var(--primary-orange);
    color: white;
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-quote:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Offcanvas Menu */
.offcanvas {
    width: 280px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    font-weight: 500;
}

.offcanvas-body .nav-link:hover {
    color: var(--primary-orange);
}

/* Navbar Services Dropdown */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 8px;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

/* Remove blue border on Services dropdown hover/focus/open */
.navbar-nav .nav-item.dropdown .dropdown-toggle,
.navbar-nav .nav-item.dropdown .dropdown-toggle:hover,
.navbar-nav .nav-item.dropdown .dropdown-toggle:focus,
.navbar-nav .nav-item.dropdown .dropdown-toggle:focus-visible,
.navbar-nav .nav-item.dropdown.show .dropdown-toggle {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.offcanvas-body .dropdown-menu {
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 0;
}

.offcanvas-body .dropdown-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

/* Offcanvas Services - Collapse (mobile): clear hierarchy and separation */
.offcanvas-nav {
    flex-direction: column;
    width: 100%;
}

.offcanvas-services-wrap {
    width: 100%;
    display: block;
}

.offcanvas-services-trigger {
    cursor: pointer;
    user-select: none;
}

.offcanvas-services-trigger[aria-expanded="true"] .offcanvas-services-icon {
    transform: rotate(180deg);
}

.offcanvas-services-icon {
    font-size: 12px;
    transition: transform 0.25s ease;
}

/* Services dropdown content - clearly distinct from main nav */
.offcanvas-services-wrap .collapse {
    background: rgba(0, 0, 0, 0.05);
    margin: 0 0 0 12px;
    padding: 8px 12px 12px 16px;
    border-left: 3px solid var(--primary-orange);
    border-radius: 0 0 0 6px;
}

.offcanvas-services-list {
    list-style: none;
    padding: 8px 0 4px 0;
    margin: 0;
}

.offcanvas-services-list li {
    margin: 0;
    padding: 0;
}

.offcanvas-services-list li a {
    display: block;
    padding: 10px 12px 10px 16px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
    transition: color 0.2s;
    border-radius: 6px;
}

.offcanvas-services-list li a:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.08);
}

.offcanvas-services-list li a.active {
    color: var(--primary-orange);
    font-weight: 600;
    background: rgba(255, 107, 53, 0.12);
}

.offcanvas-services-list li:last-child a {
    margin-bottom: 0;
}

/* Separation between Services block and next menu item */
.offcanvas-services-wrap + .nav-item .nav-link {
    border-top: 1px solid #eee;
}

/* Hero */
.hero-slider {
    position: relative;
    height: 600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s;
    background-size: cover;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.slide-text-box {
    background: rgba(26, 26, 26, 0.46);
    padding: 50px;
    border-left: 5px solid var(--primary-orange);
    max-width: 900px;
    position: relative;
    z-index: 2;
    min-height: 400px;
}

.slide-text-box h1 {
    font-size: clamp(28px, 4.5vw, 52px);
    color: white;
    line-height: 1.2;
    font-weight: 600;
}

.slide-text-box h1 span {
    color: var(--primary-orange);
}

.hero-nav-dots {
    position: absolute;
    right: 9%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    margin: 15px 0;
    display: block;
}

.hero-dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
}

.about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.about-orange-frame {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 440px;
    height: 440px;
    border: 11px solid var(--primary-orange);
    z-index: 1;
}

.about-image-wrap img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* SINCE */
.about-since {
    margin-top: 15px;
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    text-align: right;
    padding-right: 25px;
}

.about-since span {
    color: var(--primary-orange);
}

/* CONTENT */
/* .about-content {
    padding-left: 40px;
} */

.section-tag {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.about-content h2 {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.about-content h2 span {
    color: var(--primary-orange);
}

.about-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-capsule {
    background: #F7F7F7;
    padding: 10px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.stat-info h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/*ABOUT CSS END*/
.btn-learn {
    background: var(--primary-orange);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-learn:hover {
    background: #e55a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

:root {
    --primary-orange: #ff6b35;
}

/* SECTION */
.services-section {
    position: relative;
    background: url(/assets/images2/our-service-bg.webp) center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/* HEADER */
.services-header {
    max-width: 620px;
    margin-bottom: 60px;
}

.services-header h2 {
    /* font-size: 38px; */
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    line-height: 1.4;
}

/* SLIDER */
.services-slider {
    overflow: hidden;
}

.services-track {
    display: flex;
    transition: transform 0.4s ease;
    cursor: grab;
}

.services-track:active {
    cursor: grabbing;
}


.services-track {
    display: flex;
    gap: 30px;
    transition: transform .45s ease;
}

.service-card-wrap {
    flex: 0 0 31.633%;
}

/* CARD */
.service-card {
    background: #fff;
    color: #222;
    /* border-radius: 8px; */
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 20px;
}

/* CORNER PATTERN */
.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(225deg, var(--primary-orange) 50%, transparent 50%);
    padding: 20px;
}

/* TOP */
.service-top {
    background: #FFE2CE;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.service-top i {
    font-size: 34px;
    color: var(--primary-orange);
}

.service-top span {
    font-weight: 700;
    color: #aaa;
}

/* BODY */
.service-body {
    margin: 20px 0px;
}

.service-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* IMAGE */
.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ARROW */
.service-arrow {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-card:hover .service-arrow {
    background: var(--primary-orange);
    color: #fff;
}

/* NAV */
.service-navigation {
    position: absolute;
    top: 90px;
    right: 10px;
    display: flex;
    gap: 14px;
    z-index: 5;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #ff6b2c;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn.disabled {
    background: #eee;
    color: #000000;
    cursor: not-allowed;
}


/* RESPONSIVE */
@media(max-width:991px) {
    .service-card-wrap {
        flex: 0 0 50%;
    }

    .services-section {
        padding: 50px 0;
    }
}

@media(max-width:575px) {
    .service-card-wrap {
        flex: 0 0 100%;
    }
}


.coverage-section {
    padding: 100px 0;
    /* background: #f7f7f7; */
}


.section-tag {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.coverage-left h2 {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.coverage-left p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* GRID */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.coverage-item {
    background: #F7F7F7;
    border: 1px solid #CFCFCF;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 0px 8px;
}

.coverage-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

/* ICON BOX */
.coverage-item i {
    width: 55px;
    height: 55px;
    background: #ffffff;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.coverage-item h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #111;
}

/* IMAGE SIDE */
.coverage-image {
    position: relative;
    /* border-radius: 14px;
    overflow: hidden;
    height: 100%; */
}

.coverage-image .since-badge {
    width: 250px;
    position: absolute;
    left: 50%;
    bottom: -90px;
    height: auto;
    transform: translateX(-50%);
}

.coverage-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* BADGE */
.coverage-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    border: 3px solid var(--primary-orange);
    color: #fff;
    padding: 18px 35px;
    text-align: center;
    border-radius: 10px;
}

.coverage-badge span {
    display: block;
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 1px;
}

.coverage-badge strong {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

/* Brands Section */
.brands-section {
    padding: 70px 0;
    background: white;
    text-align: center;
}

/*
.brands-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
} */
.brands-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.brands-heading {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
    white-space: nowrap;
}

.brands-heading-wrapper .line {
    flex: 1;
    height: 1px;
    background: #cfcfcf;
    max-width: 300px;
}

/* Marquee */
.brands-marquee {
    display: flex;
    overflow: hidden;
}

.brands-marquee-content {
    display: flex;
    /* gap: 60px; */
    animation: marquee-left 120s linear infinite;
}

.brands-marquee.reverse .brands-marquee-content {
    animation: marquee-right 120s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.brand-logo {
    flex-shrink: 0;
    width: 220px;
    filter: grayscale(100%);
    opacity: 0.5;
    object-fit: contain;
}

.brand-logo {
    padding: 15px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo img {
    max-width: 100%;
    height: 65px;
    object-fit: contain;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.15);
}

.project-info {
    padding: 30px;
}

.project-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.project-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Project card link overlay (projects page gallery trigger) */
.project-card-link {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary-orange);
    border-radius: 10px 0 10px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
}

.project-card:hover .project-card-link {
    opacity: 1;
}

.project-card-link:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* Project filter buttons (projects page) */
.btn-filter {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 3px;
    font-size: 16px;
}

.consult-box {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.consult-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.consult-box h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.consult-box p {
    font-size: 14px;
    margin: 0;
    color: #999;
}

/* Top office bar */
.office-bar {
    background: #111;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 60px;
}

.office-box {
    color: #fff;
}

.office-box i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.office-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.footer-text {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-text  a{
    text-decoration: none;
    color: white;
}

.footer-text  a:hover{
    text-decoration: none;
    color: var(--primary-orange);
}

/* Footer address links (open in Google Maps) */
.footer-address-link {
    color: inherit;
    transition: color 0.2s;
}
.office-box .footer-address-link {
    color: #fff;
}
.office-box .footer-address-link:hover {
    color: var(--primary-orange);
}

/* Contact icons */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #1f1f1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Consultation */
.consult-box {
    margin-top: 40px;
}

.consult-box small {
    color: var(--primary-orange);
}

.bottom-bar {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 20px;
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1199px) {
    .service-navigation {
        right: 30px;
    }

    /* .about-content {
        padding-left: 25px;
    } */

    .slide-text-box {
        padding: 20px;
    }

    .hero-nav-dots {
        right: 9%;
        top: inherit;
        bottom: 13%;
        display: flex;
        gap: 8px;
    }

    .about-orange-frame {
        position: absolute;
        top: -25px;
        left: 0px;
        width: 101%;
        height: 360px;
        border: 6px solid var(--primary-orange);
        z-index: 1;
    }
}

@media (max-width: 991px) {
    .slide-text h1 {
        font-size: 40px;
    }

    .about-content {
        /* padding-left: 0; */
        margin-top: 40px;
    }

    .about-image-wrap {
        margin: 0 auto;
    }

    .service-navigation {
        position: static;
        justify-content: center;
        margin-top: 40px;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .slide-text h1 {
        font-size: 32px;
    }

    .slide-text p {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-since {
        font-size: 32px;
    }

    .brands-heading-wrapper {
        gap: 15px;
    }

    .brands-heading {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .hero-nav-dots {
        left: 10%;
    }
}

/* ========== PAGE HERO (Inner Pages) ========== */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.page-hero-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 0;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.page-hero .breadcrumb-item.active {
    color: #fff;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* Page hero: centered title + breadcrumb (new theme pages) */
.page-hero .text-center .page-hero-title { margin-bottom: 0.35rem; }
.page-hero-breadcrumb { font-size: 0.95rem; }
.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { content: '>'; }

/* About Value Cards (About Us page) */
.about-value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.about-value-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-value-card .about-value-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
}

.about-value-card-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Certifications Section (About Us page) */
.certification-section .certification-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.certification-section .certification-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    color: inherit;
}

.certification-card-image {
    position: relative;
    aspect-ratio: 4/3;
    max-height: 195px;
    background: #f5f5f5;
    overflow: hidden;
}

.certification-card-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
     object-fit: contain;
    transition: transform 0.3s;
}

.certification-card:hover .certification-card-image img {
    transform: scale(1.05);
}

.certification-pdf-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.95;
}

.certification-card-title {
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    text-align: center;
}
