/* General Styles */
:root {
    --primary: #1cb2cf;
    --dark: #212529;
}

html {
    scroll-behavior: smooth;
}
.nav-item:hover a{
	color: var(--primary) !important;
}
footer a{
	color: white !important;
	text-decoration: none;
}
footer a:hover {
	color: var(--primary) !important;
}


.title-underline {
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Banner Slider */
.carousel-item {
    height: calc(100vh - 76px);
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
	bottom: auto !important;
    top: 38%;

}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: bold;
}

/* Services Section */
.service-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
	#max-height: 300px;
	position: relative;
}
}

.service-card:hover {
    transform: translateY(-5px);
}
.service-card .title-underline{
	width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin: 0px;
	margin-top: 2px;

}
.quick_links .title-underline{
	width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin: 0px;
	margin-top: 3px;

}
.service-icon {
    width: 100%;
    height: 180px;
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover;
	border-radius: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    opacity: 0.5;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

/* Products Section */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Clients Section */
.item {
    padding: 1.5rem;
    background-image: url('https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?auto=format&fit=crop&q=80&w=2069');
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.item:hover {
    transform: translateY(-5px);
}


/* Sister Company Section */
#sister-company .col-lg-4{
    width: 230px;
    height: 230px;
    align-items: center;
    display: flex;
	margin-inline: auto;
	background: #fff;
}
#sister-company img{
	max-height: 100%;
    max-width: 100%;
    padding: 15px;
	}

/* Footer */
footer {
    background-color: var(--dark);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption h3 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
	.contact_info{
		flex-direction: column;

	}
}

.language :hover{
	color: var(--primary) !important;
}
/* bootstrap classes */

.nav-item :hover{
	background-color: #f3f3f3 !important;

}
#myDiv .nav-item a{
	padding: 20px !important;

}

	.contact-bar {
		justify-content: center;
		background-color: #2e2e2e;
		color: white;
		width: 100%;
	}
	.contact-item {
		display: flex;
		align-items: center;
		#font-weight: bold;
	}
		.fixed-div {
		width: 100%;
		transition: top 0.3s; /* Smooth transition */
	}

	.fixed {
		position: fixed;
		top: 0; /* Fixed at the top */
		left: 0;
		right: 0;
		box-shadow: 0px 2px 12px #c3c3c3 !important;
		z-index: 1000; /* Ensure it stays above other content */
	}
	i{
		color:var(--primary);
	}
	.contact-item i {
		margin-inline-end: 10px;
	}
	

.triangle {
	width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-bottom: 70px solid var(--primary);
    position: absolute;
    bottom: 0;
    right: 0;
}
	.quick_links .fa-chevron-right{
		font-size: 13px !important;
	}

