:root {
    --primary: #ec2222;
    --primary-dark: #e20e0e;
    --primary-palet: rgb(220 57 24 / 15%);
    --dark: #111418;
    --dark-2: #1a1f26;
    --dark-3: #242b34;
    --light: #f4f5f6;
    --muted: #8a939e;
    --white: #ffffff;
    --danger: #e44040;
}

body {
    font-family: "Lato", sans-serif;
    background: var(--white);
    color: #2c3540;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.02em;
}
a {
    text-decoration: none;
}
section {
    padding: 100px 0px;
}
p {
    color: #5a6470;
    font-size: 15px;
    line-height: 1.8;
}
/* ─── TOP BAR ─── */
.topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    color: var(--muted);
}

.topbar a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.topbar a:hover {
    color: var(--primary);
}

.topbar .divider {
    margin: 0 12px;
    opacity: 0.3;
}

/* ─── NAVBAR ─── */
.main-navbar {
    background: var(--dark-2);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white) !important;
    padding: 16px 0;
    letter-spacing: 0.05em;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-brand small {
    display: block;
    font-size: 10px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
}

.main-navbar .nav-link {
    display: inline-block;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b0bcc8 !important;
    padding: 14px 14px !important;
    transition:
        color 0.2s,
        background 0.2s;
    position: relative;
}

@media (max-width: 768px) {
    .main-navbar .nav-link {
       
        padding: 12px 0px !important;
        margin-left: 4px;
    }
}
.main-navbar .nav-link.btn-quote-nav {
    color: #ffffff !important;
}
@media (max-width: 768px) {
    .main-navbar .nav-link.btn-quote-nav {
        color: #ffffff !important;
        width: fit-content;
        padding: 16px 32px !important;
    }
}
/* Remove bootstrap arrow only */
.main-navbar .dropdown-toggle::after {
    border: 0;
    content: "";
}

/* Underline animation */
.main-navbar .nav-link {
    position: relative;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--dark-2);
    transition:
        left 0.3s ease,
        right 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    left: 0;
    right: 0;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--white) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    left: 0;
    right: 0;
    background: var(--primary);
}

.main-navbar .dropdown-menu {
    background: var(--dark-3);
    border: none;
    /* border-top: 3px solid var(--primary); */
    border-radius: 0;
    margin-top: 0;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-top: 2px;
}

.main-navbar .dropdown-item {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9aa5b2;
    padding: 10px 20px;
    transition:
        background 0.2s,
        color 0.2s;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item.active {
    background: rgba(232, 160, 32, 0.1);
    color: var(--primary);
}

.btn-quote-nav {
    background: var(--primary);
    color: #ffffff !important;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px !important;
    margin-left: 8px;
    transition:
        background 0.2s,
        transform 0.1s;
}

.btn-quote-nav::after {
    display: none !important;
}

.btn-quote-nav:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    color: #8a939e;
    padding-top: 64px;
}

footer h5 {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

footer a {
    color: #8a939e;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary);
}

footer li {
    margin-bottom: 8px;
    font-size: 14px;
}

footer p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-brand {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand span {
    color: var(--primary);
}

.footer-bottom {
    background: #0a0d10;
    margin-top: 48px;
    padding: 18px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── UTILITY / SHARED ─── */
.btn-primary-custom {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    padding: 14px 36px;
    transition:
        background 0.2s,
        transform 0.1s;
    border-radius: 2px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 34px;
    transition: all 0.2s;
    border-radius: 2px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--dark);
}

.section-label {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
}

.section-title.light {
    color: var(--white);
}

.title-bar {
    width: 52px;
    height: 4px;
    background: var(--primary);
    margin: 16px 0 24px;
}

.title-bar.centered {
    margin: 16px auto 24px;
}

.badge-tag {
    background: rgba(232, 160, 32, 0.15);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    border-left: 3px solid var(--primary);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page header */
.page-hero {
    background: var(--dark-2);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(232, 160, 32, 0.03) 40px,
        rgba(232, 160, 32, 0.03) 80px
    );
}

.page-hero .breadcrumb-item {
    font-size: 13px;
}

.page-hero .breadcrumb-item.active {
    color: var(--primary);
}

.page-hero .breadcrumb-item a {
    color: var(--muted);
    text-decoration: none;
}

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

/* Scroll to top */
#scrollTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        transform 0.1s;
    z-index: 999;
}

#scrollTop:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

#scrollTop.shown {
    display: flex;
}

