@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Inter Tight", sans-serif;
}

:root {
    --primary-color: #3F3024;
    --grey-color: #86898C;
    --black-color: #000000;
    --white-color: #ffffff;
}

.bg-reds {
    background: #F95A3F;
}

.bg-black {
    background: #000;
}

.bg-whites {
    background: #fff;

}

.text-brown {
    color: #3F3024;
}

.btn-dark-brown {
    background: var(--primary-color);
    text-decoration: none;
    padding: 7px 20px;
    color: var(--white-color) !important;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
    font-size: 16px;

}

.btn-dark-brown:hover {
    background-color: var(--black-color);
    color: var(--black-color);
    transform: scale(1.05);
}


.btn-transp {
    border: 1px solid var(--white-color);
    text-decoration: none;
    padding: 7px 20px;
    color: var(--white-color);
    background: transparent;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;

}

.btn-transp:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    transform: scale(1.05);
}

.head-title {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/*********Navigation************/
.headerbg {
    background-color: #FFFAE5;
    background-image: url('../images/headerbg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: relative;
}

a.navbar-brand img {
    max-width: 150px;
}

.navbar ul.navbar-nav li {
    padding: 0 10px;
}

.navbar ul.navbar-nav li a {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 500;
}

.navbar ul.navbar-nav li a.nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 50px;

}

.navbar .right-menus {
    display: flex;
    justify-content: space-around;
    list-style: none;
    align-items: center;
    margin: 0;
}

.navbar .right-menus li {
    margin: 0 15px;
}

.navbar .right-menus li a {
    text-decoration: none;
    font-size: 18px;
    color: var(--black-color);
}

/***** Home Banner Slider *****/

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .hero-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--black-color);
}

.hero-section .hero-text {
    color: var(--black-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-section .client-note {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Banner Image */
.hero-section .banner-man {
    position: relative;
    bottom: -96px;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* Form Box */
.hero-section .form-box {
    background: #fff;
    border-radius: 12px;
}

.hero-section .form-control {
    border-radius: 8px;
    padding: 10px 12px;
}

.hero-section .form-check-label {
    color: #666;
    font-size: 0.9rem;
}

.hero-section .form-box .btn {
    max-width: 100%;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner-man {
        max-width: 80%;
        margin: 20px auto;
    }
}

/* Built to last */

.built-last .built-last-content h6 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.built-last .built-last-content h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 700;
    line-height: 1.3;
}

.built-last .built-last-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 50px;
}

.built-last .built-last-content,
.built-last .card {
    padding: 60px 0 20px;
}

.built-last .card {
    border: none;
    transition: transform 0.3s ease-in-out;
    background: transparent;
}

.built-last .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.built-last .card h5 {
    font-size: 20px;
    color: var(--black-color);
    padding: 10px 0;
    font-weight: 500;

}

.built-last .card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
}

.built-last .col-lg-3 {
    border-right: 1px solid #ccc;
}

.built-last .col-lg-3:last-child {
    border-right: none;
}


/*Building with Purpose */

.building-purpose {
    background: #FFFAE5;
    padding: 60px 0;
}

.building-purpose .building-purpose-content h6 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.building-purpose .building-purpose-content h2 {
    font-size: 36px;
    color: var(--black-color);
    padding: 10px 0;
    font-weight: 700;
}

.building-purpose .building-purpose-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

.building-purpose .counter-container {
    display: flex;
    gap: 50px;
    justify-content: start;
    text-align: center;
    margin-bottom: 10px;
}

.building-purpose .counter-box h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
}

.building-purpose .counter-box p {
    font-size: 18px;
    color: var(--black-color);
}



/* Our Blogs */

.our-blogs h6 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.our-blogs h2 {
    font-size: 36px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-align: center;

}

.our-blogs .card {
    background-color: #EDEDED;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    border: none;
}

.our-blogs .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: transparent;

}

.our-blogs .card .date {
    color: var(--primary-color);
    font-size: 16px;
}

