@charset "utf-8";
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a {
	text-decoration: none;
}
body {
	font-family: 'Inter', sans-serif;
	background-color: #f7f7fa;
	padding: 0;
	margin: 0;
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
}
.logo {
	font-weight: 600;
	font-size: 18px;
	color: #000000;
}
.menu-toggle {
	display: none;
	font-size: 28px;
	background: none;
	border: none;
	cursor: pointer;
	color: #4c2885;
}
.nav {
	display: flex;
	gap: 1rem;
	align-items: center;
}
.nav a {
	position: relative;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding-bottom: 4px;
}
.nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: red;
	transition: width 0.3s ease;
}
.nav a:hover::after {
	width: 100%;
}
.nav .btn {
	border-bottom: 2px solid red;
}
.container {
	display: flex;
	padding: 2rem;
	gap: 2rem;
}
.sidebar {
	width: 250px;
	height: 40vh; /* Default for mobile */
	overflow-y: auto;
	background: white;
	padding: 1rem;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
/* For desktop or larger screens */
@media (min-width: 768px) {
	.sidebar {
		height: 88vh;
		position: sticky;
		top: 0px;
	}
}
.sidebar button {
	display: block;
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 0.5rem;
	background-color: #eee;
	border: none;
	border-radius: 5px;
	text-align: left;
	transition: background-color 0.2s ease; /* Smooth transition */
	color: black;
	font-size: 14px;
}
.sidebar button:hover {
	background-color: #ddd;
	cursor: pointer;
}
.products {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3 per row on desktop */
	gap: 1.5rem;
}
.product {
	background: white;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.product img {
	max-width: 100%;
	height: 200px;
	border-radius: 6px;
	object-fit: contain;
}
.product h4 {
	margin: 0.5rem 0;
	font-size: 16px;
}
.product p {
	font-size: 14px;
	margin: 0.25rem 0;
}
.product .price {
	color: #4c2885;
	font-weight: bold;
	font-size: 16px;
}
.product button {
	background-color: #4c2885;
	color: white;
	padding: 0.5rem 1rem;
	border: none;
	margin-top: 0.5rem;
	border-radius: 4px;
	cursor: pointer;
}
/* Mobile Responsive */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	.nav {
		display: none;
		flex-direction: column;
		width: 100%;
		margin-top: 1rem;
	}
	.nav.active {
		display: flex;
	}
	.container {
		flex-direction: column;
		padding: 1rem;
	}
	.sidebar {
		width: 100%;
	}
	.products {
		grid-template-columns: 1fr; /* 1 per row on mobile */
	}
}
.banner-container {
	position: relative;
	width: 100%;
	height: 60vh;
	overflow: hidden;
}
.banner-image {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	object-fit: cover;
}
.banner-image.active {
	opacity: 1;
	z-index: 1;
}
.banner-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 14px 28px;
	font-size: 18px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}
.banner-button:hover {
	background-color: rgba(0, 0, 0, 0.8);
}
section.category-section {
	padding: 0px 20px 50px 20px;
	background: #f0f0f0;
	width: 100%;
}
.category-section h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 30px;
	color: #222;
	font-weight: bold;
}
.category-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: auto;
	padding: 0 10px;
}
.category-tile {
	color: white;
	padding: 20px 10px;
	text-align: center;
	border-radius: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
/* Vibrant Flat Backgrounds */
.category-tile:nth-child(1) {
	background-color: #ff6f61;
}  /* Coral Red */
.category-tile:nth-child(2) {
	background-color: #6a1b9a;
}  /* Purple */
.category-tile:nth-child(3) {
	background-color: #0288d1;
}  /* Blue */
.category-tile:nth-child(4) {
	background-color: #43a047;
}  /* Green */
.category-tile:nth-child(5) {
	background-color: #fbc02d;
	color: #333;
}  /* Yellow */
.category-tile:nth-child(6) {
	background-color: #ff8f00;
}  /* Orange */
.category-tile:nth-child(7) {
	background-color: #d81b60;
}  /* Pink */
.category-tile:nth-child(8) {
	background-color: #00897b;
}  /* Teal */
.category-tile:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
/* Responsive Design */
@media (max-width: 992px) {
	.category-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 576px) {
	.category-container {
		grid-template-columns: 1fr;
	}
}
h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #2c3e50;
	text-align: center;
}
.intro {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 40px auto;
	text-align: center;
	color: #555;
}
.team {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}
.member {
	background: #FFEBE9;
	padding: 25px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}