/* home page  */
/* ─── HERO section start─── */
.hero {
    padding-top: 4rem;
    min-height: 88vh;
    background:
        linear-gradient(
            135deg,
            rgba(10, 13, 16, 0.92) 0%,
            rgba(17, 20, 24, 0.75) 60%,
            rgba(232, 160, 32, 0.12) 100%
        ),
        url(../img/project.jpeg)
            center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-palet);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-trust-item i {
    color: var(--primary);
    font-size: 18px;
}

/* Diagonal accent */
.hero-accent {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(232, 160, 32, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-accent-2 {
    position: absolute;
    right: -200px;
    top: -200px;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(232, 160, 32, 0.04);
    border-radius: 50%;
    pointer-events: none;
}
/* ─── HERO section end */

/* ─── STATS BAND start─── */
.stats-section {
    background: var(--primary);
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(17, 20, 24, 0.2);
}

.stat-item:last-child {
    border-right: 0px solid rgba(17, 20, 24, 0.2);
}

@media (max-width: 768px) {
    .stat-item {
        border-right: 0px solid rgba(17, 20, 24, 0.2);
    }
}

.stat-item .number {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-item .suffix {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.stat-item .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(17, 20, 24, 0.2);
    align-self: center;
}

/* ─── STATS BAND end */

/* ─── SERVICES start─── */
.services-section {
    padding: 96px 0;
    background: var(--light);
}

.service-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.service-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 13, 16, 0.7), transparent);
    transition: opacity 0.3s;
}

.service-card:hover .service-img::before {
    opacity: 0.5;
}

.service-icon {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 2px;
}

.service-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h4 {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-body p {
    font-size: 14px;
    color: #5a6470;
    line-height: 1.7;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ─── SERVICES end */

/* ─── ABOUT STRIP start─── */
.about-section {
    padding: 96px 0;
}

.about-img-wrap {
    position: relative;
    display: inline-block;
}

.about-img-main {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.about-badge-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary);
    color: var(--white);
    padding: 24px 28px;
    text-align: center;
    border-radius: 2px;
}

.about-badge-float .num {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.about-badge-float .txt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}
/* ─── ABOUT STRIP start─── */

/* ─── WHY CHOOSE US start─── */
.why-section {
    padding: 96px 0;
    background: var(--dark-2);
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    border-left: 3px solid transparent;
    transition:
        border-color 0.2s,
        background 0.2s;
    height: 100%;
}

.why-item:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.07);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-palet);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 2px;
    flex-shrink: 0;
}

.why-item h5 {
    font-family: "Oswald", sans-serif;
    font-size: 17px;
    color: #fff;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}
/* ─── WHY CHOOSE US end */

/* ─── PROJECTS start─── */
.projects-section {
    padding: 96px 0;
    background: var(--light);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 16, 0.85) 30%,
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.project-overlay h5 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
}

.project-overlay span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
}
/* ─── PROJECTS end */

/* ─── SAFETY BAND start */
.safety-band {
    padding: 80px 0;
    background:
        linear-gradient(
            135deg,
            rgba(17, 20, 24, 0.95) 0%,
            rgba(36, 43, 52, 0.9) 100%
        ),
        url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1400&q=80")
            center/cover no-repeat;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 2px;
}

.cert-badge i {
    color: var(--primary);
    font-size: 24px;
}

.cert-badge span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}
/* ─── SAFETY BAND end */

/* ─── AREAS start─── */
.areas-section {
    padding: 96px 0;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--light);
    border-radius: 2px;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--dark);
    border-left: 3px solid transparent;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.area-item:hover {
    border-color: var(--primary);
    background: #fff;
}

.area-item i {
    color: var(--primary);
    font-size: 16px;
}
/* ─── AREAS end */

/* ─── CTA SECTION start─── */
.cta-section {
    padding: 96px 0;
    background:
        linear-gradient(135deg, var(--primary), var(--primary-dark)),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80")
            center/cover no-repeat;
    text-align: center;
}

.cta-section h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 36px;
}

.btn-dark-cta {
    background: var(--dark);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    padding: 16px 40px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn-dark-cta:hover {
    background: #0a0d10;
    color: #fff;
}
/* ─── CTA SECTION end */

/* team section start here */
section.team-section {
}

section.team-section .team-card {
    background: var(--light);
    border-radius: 2px;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

section.team-section .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

section.team-section .team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

section.team-section .team-card-body {
    padding: 20px 24px 24px;
}

section.team-section .team-card-body h5 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    margin-bottom: 2px;
}

section.team-section .team-card-body span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
}

