/********** Template CSS **********/
:root {
    --primary: #EE7F00;
    --secondary: #F6F6F6;
    --light: #FFFFFF;
    --dark: #152440;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 36, 64, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: #EE7F00 ;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #EE7F00 ;
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #EE7F00 ;
    background: none;
    border: 2px solid #EE7F00 ;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #fbfcff;
    background: #EE7F00 ;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.whats-float {
    position: fixed;
    transform:translate(108px,0px);
    top:50%;
    right:0;
    width:150px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 4px 0 0 4px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 14px;
    padding-top: 2px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}


.navbar-nav .nav-link {
            margin-right: 15px;
        }

        #lang-toggle {
            border-radius: 20px;
            padding: 6px 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: #ff6600;
            color: #fff;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: #fff;
                padding: 15px;
                border-radius: 5px;
            }
            #lang-toggle {
                display: block;
                width: 100%;
                margin-top: 10px;
            }
        }
		
		
		.client-carousel .client-logo {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #eaeaea;
}

.client-carousel .client-logo img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-carousel .client-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: left;
}

.service-content h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #152440; /* Bootstrap Primary */
}

.service-content p {
    margin-bottom: 0;
    color: #555555;
    line-height: 1.6;
}
.about-content h2 {
    font-weight: 700;
    line-height: 1.3;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-license {
    background: #f5f7fa;
    padding: 10px 15px;
    border-left: 4px solid #0d6efd;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.client-logo-box {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
}

.client-logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.35s ease;
    /* ❌ grayscale removed */
}

.client-logo-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.client-logo-box:hover img {
    transform: scale(1.08);
}

.career-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.industry-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-tab {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-tab:hover,
.industry-tab.active {
    background: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
}

.industry-content-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.industry-content {
    display: none;
}

.industry-content.active {
    display: block;
}

.industry-content h3 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.industry-content ul {
    padding-left: 18px;
}

.industry-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}