.member:hover {
	transform: translateY(-8px);
}
.member img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	border: 4px solid #ff6f61;
}
.member h3 {
	margin-bottom: 8px;
	color: #ff6f61;
}
.member p {
	font-size: 0.95rem;
	color: #555;
}
/* Responsive */
@media (max-width: 600px) {
	h1 {
		font-size: 2.2rem;
	}
	.intro {
		font-size: 1rem;
	}
}
form {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}
form label {
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
	color: #555;
}
form input, form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	resize: vertical;
}
form input:focus, form textarea:focus {
	border-color: #ff6f61;
	outline: none;
}
form textarea {
	grid-column: 1 / -1;
	min-height: 120px;
}
button {
	grid-column: 1 / -1;
	padding: 15px;
	background-color: #ff6f61;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
button:hover {
	background-color: #ff6f61;
}
.contact-info {
	margin-top: 40px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
}
.info-item {
	flex: 1 1 250px;
	background-color: #FFF5F4;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
.info-item h3 {
	margin-bottom: 10px;
	color: #00bcd4;
}
.info-item p {
	color: #555;
	font-size: 1rem;
}
/* Map style */
.map-container {
	margin-top: 40px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
	width: 100%;
	height: 350px;
	border: 0;
	display: block;
}
/* Responsive */
@media (max-width: 700px) {
	form {
		grid-template-columns: 1fr;
	}
}
.container2 {
	max-width: 900px;
	margin: 50px auto 50px auto;
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.search-container {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.search-input {
	width: 100%;
	padding: 10px 10px;
	font-size: 14px;
	border: 2px solid #ccc;
	outline: none;
	transition: 0.3s;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 6px;
}
.search-input:focus {
	border-color: #5c6bc0;
	box-shadow: 0 0 10px rgba(92, 107, 192, 0.5);
}
.cus_logo_section_title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
	font-family: 'Segoe UI', sans-serif;
}
.cus_logo_scroll_wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	background: #f9f9f9;
	padding: 20px 0;
}
.cus_logo_scroll {
	display: flex;
	gap: 20px;
	animation: scroll 30s linear infinite;
	width: max-content;
}
.cus_logo_scroll_wrapper:hover .cus_logo_scroll {
	animation-play-state: paused;
}
.cus_logo_card {
	min-width: 200px;
	height: 150px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cus_logo_card:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.cus_logo_card img {
	max-width: 100%;
	max-height: 150px;
	object-fit: contain;
	padding: 10px;
	border-radius: 10px;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@media (max-width: 768px) {
	.cus_logo_card {
		min-width: 200px;
		height: 150px;
	}
	.cus_logo_scroll {
		animation-duration: 60s;
	}
}
.about_css_section {
	max-width: 900px;
	margin: 50px auto;
	padding: 0 20px;
}
.about_css_section h2, .about_css_section h3 {
	text-align: center;
	margin-bottom: 20px;
	color: #222;
}
.about_css_section h2 {
	font-weight: 700;
	letter-spacing: 2px;
	animation: fadeInDown 1s ease forwards;
}
.about_css_section h3 {
	font-weight: 600;
	margin-bottom: 12px;
	color: #555;
}
.about_css_section p {
	font-weight: 300;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 30px;
	animation: fadeInUp 1.2s ease forwards;
}
.about_css_grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
	margin-top: 40px;
}
.about_css_card {
	background: #f7f7f7;
	padding: 25px 30px;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	flex: 1 1 400px;
	animation: fadeInUp 1.3s ease forwards;
}
.about_css_collection_section {
	text-align: center;
	margin-top: 60px;
}
/* Animations */
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Responsive */
@media (max-width: 700px) {
	.about_css_grid {
		flex-direction: column;
		gap: 30px;
	}
	.about_css_section {
		padding: 0 10px;
	}
}
.about_css_whychoose {
	max-width: 700px;
	margin: 40px auto 40px;
	text-align: left;
	animation: fadeInUp 1.2s ease forwards;
	background: rgba(255, 255, 255, 0.8);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.about_css_whychoose h3 {
	text-align: center;
	font-size: 2rem;
	color: #222;
	margin-bottom: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}
.about_css_whychoose ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.about_css_whychoose li {
	font-size: 1.1rem;
	margin-bottom: 15px;
	padding-left: 30px;
	position: relative;
	color: #333;
	font-weight: 500;
}
.about_css_whychoose li span {
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
	font-size: 1.2rem;
}


.product_service_container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 10px;
    }

    .product_service_title {
      text-align: center;
      font-size: 3rem;
      background: linear-gradient(90deg, #1e90ff, #00b894);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
      margin-bottom: 50px;
    }

    .product_service_grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .product_service_card {
      background: white;
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeSlideUp 0.6s forwards;
    }

    .product_service_card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    }

    .product_service_card:nth-child(1) { animation-delay: 0.1s; }
    .product_service_card:nth-child(2) { animation-delay: 0.2s; }
    .product_service_card:nth-child(3) { animation-delay: 0.3s; }
    .product_service_card:nth-child(4) { animation-delay: 0.4s; }
    .product_service_card:nth-child(5) { animation-delay: 0.5s; }
    .product_service_card:nth-child(6) { animation-delay: 0.6s; }
    .product_service_card:nth-child(7) { animation-delay: 0.7s; }

    @keyframes fadeSlideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .product_service_card h3 {
      font-size: 1.4rem;
      color: #2c3e50;
      margin: 0 0 10px;
      position: relative;
    }

    .product_service_card h3::before {
      content: "★";
      color: #00b894;
      margin-right: 8px;
    }

    .product_service_card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 500px) {
      .product_service_title {
        font-size: 2rem;
      }
      .product_service_card {
        padding: 20px;
      }
    }