section.team-section .team-card-body p {
    font-size: 13px;
    color: #5a6470;
    margin-top: 10px;
    line-height: 1.65;
}
/* team section end here */

/* about cta section start here */
section.cta-section-two {
    padding: 72px 0;
    background: var(--primary);
    text-align: center;
}
section.cta-section-two h2 {
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
section.cta-section-two p {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 28px;
}
section.cta-section-two a {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 2px;
    text-decoration: none;
}
/* about cta section end here */

/* mission section start  here  */
section.mission-section {
    background: var(--light);
}

section.mission-section {
}
section.mission-section .section-description {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 36px;
}

section.mission-section .value-item {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 28px;
}

section.mission-section .value-item h5 {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    margin-bottom: 6px;
}

section.mission-section .value-item p {
    font-size: 14px;
    color: #5a6470;
    line-height: 1.7;
    margin: 0;
}
section.mission-section .timeline {
    position: relative;
    padding-left: 40px;
}

section.mission-section .timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--primary),
        rgba(232, 160, 32, 0.1)
    );
}

section.mission-section .timeline-item {
    position: relative;
    margin-bottom: 36px;
}

section.mission-section .timeline-item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--light);
}

section.mission-section .timeline-item .year {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

section.mission-section .timeline-item h5 {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    margin-bottom: 6px;
}

section.mission-section .timeline-item p {
    font-size: 14px;
    color: #5a6470;
    line-height: 1.7;
    margin: 0;
}

/* mission section end  here  */

/* about intro section start here */
section.about-inro {
}
section.about-inro img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}
section.about-inro .description {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
}

/* Experience Section */
.experience {
    margin-top: 20px;
}

.experience .experience-box {
    padding: 20px;
    background: var(--light);
    border-radius: 2px;
}

.experience .experience-number {
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.experience .experience-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5a6470;
}
/* about intro section end here */

/* project gallery section start here */

section.project-gallery {
}

