@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Readex+Pro:wght@160..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #FF5900;
    --heading-font: 'Readex Pro', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --footer-font: 'Inter Tight', sans-serif;
}

body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

.top-strip {
    background: #000;
    font-size: 12px;
    letter-spacing: 2px;
}

.brand-logo img {
    height: 65px;
    width: 200px;
}

.brand-row {
    color: #000;
    font-size: 14px;
}

.site-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    font-family: var(--heading-font);
    margin: 0;
}

.est-date {
    font-size: 14px;
    color: #000;
    margin: 0;
    text-decoration: underline;
    font-weight: 400;
    margin-bottom: 10px;
}

.divider {
    height: 30px;
    width: 1px;
    background: #fff;
    display: inline-block;
}

/* NAVBAR */
.main-navbar {
    background: var(--primary-color);
    padding: 10px 0;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: space-between;
}

.main-navbar .nav-link {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.nav-link.active {
    color: #fff !important;
}

.navbar-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.phone-link {
    font-weight: 600;
}

.recone-section {
    background: #F7F7F9;
}

.section-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ff5a1f;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 12px 0 8px;
    color: #000;
}

.title-underline {
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.section-desc {
    font-size: 16px;
    color: #7A7A7A;
    line-height: 1.7;
}

/* Cards */
.service-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    padding: 40px 28px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.icon-box {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
}

.icon-box img {
    width: 50px;
    height: 55px;
}

.service-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    font-size: 16px;
    color: #7a7a7a;
    margin: 0;
}

.about-us {
    color: #7a7a7a;
}

.about-us .title-underline,
.rebuild-sec .title-underline,
.contact-section .title-underline {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px 0px;
}

.btn-dark {
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    background: #000;
}

.btn-white {
    text-transform: capitalize;
    text-decoration: none;
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
}

.btn-white:hover {
    border: 1px solid #fff;
}

.btn-white:hover i {
    color: #fff;
}

.btn-dark i,
.btn-white i {

    color: var(--primary-color);
    text-transform: capitalize;
    margin-left: 4px;

}

.img-wrap {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.img-wrap img {
    width: 100%;
    transition: all 0.6s ease;
}

.img-wrap img:hover {
    transform: scale(1.05);
}

.rebuild-sec {
    padding: 60px 0px;
    height: 80vh;
}

.img-wrapper {
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;
}

.img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.solution-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.solution-content {
    color: #000;
    text-align: center;
    max-width: 300px;
    margin: 30px auto;
}


.solution-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.solution-content p {
    font-size: 16px;
    margin: 0;
    color: #7a7a7a;
    line-height: 1.4;
}


.solution-card:hover img {
    transform: scale(1.08);
}

.solution-card:hover .solution-content {
    opacity: 1;
    transform: translateY(0);
}

.orange-feature-section {
    background: var(--primary-color);
}


.feature-card {
    display: block;
    text-decoration: none;
    color: #fff;
}


.feature-card img {
    width: 100%;
    height: 560PX;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease-in;
}

.feature-card:hover img {
    transform: scale(1.05);
}


/* Text */
.feature-content {
    margin-top: 20px;
    color: #ffffff;
}

.feature-content h4 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    background: #fff;
}


.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
}

.form-control {
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-dark {
    border-radius: 8px;
    font-weight: 600;
}

.contact-form-card .col-md-6,
.contact-form-card .col-12 {
    margin-top: 25px;
}

.site-footer {
    background: #000;
    color: #ccc;
    font-size: 16px;
    font-family: var(--footer-font);
}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-list a {
    color: #FFF;
    text-decoration: none;
}


.footer-list i {
    font-size: 16px;
    margin-top: 3px;
}


.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    font-size: 16px;
    color: #9D9D9D;
}

.footer-bottom a {
    color: #9D9D9D;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom-links span {
    margin: 0 6px;
}

.breadcrumb-hero {
    position: relative;
    height: 350px;
    background: url('../img/breadcrum-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.breadcrumb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.breadcrumb-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-text span {
    color: var(--primary-color);
}

.breadcrumb-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}

.about-rebuild {
    background: var(--primary-color) !important;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 30px;
    }

    .contact-form-card {
        padding: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
    }
}