.our-blogs .card h4 {
    font-size: 20px;
    color: #3D404F;
    padding: 10px 0;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.our-blogs .card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 10px;
}

/* Owl Carousel Nav Dots */
.our-blogs .owl-carousel .owl-dots.disabled {
    display: block !important;
    text-align: center;
    margin-top: 20px;
}

.our-blogs .owl-dots .owl-dot span {
    background: #D9D9D9 !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.our-blogs .owl-dots .owl-dot.active span {
    background: #3F3024 !important;
}

/* Testinonials */

.testimonials {
    background: #3F3024;
    padding: 60px 0;

}

.testimonials h6 {
    font-size: 20px;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0px;

}

.testimonials h2 {
    font-size: 36px;
    color: var(--white-color);
    padding: 10px 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;

}

.testimonials h4 {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 500;
    margin-top: 10px;

}

.testimonial-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 300px;
    padding: 20px;

}

.testimonial-card:hover {
    background: var(--white-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.testimonial-card:hover p {
    color: var(--black-color);
}


.testimonial-card .quote-icon {
    width: 101px !important;
    height: 101px !important;
}

.testimonial-card p span {
    color: #555555;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}



.star-rating {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.star-rating i {
    color: #FFD700;
    /* gold color */
    font-size: 20px;
}


/* Owl carousel nav dots */
.testimonials .owl-carousel .owl-dots.disabled {
    display: block !important;
}

#testimonials-slider .owl-dots .owl-dot span {
    background-color: #ffffff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 5px;
    transition: background-color 0.3s;
}

#testimonials-slider .owl-dots .owl-dot.active span {
    background-color: #FFAE00;
}


/* Timeless craftsmanship */

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-text {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-size: 100px;
    font-weight: bold;
    color: #DBDADA;
    user-select: none;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* Footer */

.footer-section {
    background-color: #140F0B;
}

.footer-section h6 {
    color: var(--white-color);
    font-size: 18px;
}

.footer-section p {
    color: #ffffff;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d9d9d9;
}

.footer-section hr {
    border: none;
    height: 1px;
    background-color: #3a3a3a;
    opacity: 1;
}

.footer-section .fa-location-dot,
.footer-section .fa-phone,
.footer-section .fa-envelope {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;

}


.footer-section .fa-facebook-f,
.footer-section .fa-instagram,
.footer-section .fa-linkedin-in {
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50px;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-section .fa-facebook-f:hover,
.footer-section .fa-instagram:hover,
.footer-section .fa-linkedin-in:hover {
    color: #d9d9d9;
}

/* About Us Page */

.inner-banner .breadcrumb li {
    font-size: 32px;
    color: var(--black-color);
    text-align: center;
    margin: 0 auto;
    padding: 50px 0;
}

/* About Building with Purpose */

.about-building {
    background: #FFF;
    padding: 60px 0;
}

.about-building .about-building-content h6 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-building .about-building-content h2 {
    font-size: 36px;
    color: var(--black-color);
    padding: 10px 0;
    font-weight: 700;
}

.about-building .about-building-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

/* Our Impact in Numbers */
.impact-numbers h2 {
    font-size: 36px;
    color: var(--black-color);
    padding: 10px 0;
    font-weight: 700;
}

.impact-numbers p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 10px;
}

.impact-numbers p span {
    color: var(--primary-color)
}

.impact-numbers .counter {
    font-size: 52px !important;
    font-weight: bold;
}

.impact-numbers .counter-box p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color)
}

/* Our Mission  */

.our-mission {
    background: #FFF;
    padding: 60px 0;
}

.our-mission h6 {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.our-mission p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
    text-align: center;
}

.our-mission img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

/* Core Value Section */

.core-value h6 {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.core-value h2 {
    font-size: 36px;
    color: var(--black-color);
    padding: 10px 0;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.core-value-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #86898C;
    padding: 20px 0;
    transition: all 0.5s ease-in-out;
}

.core-value-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px #D9D9D9;
}

.core-value-content p {
    max-width: 500px;
    text-align: left;
    float: right;
    color: var(--grey-color);
    font-size: 16px;
}