*{
    caret-color: transparent;
}
.hero-img {
    background: url(./construction-img/construction-site.jpg) no-repeat center center fixed  !important;
    background-size: cover  !important;
    color: white;
    font-family: Arial, sans-serif;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    height: 100vh;
    

    min-height: 300px;
    background: no-repeat center center scroll;
    background-size: 100% 100%;
    position: relative;
}

.carousel-caption {
    bottom: 10%;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: bold;
    animation: fadeInDown 2s;
}

.carousel-caption p {
    font-size: 1.25rem;
    animation: fadeInUp 2s;
}

.carousel-caption .btn {
    font-size: 1rem;
    /* padding: 0.75rem 1.5rem; */
    border: 2px solid #ffc107;
    color: #ffc107;
    background-color: transparent;
    transition: all 0.3s;
    animation: fadeInUp 1s;
}

.carousel-caption .btn:hover {
    background-color: #ffc107;
    color: #fff;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ================================== */
.content {
    display: flex;
    align-items: center;
 
}

.content img {
    max-width: 100%;
    height: auto;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.text-content h2 {
    font-size: 28px;
    font-weight: bold;
}

.text-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.text-content ul {
    list-style: none;
    padding: 0;
}

.text-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.text-content ul li i {
    color: #f39c12;
    margin-right: 10px;
}

.highlight {
    border-bottom: 3px solid #f39c12;
    display: inline-block;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===============number-section=============== */
/* .highlight {
    color: #00b894;
}
.small-text {
    font-size: 0.9rem;
    color: #f1c40f;
}
.stats {
    font-size: 2rem;
    font-weight: bold;
}
.stats-description {
    font-size: 1rem;
} */
.number-img {
    background: url(./construction-img/bg-img-new.jpg) no-repeat center center fixed !important;
    background-size: cover !important;
    color: white;
    font-family: Arial, sans-serif;
    /* height: 70vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* filter: brightness(80%); */
}

.small-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: #FFD700;
    /* Gold color */
}

.stats {
    color: #FFD700;
    /* Gold color for stats */
    transition: transform 0.3s, color 0.3s;
    font-size: 2.5rem;
    font-weight: bold;
}

.stats-container:hover .stats {
    transform: scale(1.1);
    color: #fff;
    /* Change color on hover */
}

.stats-description {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Delay the animation for each stat */
.stats-container:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-container:nth-child(2) {
    animation-delay: 0.3s;
}

.stats-container:nth-child(3) {
    animation-delay: 0.5s;
}

.stats-container:nth-child(4) {
    animation-delay: 0.7s;
}

@media (max-width: 768px) {
    .highlight {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .stats {
        font-size: 2rem;
    }
}

/* ============why choose us===================== */
.section-title {

    text-align: center;
    /* margin-bottom: 30px; */
}

.section-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.section-title p {
    color: #f39c12;
    font-weight: bold;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 36px;
    color: #f39c12;
    margin-bottom: 10px;
    transition: color 0.3s, transform 0.3s;
}

.feature-box:hover i {
    color: black;
    transform: rotate(360deg);
}

.feature-box h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
}
/* ================================================== */
.hero-section {
    /* padding: 50px; */
    text-align: left;
    background-color: #fff;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #f5b642, #a67c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1rem;
    margin-top: 20px;
    color: #666;
}

.btn-learn-more {
    margin-top: 30px;
    padding: 10px 20px;
    border: 2px solid #f5b642;
    border-radius: 25px;
    background-color: transparent;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.btn-learn-more:hover {
    background-color: #f5b642;
    color: #fff;
}

/* ======================================= */
.about-section {
    text-align: center;
    padding: 50px 0;
}

.about-section h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 30px;     */
}

.about-content img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.about-content img:hover {
    transform: scale(1.05);
}

.about-text {

    /* margin-left: 30px; */
    color: #ffffff;
    font-size: 16px;
}


/* ===============OUR CLIENTS================= */
.main-container {
    background-image: url(./construction-img/bg-img-new.jpg);
    /* Placeholder for the background image */
    background-size: cover;
    background-position: center;
    color: white;
    font-family: Arial, sans-serif;
}

.clients-section {
    text-align: center;
    padding: 50px 0;
}

.clients-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.clients-section h2::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: orange;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.clients-section img {
    max-height: 50px;
    margin: 0 20px;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.clients-section img:nth-child(1) {
    animation-delay: 0.5s;
}

.clients-section img:nth-child(2) {
    animation-delay: 1s;
}

.clients-section img:nth-child(3) {
    animation-delay: 1.5s;
}

.clients-section img:nth-child(4) {
    animation-delay: 2s;
}

.clients-section img:nth-child(5) {
    animation-delay: 2.5s;
}

.clients-section img:nth-child(6) {
    animation-delay: 3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =================contact-us=================== */
.contact-us {
    background: url(./construction-img/contact-us.jpg) no-repeat center center fixed !important;
    background-size: cover  !important;
    color: white;
    font-family: Arial, sans-serif;
    /* height: 70vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section {
    background-color: rgba(0, 0, 0, 0.7);
    /* padding: 50px; */
    border-radius: 10px;
    width: 95%;
    max-width: 900px;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-section .info {
    margin-bottom: 10px;
}

.contact-section .info i {
    font-size: 20px;
    margin-right: 10px;
}

.contact-section .info p {
    margin: 0;
}

.contact-section .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0;
    color: white;
    margin-bottom: 20px;
}

.contact-section .form-control::placeholder {
    color: white;
}

.contact-section .btn-submit {
    background-color: #FFA500;
    border: none;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
}




@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption{
        right: 5%;
        left: 5%;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    /* =================universal-text-small====================== */
    .responcive-heading{
        font-size: larger !important;
    }
    
}