section.project-gallery .description {
    color: #5a6470;
    font-size: 15px;
}
section.project-gallery .filter-btn {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 2px;
    background: var(--light);
    color: #5a6470;
    border: 1px solid #ddd;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

section.project-gallery .filter-btn.active,
section.project-gallery .filter-btn:hover {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

section.project-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

section.project-gallery .gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

section.project-gallery .gallery-item:hover img {
    transform: scale(1.06);
}

section.project-gallery .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 16, 0.85) 30%,
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

section.project-gallery .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

section.project-gallery .gallery-item-overlay .tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

section.project-gallery .gallery-item-overlay h5 {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0;
}

section.project-gallery .gallery-item.hidden {
    display: none;
}
/* project gallery section end here */

/* project stats section css start here */
section.project-stats {
    padding: 64px 0;
    background: var(--primary);
}
section.project-stats .name {
    font-family: "Oswald", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}
/* project cta section css start here */
section.project-cta {
    padding: 80px 0;
    background: var(--dark-2);
    text-align: center;
}
section.project-cta .description {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 40px;
}
/* project cta section css end here */

/* ===============================
   HEALTH INTRO SECTION start
=================================*/

section.health-intro {
}

section.health-intro .intro-text {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 20px;
}

section.health-intro .intro-text-spaced {
    margin-bottom: 28px;
}

section.health-intro .quote-box {
    background: var(--light);
    padding: 20px 24px;
    border-radius: 2px;
    border-left: 4px solid var(--primary);
}

section.health-intro .quote-text {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    color: var(--dark);
}

section.health-intro .quote-author {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 13px;
    color: #5a6470;
}

section.health-intro .intro-image {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

section.health-intro .fade-delay {
    transition-delay: 0.2s;
}

/* ===============================
   HEALTH INTRO SECTION end
=================================*/

/* ===============================
   COMPLIANCE SECTION start
=================================*/

.compliance {
    background: var(--light);
}

.compliance .compliance-intro-text {
    color: #5a6470;
    font-size: 15px;
}

.compliance .compliance-card {
    background: #fff;
    padding: 24px;
    border-radius: 2px;
    height: 100%;
    border-top: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.compliance .compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.compliance .compliance-title {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark);
}

.compliance .compliance-text {
    font-size: 13px;
    color: #5a6470;
    line-height: 1.7;
    margin: 0;
}
/* ===============================
   COMPLIANCE SECTION end
=================================*/

/* ===============================
   PROCEDURES SECTION start
=================================*/

.procedures {
}

/* ---------- LEFT CONTENT ---------- */

.procedures .procedure-heading {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.procedures .procedure-heading.mt-8 {
    margin-top: 8px;
}

.procedures .procedure-text {
    font-size: 14px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ---------- RIGHT CONTENT ---------- */

.procedures .delay {
    transition-delay: 0.2s;
}

.procedures .equipment-intro {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ---------- EQUIPMENT CARD ---------- */

.procedures .equipment-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--light);
    padding: 16px 20px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.procedures .equipment-card:hover {
    transform: translateY(-4px);
}

.procedures .equipment-icon {
    color: var(--primary);
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.procedures .equipment-title {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    margin-bottom: 2px;
}

.procedures .equipment-text {
    font-size: 13px;
    color: #5a6470;
}
/* ===============================
   PROCEDURES SECTION end
=================================*/

/* ===============================
   TRAINING SECTION start
=================================*/

.training {
    background: var(--dark-2);
}

/* ---------- INTRO TEXT ---------- */

.training .training-intro {
    color: var(--muted);
    font-size: 15px;
}

/* ---------- CARD ---------- */

.training .training-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 2px;
    height: 100%;
    transition: all 0.3s ease;
}

.training .training-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
}

/* ---------- ICON ---------- */

.training .training-icon {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

/* ---------- TITLE ---------- */

.training .training-title {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

/* ---------- TEXT ---------- */

.training .training-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}
/* ===============================
   TRAINING SECTION end
=================================*/

/* ===============================
   AREAS INTRO SECTION start
=================================*/

.areas-intro {
}

/* ---------- INTRO TEXT ---------- */

.areas-intro .areas-intro-text {
    color: #5a6470;
    font-size: 15px;
}

/* ---------- CARD ---------- */

.areas-intro .area-card {
    background: var(--dark-2);
    padding: 32px;
    border-radius: 2px;
    height: 100%;
    transition: all 0.3s ease;
}

.areas-intro .area-card:hover {
    transform: translateY(-6px);
}

/* ---------- HEADER ---------- */

.areas-intro .area-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.areas-intro .area-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 2px;
    flex-shrink: 0;
}

.areas-intro .area-title {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin: 0;
}

/* ---------- LIST ---------- */

.areas-intro .area-list-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: #8a939e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.areas-intro .area-check {
    color: var(--primary);
    font-size: 12px;
}

/* ---------- ANIMATION DELAYS ---------- */

.areas-intro .delay-1 {
    transition-delay: 0.1s;
}

.areas-intro .delay-2 {
    transition-delay: 0.2s;
}
/* ===============================
   AREAS INTRO SECTION end
=================================*/

/* ===============================
   OTHER AREAS SECTION start
=================================*/

.other-areas {
    background: var(--light);
}

/* ---------- INTRO TEXT ---------- */

.other-areas .other-areas-intro {
    color: #5a6470;
    font-size: 15px;
}

/* ---------- AREA ITEM ---------- */

.other-areas .other-area-item {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 2px;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.other-areas .other-area-item:hover {
    border-left-color: var(--primary);
    transform: translateX(4px);
}

/* ---------- ICON ---------- */

.other-areas .other-area-icon {
    color: var(--primary);
    font-size: 14px;
}
/* ===============================
   OTHER AREAS SECTION end
=================================*/

/* ===============================
   COVERAGE CHECK SECTION start
=================================*/

.coverage-check {
    padding: 80px 0;
    background: var(--dark-2);
    text-align: center;
}

/* ---------- BOX ---------- */

.coverage-check .coverage-box {
    background: var(--primary-palet);
    border: 1px solid rgba(232, 160, 32, 0.2);
    padding: 48px;
    border-radius: 2px;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- ICON ---------- */

.coverage-check .coverage-icon {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

/* ---------- TITLE ---------- */

.coverage-check .coverage-title {
    font-size: 28px;
    margin-bottom: 10px;
}

/* ---------- TEXT ---------- */

.coverage-check .coverage-text {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 28px;
}

/* ---------- ACTIONS ---------- */

.coverage-check .coverage-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- PRIMARY BUTTON ADJUST ---------- */

.coverage-check .coverage-btn {
    font-size: 14px;
    padding: 12px 28px;
}

/* ---------- PHONE BUTTON ---------- */

.coverage-check .coverage-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.coverage-check .coverage-phone:hover {
    border-color: var(--primary);
}

/* ---------- PHONE ICON ---------- */

.coverage-check .coverage-phone-icon {
    color: var(--primary);
}
/* ===============================
   COVERAGE CHECK SECTION end
=================================*/

/* ===============================
   contact form css start here
=================================*/

.contact-form label {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e4e8;
    border-radius: 2px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--dark);
    background: #fff;
    transition: border-color 0.2s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
    outline: none;
}

.info-card {
    background: var(--dark-2);
    padding: 24px;
    border-radius: 2px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 160, 32, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 2px;
    flex-shrink: 0;
}

.info-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.info-card-value {
    font-family: "Oswald", sans-serif;
    font-size: 17px;
    color: #fff;
}

.info-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.success-banner {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
    padding: 16px 20px;
    border-radius: 2px;
    font-weight: 600;
    display: none;
}

/* ===============================
   CONTACT FORM INFO
=================================*/

.contact-form-info {
    transition-delay: 0.2s;
}

/* ---------- TITLE ---------- */

.contact-form .contact-form-title {
    font-size: 28px;
    margin-bottom: 8px;
}

/* ---------- INTRO TEXT ---------- */

.contact-form .contact-form-intro {
    font-size: 14px;
    color: #5a6470;
    margin-bottom: 28px;
}

/* ===============================
   INFO CARD
=================================*/

.contact-form .info-card {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-form .info-card-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 16px;
}

.contact-form .info-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-form .info-card-value {
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.contact-form .info-card-value:hover {
    color: var(--primary);
}

.contact-form .info-card-sub {
    font-size: 13px;
    color: #5a6470;
}

/* ===============================
   CREDENTIALS BOX
=================================*/

.contact-form .contact-credentials {
    margin-top: 24px;
    padding: 20px;
    background: var(--light);
    border-radius: 2px;
}

.contact-form .contact-credentials-title {
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.contact-form .credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form .credential-icon {
    color: var(--primary);
}

/* ===============================
   contact form css end here
=================================*/

/* ===============================
   PROMISE BAND SECTION start
=================================*/

.promise-band {
    padding: 64px 0;
    background: var(--dark-2);
    text-align: center;
}

/* ---------- ICON ---------- */

.promise-band .promise-icon {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

/* ---------- TITLE ---------- */

.promise-band .promise-title {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
}

/* ---------- TEXT ---------- */

.promise-band .promise-text {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
/* ===============================
   PROMISE BAND SECTION end
=================================*/

/* ===============================
   DOMESTIC SCAFFOLDING INTRO start
=================================*/

.domestic-scaffolding-intro {
    padding: 96px 0;
}

/* ---------- IMAGE ---------- */
.domestic-scaffolding-intro .intro-image {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* ---------- TEXT ---------- */
.domestic-scaffolding-intro .intro-text-col {
    transition-delay: 0.2s;
}

.domestic-scaffolding-intro .intro-text {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 20px;
}

.domestic-scaffolding-intro .intro-text:last-of-type {
    margin-bottom: 32px;
}

/* ---------- BUTTONS ---------- */

.domestic-scaffolding-intro .intro-btns .btn-call {
    color: var(--dark);
    border-color: var(--dark);
}

.custom-btn-outline:hover {
    background: var(--primary);
    color: var(--light);
    transition:
        all 0.2s,
        transform 0.1s;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}
/* ===============================
   DOMESTIC SCAFFOLDING INTRO end
=================================*/

/* ===============================
   where we work start
=================================*/
section.where-we-work {
    background: var(--light);
}
section.where-we-work .description {
    color: #5a6470;
    font-size: 15px;
}
section.where-we-work .use-case-card {
    background: var(--light);
    padding: 24px;
    border-radius: 2px;
    border-left: 4px solid var(--primary);
    transition: background 0.2s;
}

section.where-we-work .use-case-card:hover {
    background: #fff;
}

section.where-we-work .use-case-card i {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 12px;
}

section.where-we-work .use-case-card h5 {
    font-family: "Oswald", sans-serif;
    font-size: 17px;
    margin-bottom: 6px;
}

section.where-we-work .use-case-card p {
    font-size: 13px;
    color: #5a6470;
    margin: 0;
    line-height: 1.65;
}
/* ===============================
   where we work end
=================================*/

/* ===============================
   process start here
=================================*/
section.process {
    background: var(--dark-2);
}
.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    align-items: flex-start;
}
section.process p {
    color: var(--muted);
}
section.process h5 {
    color: #fff;
}
.step-num {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--white);
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
}

.process-step h5 {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 14px;
    color: #5a6470;
    line-height: 1.7;
    margin: 0;
}

/* ===============================
   process end here
=================================*/

/* ===============================
   DOMESTIC SAFETY MEASURES start
=================================*/
.domestic-safety-measures {
    padding: 96px 0;
}

.domestic-safety-measures .safety-text-col .description {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 28px;
}

.domestic-safety-measures .safety-list {
    font-size: 14px;
    color: #2c3540;
    padding-left: 0;
}

.domestic-safety-measures .safety-item {
    margin-bottom: 8px;
}

.domestic-safety-measures .safety-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.domestic-safety-measures .safety-image-col {
    transition-delay: 0.2s;
}

.domestic-safety-measures .safety-image {
    width: 100%;
    border-radius: 2px;
    height: 480px;
    object-fit: cover;
}
/* ===============================
   DOMESTIC SAFETY MEASURES end
=================================*/

/* ===============================
   commercial intro start
=================================*/
.commercial-intro {
    padding: 96px 0;
}

.commercial-intro .commercial-description {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 20px;
}

.commercial-intro .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.commercial-intro .btn-outline-dark {
    color: var(--dark);
    border-color: var(--dark);
}

.commercial-intro .image-col {
    transition-delay: 0.2s;
}

.commercial-intro .commercial-img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}
/* ===============================
   commercial intro end
=================================*/

/* ===============================
   sectors intro start
=================================*/
.sectors {
    padding: 96px 0;
    background: var(--light);
}

.sectors .sector-card {
    background: #fff;
    padding: 28px;
    border-radius: 2px;
    height: 100%;
    border-top: 4px solid var(--primary);
    transition: box-shadow 0.3s ease;
}

.sectors .sector-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.sectors .sector-card i {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}

.sectors .sector-title {
    font-family: "Oswald", sans-serif;
    font-size: 19px;
    margin-bottom: 8px;
}

.sectors .sector-text {
    font-size: 13px;
    color: #5a6470;
    line-height: 1.7;
    margin: 0;
}
/* ===============================
   sectors intro end
=================================*/

/* ===============================
   capabilities start
=================================*/
.capabilities {
    padding: 96px 0;
    background: var(--dark-2);
}

.capabilities .capability-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #b0bcc8;
    font-weight: 600;
    transition: all 0.3s ease;
}

.capabilities .capability-item i {
    color: var(--primary);
    flex-shrink: 0;
}

.capabilities .capability-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}
/* ===============================
   capabilities end
=================================*/

/* ===============================
   commercial-safety start
=================================*/
.commercial-safety-process {
    padding: 96px 0;
}

.commercial-safety-process .description {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 28px;
}

.commercial-safety-process .process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 16px;
    flex-shrink: 0;
}

.step-info .step-title {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    margin-bottom: 3px;
}

.step-info .step-description {
    font-size: 13px;
    color: #5a6470;
    line-height: 1.65;
}

.process-image {
    width: 100%;
    border-radius: 2px;
    height: 560px;
    object-fit: cover;
}
/* ===============================
   commercial-safety end
=================================*/

/* ===============================
   commercial-safety end
=================================*/
.section-padding {
    padding: 96px 0;
}

.roof-image {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.description {
    font-size: 15px;
    color: #5a6470;
    line-height: 1.8;
    margin-bottom: 20px;
}

.roof-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.roof-features .feature-item i {
    color: var(--primary);
}

/* Footer Section start*/
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 0px;
    font-size: 14px;
}

.site-footer .footer-logo {
    width: 80px;
}

.site-footer .footer-desc {
    margin-bottom: 20px;
    color: #b0bcc8;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    font-size: 16px;
    color: #fff;
    transition: background 0.2s;
}

.footer-social-link:hover {
    background: var(--primary);
    color: var(--white);
}
/* Footer Titles */
.footer-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #b0bcc8;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.footer-links li a:hover {
    color: var(--primary);
}
.footer-links li a i {
    font-size: 11px;
    color: var(--primary);
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item .contact-info {
    font-weight: 700;
    color: #fff;
}

.footer-contact-item .contact-sub {
    font-size: 12px;
    color: #b0bcc8;
}

/* Footer Bottom */
.footer-bottom {
    border-top: none;
    padding: 20px 0px;
    font-size: 12px;
    color: #b0bcc8;
}

/* Footer Section end*/
