/* hero-styles.css */

.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    font-family: sans-serif;
    box-sizing: border-box;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    padding: 175px 20px 20px;
    z-index: 1;
    max-width: 1390px;
    margin: 0 auto;
    box-sizing: border-box;
	width:100%
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	margin-bottom: 40px;
}

.based-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #fff;
    font-size: 0.875rem;
}

.based-label i {
    margin-right: 5px;
}

.based-label .content {
    display: flex;
    font-weight: 500;
    opacity: 0.8;
}

.based-label .content span {
    margin-left: 5px;
    font-weight: 700;
}

.hero-headline {
    font-size: 85px;
	line-height: 85px;
	letter-spacing: -1.44px;
    color: #fff;
    font-weight: 700;
}

.hero-headline .highlight {
    color: #b92429;
}

.hero-services-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-services {
	display:flex;
	flex-direction:row;
	gap:8px;
	transition: transform 0.5s ease-in-out;
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
	flex:1;
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    box-sizing: border-box;
    color: #fff;
    transition: background-color 0.3s ease;
    width: calc(33.33% - 40px);
    text-align: left;
    position: relative;
    justify-content: space-between; /* Distribute space */
	min-height:330px
}

.desktop-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between; /* Distribute space vertically */
}

.service-card .item__content {
    text-align: left;
}
.service-card .item__content h5{
	font-size:24px;
	font-weight:700;
	line-height:28px;
	margin-bottom:16px;
	margin-top:0px
}

.service-card .item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space horizontally */
    margin-top: 0;
    width: 100%; /* Ensure bottom takes full width */
    box-sizing: border-box; /* Include padding in width calculation */
	
}

.service-card .item__art--desktop {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .item__art--desktop img{
    width: 56px;
    height: 56px;
}

.service-card .item__bottom--desktop {
    display: flex;
    align-items: center;
}


.service-card__link { /* Common link styles */
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
	position: absolute; 
	top: 0; 
	left: 0; 
	padding:48px;
}

.service-card__link:hover{
	text-decoration:none;
	color:#b92429;
    cursor: pointer;
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
}

.service-card__link:hover .arrow-btn i { /* Target the arrow icon */
    color: #b92429; /* Your desired red color */
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
}

.service-card__link:hover .item__art img { /* Target the image inside item__art */
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(2844%) hue-rotate(347deg) brightness(70%) contrast(97%);
	transition: all .1s ease;
	-webkit-transition: all .1s ease;
}

.service-card__link--mobile {
    display: none; /* Hide mobile link on desktop */
}


.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
	color: #b92429
}

.arrow-btn i {
    font-size: 1.2rem;
}

/* Hide Mobile Content on Desktop */
.mobile-content,
.service-card .item__art--mobile,
.service-card .item__bottom--mobile {
    display: none;
}


.awards-recognitions {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden; /* Important: Keep this for clipping the blur */
	border-radius: 25px;
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.awards-recognitions h4 {
	color: #fff;
    font-weight: 300;
    margin-right: 20px;
    white-space: normal;
    text-align: left;
    max-width: 115px;
    z-index: 1; /* Ensure text is above the blur */
    position: relative;
	line-height: 18px;
	letter-spacing: -.12px;
    font-family: "Work-Sans-Medium", sans-serif;
    font-size: 18px;
}

.awards-recognitions .items {
    display: flex;
	flex-direction: row;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
    align-items: center;
    gap: 15px;
    z-index: 1; /* Ensure images are above the blur */
    position: relative;
}

.awards-recognitions .items img {
    max-height: 130px;
    max-width: 150px;
}
	.service-card .item__content p
	{
		margin: 0;
		font-size: 14px;
	}

/* Mobile Styles */
@media (max-width: 1100px) {
	
	.service-card__link--desktop {
        display: none; /* Hide desktop link on mobile */
    }

    .service-card__link--mobile {
        display: block; /* Show mobile link on mobile */
        width: 100%;
		height: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: center;
		position: absolute; 
		top: 0; 
		left: 0; 
		padding: 24px;

    }
	.service-card .item__content h5
	{
		font-size: 15px;
		line-height: 24px;
	}
	
	.hero-headline {
  font-size: 29px;
  line-height: 36px;
	}
	.hero-text{
		margin-bottom:0px;
	}
	
    .desktop-content {
        display: none;
    }
    .mobile-content {
        display: flex;
        flex-grow: 1;
        align-items: flex-start;
		gap: 24px;
    }
	.hero-section{
		display: inline-block;
	}
    .hero-services {
        flex-direction: column;
    }

    .service-card {
        flex-direction: row;
        width: 100%;
        margin: 10px 0;
        padding: 110px !Important;
        align-items: flex-start;
        position: relative;
		min-height:auto;
    }

    .service-card .item__art--desktop,
    .service-card .item__bottom--desktop {
        display: none;
    }

    .service-card .item__content {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .service-card .text-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }


    .service-card .item__bottom--mobile {
        display: flex;
        align-items: flex-end;
        margin-left: auto;
        margin-top: auto;
		flex-direction: column;
		flex-shrink:2;
    }

    .service-card .item__art--mobile {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
	.service-card .item__art--mobile img{
        width: 42px;
        height: 42px;
    }

    .arrow-btn {
        width: 30px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
	
	 .awards-recognitions {
        flex-direction: column; /* Stack the title and items */
        align-items: center; /* Align to the left */
        justify-content: flex-start;
        filter: none; /* Remove blur on mobile */
        margin-top: 30px;
    }

    .awards-recognitions h4 {
        margin: 0 0 20px 0;
        white-space: normal;
        text-align: center;
		max-width: 50%;
    }

     .awards-recognitions .items {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
        width: 100%; /* Important: Set a width */
        box-sizing: border-box; /* Include padding and border in width */
		justify-content: flex-start;
    }

    .awards-recognitions .items::-webkit-scrollbar {
        display: none;
    }

    .awards-recognitions .items img {
        max-width: 90px;
        height: auto;
        flex-shrink: 0; /* Prevent images from shrinking */
    }
}