

/* Banner styles */
.banner {
	position: relative;
	width: 100%;
	height: 500px;
	background: url('your-banner-image.jpg') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner .overlay {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: center;
	padding: 20px;
	border-radius: 5px;
	transition: transform 0.5s ease, background-color 0.5s ease;
}

.banner .overlay:hover {
	transform: scale(1.1);
	background-color: rgba(0, 0, 0, 0.7);
}

.banner h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.banner p {
	font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	nav ul {
		flex-direction: column;
		gap: 10px;
	}

	.header-content {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.banner {
		height: 300px;
	}

	.banner h2 {
		font-size: 28px;
	}

	.banner p {
		font-size: 16px;
	}
}

/* *** */
.about-section {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 20px;
	box-sizing: border-box;
	background-color: #fff;
}

.about-bg {
	background-color: #fff200;
	width: 100%;
	height: 250px;
	position: absolute;
	top: 0;
}

.about-box {
	width: 90%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 20px;
	box-sizing: border-box;
}

.content {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.image {
	position: relative;
	text-align: center;
}

.image img {
	max-width: 300px;
	height: 500px;
}

.learn-more {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	background-color: #333;
	color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 16px;
	text-align: center;
}

.learn-more:hover {
	color: #FFD700;
}

.features {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feature-item {
	text-align: center;
	margin-bottom: 20px;
}

.feature-item>div {
	margin-bottom: 20px;
}

.feature-item h1,
.feature-item h3 {
	margin: 10px 0;
}

.feature-item p {
	color: #777;
	line-height: 1.5;
	padding: 0 20px;
	font-size: 14px;
	text-align: justify;
}

.img-box {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f8ec01;
}

.img-box img {
	width: 50%;
	height: auto;
}

/* Responsive Styles */
@media (min-width: 768px) {
	.about-box {
		flex-direction: row;
		justify-content: space-between;
	}

	.content {
		width: 30%;
	}

	.features {
		width: 65%;
		text-align: left;
	}

	.feature-item {
		margin-bottom: 40px;
	}

	.feature-item h1 {
		font-size: 28px;
	}

	.feature-item p {
		font-size: 16px;
	}
}

@media (min-width: 1024px) {
	.about-box {
		padding: 40px;
	}

	.content {
		width: 25%;
	}

	.features {
		width: 70%;
	}

	.feature-item {
		display: flex;
		justify-content: space-between;
	}

	.feature-item>div {
		width: 30%;
		margin: 0;
	}

	.feature-item h1 {
		font-size: 24px;
	}

	.feature-item h3 {
		font-size: 18px;
	}

	.feature-item p {
		font-size: 14px;
	}
}


/* ** */
.product-carousel {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    background-color: #F5F5F5;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pro-title-more {
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: 150px;
    margin: 0 auto 25px auto;
    position: relative;
}

.title-box {
    width: 200px;
    height: 120px;
    border: 1px #f8ec01 solid;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.line-pro {
    width: 100%;
    max-width: 280px;
    height: 1px;
    background-color: #999;
    margin: 16px auto 12px auto;
}

.line-pro span {
    display: block;
    width: 40px;
    height: 1px;
    margin: 0 auto;
    background-color: #f8ec01;
}

.carousel-header {
    width: 100%;
    overflow: hidden;
    margin: 30px auto 0 auto;
    text-align: center;
}

.carousel-header h2 {
    font-size: 18px;
    color: #444;
    margin: 0px 0 10px 0;
    position: relative;
    z-index: 1;
    padding: 10px 20px;
}

.carousel-header h3 {
    width: 100%;
    max-width: 280px;
    height: 30px;
    margin: 0 auto;
    font-size: 13px;
    color: #888;
}

.carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right:0;
}

.carousel-content {
    display: flex;
    padding: 20px 0;
    /* width: 100%;
    margin-right: 40px; */
	width: calc(100% * 14);
    box-sizing: border-box;
    scroll-behavior: smooth;
	 transition: transform 0.5s ease-in-out;
	transform: translateX(-${100 * n}%);
}

.carousel-item {
    flex: 0 0 auto;
    max-width: calc(100% / 4 - 20px);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
	margin: 10px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-item p:nth-of-type(1) {
    margin: 15px 0;
    font-size: 0.875rem;
    color: #333;
    text-transform: uppercase;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.more-products {
    margin-top: 20px;
}

.more-products button {
    display: inline-flex;
    align-items: center;
    background-color: #FFD700;
    border: none;
    color: #333;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 200px;
    height: 50px;
}

.more-products button::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: #333;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.more-products button::after {
    content: '\2192';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
}

.more-products button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.more-products button:hover::before {
    background-color: #444;
}

.more-products button span {
    position: relative;
    z-index: 1;
}

.pro-h{
	height: 1px;
	width: 20%;
	background-color: #FFD700;
	margin: 20px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .carousel-header h2 {
        font-size: 20px;
    }

    .carousel-header h3 {
        font-size: 12px;
    }

    .carousel-content {
        gap: 15px;
        margin: 0 30px;
    }

    .carousel-item {
        max-width: calc(100% / 3 - 15px);
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .carousel-header h2 {
        font-size: 18px;
    }

    .carousel-header h3 {
        font-size: 10px;
    }

    .carousel-content {
        margin: 0 20px;
        gap: 10px;
    }

    .carousel-item {
        max-width: calc(100% / 2 - 20px);
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .more-products button {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
     .carousel-header h2 {
            font-size: 16px;
        }
    
        .carousel-header h3 {
            font-size: 8px;
        }
    
        .carousel-content {
            margin: 0 10px;
        }
		
		.carousel-item:nth-child(1){
			margin-left: 5px;
		}
		
        .carousel-item {
            width: calc(50% - 8px); /* Two items side by side */
        }
    
        .carousel-arrow {
            width: 30px;
            height: 30px;
            font-size: 18px;
        }
    
        .more-products button {
            padding: 8px 20px;
            font-size: 14px;
        }
}


/* ** */
.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FFD700;
    padding: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #333;
    font-family: Arial, sans-serif;
}

.icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.icon img {
    width: 100%;
    height: 100%;
}

.info p {
    margin: 0;
    font-size: 14px;
}

.info p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .icon {
        margin: 0 auto 10px auto;
    }
}


