

ul{
	list-style: none;
}
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	padding-top: 76px;
}

.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.5rem;
}

.dropdown-menu {
	border-radius: 0;
	border: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 0;
	min-width: 250px;
}

.dropdown-item {
	padding: 12px 20px;
	transition: all 0.3s;
	border-bottom: 1px solid #f0f0f0;
}





.dropdown-item i {
	margin-right: 10px;
}

.service-section {
	padding: 80px 0;
	position: relative;
}

.service-title {
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--secondary-color);
	position: relative;
	padding-bottom: 15px;
}



.service-image {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	height: 100%;
	object-fit: cover;
}

.service-image:hover {
	transform: scale(1.03);
}



.btn-service {
	
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 4px;
	font-weight: 500;
	transition: all 0.3s;
}



.hero-section {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://picsum.photos/seed/logistics-hero/1920/600.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px 0;
	text-align: center;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
}

.footer {
	background-color: var(--secondary-color);
	color: white;
	padding: 50px 0 20px;
}

.footer-title {
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--primary-color);
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #adb5bd;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.social-icons a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	margin-right: 10px;
	color: white;
	transition: all 0.3s;
}

.social-icons a:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
	padding-top: 20px;
	text-align: center;
	color: #adb5bd;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}

	.service-section {
		padding: 60px 0;
	}
}