:root {
    --primary-color: #f0861c;
    --dark-color: #212529;
    --secondary-dark: #333;
    --gray-color: #6c757d;
    --light-gray-bg: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-color);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 700;
}

.btn-primary-custom {
    background: #fff;
    /* background-color: var(--primary-color); */
    border-color: var(--primary-color);
    color: #138808;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #FF9933, #fff, #138808);
    border-color: #e4a60b;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary-whatsapp {
    background: #1ace0a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 5px 15px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary-whatsapp:hover {
    background: #fff;
    border: 1px solid #1ace0a;
    color: #1ace0a;
}

/* .gradient-text {
  background: linear-gradient(135deg, #FF9933, #fff, #138808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */


/* .gradient-text {
  background: linear-gradient(135deg, #FF9933, #fff, #138808);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} */


.gradient-text {
    /* font-size: 60px;
  font-weight: 800; */

    background: linear-gradient(90deg,
            #FF9933 0%,
            #FF9933 20%,
            #ffffff 50%,
            #138808 100%,
            #138808 100%);

    background-size: 400% 100%;
    background-position: 0% 50%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: tirangaFlow 4s ease-in-out infinite;
}

/* Only color flow – text stable */
@keyframes tirangaFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}






.btn-secondary-custom {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 11px 20px;
    font-size: 13px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #fff;
    color: var(--dark-color);
}

.section-padding {
    padding: 80px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Top Bar */
.top-bar {
    background-color: #f1f1f1;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar i {
    color: var(--primary-color);
    margin-right: 5px;
    /* border: 1px solid;
    padding: 10px; */
    /* width: 35px; */
    /* height: 50px; */
    /* font-size: 20px;
    line-height: 36px;
    padding: 0 12px;
    text-align: center; */
}

.head-block {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;

}

.head-text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 0;

}

.head-heading {
    display: block;
    font-size: 12px;
    color: #333232;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 20px;
    text-transform: uppercase;

}

.head-content {
    font-size: 12px;
    font-weight: 500;
    line-height: 10px;
    color: #4b4a4a;
}

.head-icon {

    /* border: 1px dotted var(--primary-color); */
    /* color: #e63f37;
    color: #4a4a4a; */
    /* font-size: 18px;
    line-height: 36px; */
    padding: 0 0px 0 30px;
    /* text-align: center; */
}

/* Navbar */

.carousel-control-next-icon,
.carousel-control-prev-icon {

    background-color: #fdb8139e;

    padding: 20px 0px;
    border-radius: 25%;

}


.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-color) !important;
}

.navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Slider */
#heroCarousel {
    height: 80vh;
}

.carousel-item {
    height: 90vh;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin: 20px 0 30px 0;
    color: #fff;
}

@media screen and (max-width:768px) {

    .carousel-caption p {
        font-size: 1rem;
        margin: 20px 40px 30px 40px !important;
    }

}

/* About Section */
#about .about-text {
    background-color: #fff;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-left: -50px;
    z-index: 1;
    border-radius: 5px;

}

#about .about-text h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

#about .about-text span {
    color: var(--primary-color);
    font-weight: 800;
}

#about img {
    border-radius: 5px;
}

/* --- SERVICES SECTION (UPDATED) --- */
#services {
    background-color: var(--light-gray-bg);
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 350px;
    margin-bottom: 20px;
}

.service-card .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* Slow zoom transition */
}

.service-card:hover .service-img {
    transform: scale(1.1);
    /* Zoom effect */
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.service-card-overlay h4 {
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.service-card-overlay .btn-price {
    background-color: #218f16;
    color: #fff;
    font-weight: 600;
    padding: 5px 20px;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
}

/* Brands Section */
#brands .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* filter: grayscale(100%);
            opacity: 0.6; */
    transition: all 0.3s ease;
    /* box-shadow: 0px 0px #373737; */
}

#brands .swiper-slide:hover {
    filter: grayscale(0%);
    /* opacity: 1; */
    filter: grayscale(100%);
    opacity: 0.6;
}

.swiper {
    padding: 10px;
}

.client-logo {

    /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.274)); */
    width: 200px !important;
    box-shadow:0px 0px 15px rgba(0, 0, 0, 0.200);
    border-radius: 15px;
}

.client-logo-text {
    font-size: 12px;
    font-weight: 500;

}

.footer-logo {
    background: #fff;
    padding: 10px;
    border-radius: 5px;

}


#whychoose {

    background-image: url(assets/image/why-choose.jpg);

}


/* Work Process Section */
#process {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1555774698-0b77e0abfe79?q=80&w=1932&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
}

#process .section-title h2,
#process .section-title p {
    color: #fff;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    font-size: 2rem;
    font-weight: 700;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.process-step h4 {
    color: #fff;
}

/* Stats Section */
.stat-item {
    text-align: center;
}

.stat-item .counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* Testimonial Section */
#testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517420704952-d9f39e95b43e?q=80&w=1770&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

#testimonial .icon {
    font-size: 3rem;
    color: var(--primary-color);
}

#testimonial blockquote {
    font-size: 1rem;
    font-style: italic;
    max-width: 800px;
    margin: 30px auto;
}

#testimonial .author {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Team Section */
#team {
    background-color: var(--light-gray-bg);
}

.team-member {
    text-align: center;
}

.team-member img {
    border-radius: 5px;
    margin-bottom: 20px;
    width: 75%;
}

.team-member h5 {
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: #626262;
    /* font-weight: 600; */
}

/* News Section */
.news-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .card-body {
    padding: 25px;
}

.news-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.news-card .card-title a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s;
}

.news-card .card-title a:hover {
    color: var(--primary-color);
}

/* CTA Section */
#cta {
    background-color: var(--primary-color);
}

#cta h3 {
    font-weight: 700;
    color: var(--dark-color);
}

#cta .btn-dark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

#cta .btn-dark:hover {
    background-color: #000;
    border-color: #000;
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    color: #ccc;
}

footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

footer p,
footer li {
    font-size: 0.9rem;
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

footer .list-unstyled li {
    margin-bottom: 10px;
}

footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #444;
    color: #fff;
    border-radius: 4px;
    margin-right: 5px;
}

footer .social-icons a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    padding-left: 0;
}

.footer-bottom {
    background-color: var(--dark-color);
    padding: 15px 0;
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
}


/* ---------------------mobile screen CSS ---------- */

.head-block-mobile {
    display: flex;
}

.mobile-menu-bar {
    font-size: 20px;
    color: black !important;
    border: 1px solid #999999;
    padding: 5px 10px;
    background: linear-gradient(135deg, #FF9933, #fff, #138808);
    border-radius: 5px;
}

@media screen and (min-width:992px) {

    .navbar-toggler {
        display: none !important;
    }

}

@media screen and (max-width:992px) {

    .head-block-mobile {

        display: none;
    }

    .about-text {
        margin-left: 0px !important;
    }

}




.modal-body {
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-body::-webkit-scrollbar {
    display: none;
}