/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    position: sticky;
    top: 0;
    width: 97%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: transparent;
    transition: background-color 0.3s;
    z-index: 1000;
}

header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bolder; /* Extra bold text */
    padding: 10px 20px; /* Adjusted padding for rectangle shape */
    transition: color 0.3s, border 0.3s;
    border: 2px solid transparent;
    border-radius: 15px; /* Rounded corners */
}

nav ul li a.active,
nav ul li a:hover {
    border: 2px solid red;
    color: red;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('Images/hero-background.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: darkred;
}


/* Hero Section */
.product-hero {
    height: 30vh;
    background: url('Images/product-hero.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}
.product-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.product-hero .product-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    background: rgba(0, 0, 0, 0);
    padding: 20px;
    border-radius: 10px;
}

.product-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-hero p {
    font-size: 18px;
    margin-bottom: 20px;
}


.featured-products {
    padding: 40px 20px;
    text-align: center;
}

.featured-products h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    width: 30%;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.product:hover img {
    border-color: #333;
}

.product h3 {
    font-size: 24px;
    margin: 10px 0;
}

.product p {
    font-size: 16px;
    color: #666;
}

.product .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.product .btn:hover {
    background-color: darkred;
}

.cta {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta form {
    display: inline-block;
}

.cta input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

.cta button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta button:hover {
    background-color: darkred;
}

footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
}

.category-menu {
    text-align: center;
    margin-bottom: 20px;
}

.category-menu h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.category-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.category-menu ul li {
    margin: 0 10px;
}

.category-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
    padding: 10px 15px;
    border: 2px solid transparent;
    border-radius: 5px;
}

.category-menu ul li a.active,
.category-menu ul li a:hover {
    color: red;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: red;
}

.product-display {
    text-align: center;
    flex: 1;
}

.carousel {
    --carousel-height: 400px;
    --carousel-width: 100%;
    --carousel-item-height: 150px;
    --carousel-item-width: 150px;
    width: 100%;
    margin: 2rem 0;
    position: relative;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: var(--carousel-width);
    min-height: var(--carousel-height);
    margin: 0 auto;
}

.carousel-item {
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    height: var(--carousel-item-height);
    width: var(--carousel-item-width);
    z-index: 0;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-title {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.carousel-item-1 {
    left: 15%;
    opacity: 0.4;
}

.carousel-item-2, .carousel-item-4 {
    left: 30%;
    height: calc(var(--carousel-item-height) * 1.5);
    width: calc(var(--carousel-item-width) * 1.5);
    opacity: 1;
    z-index: 1;
}

.carousel-item-3 {
    left: 50%;
    height: calc(var(--carousel-item-height) * 2);
    width: calc(var(--carousel-item-width) * 2);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
}

.carousel-item-4 {
    left: 70%;
}

.carousel-item-5 {
    left: 85%;
    opacity: 0.4;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-control {
    pointer-events: all;
    font-size: 2rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control-previous::before {
    content: '\f053'; /* Font Awesome code for left arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
}

.carousel-control-next::before {
    content: '\f054'; /* Font Awesome code for right arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
}

.details-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-align: center;
    margin: 20px 0;
}

.details-btn:hover {
    background-color: darkred;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-media a,
footer .quick-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer .contact-info p {
    margin: 5px 0;
}

.design-services, .image-upload, .uploaded-images {
    padding: 40px 20px;
    text-align: center;
}

.design-services h1, .image-upload h2, .uploaded-images h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.design-services p {
    font-size: 18px;
    margin-bottom: 20px;
}

.image-upload form {
    display: inline-block;
}

.image-upload input[type="file"] {
    padding: 10px;
    font-size: 16px;
    margin-right: 10px;
}

.image-upload button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.image-upload button:hover {
    background-color: #b30000;
}

#uploadResult {
    margin-top: 20px;
    font-size: 18px;
}


.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 200px;
    height: auto;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.breadcrumb {
    padding: 10px 20px;
    background-color: #f8f8f8;
    margin-bottom: 20px;
    font-size: 16px;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-decoration: underline;
}

.breadcrumb span {
    color: gray;
}

.product-top {
    padding: 20px 40px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.product-top h1.product-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.product-detail {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.product-gallery {
    flex: 1 1 50%;
    padding: 20px;
}

.product-carousel {
    position: relative;
}


.product-carousel-images img {
    width: 50%;
    display: none;
    margin: 0 auto;
}

.product-carousel-images img.active {
    display: block;
}

.product-carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.product-carousel-controls .product-prev,
.product-carousel-controls .product-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.product-carousel-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.product-carousel-thumbnails .product-thumbnail {
    width: 80px;
    height: auto;
    margin: 0 10px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: opacity 0.3s, border 0.3s;
}

.product-carousel-thumbnails .product-thumbnail.active {
    opacity: 1;
    border: 2px solid red;
}

.product-info {
    flex: 1 1 20%;
    padding: 20px;
}

.product-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

#inquiryForm {
    display: flex;
    flex-direction: column;
}

#inquiryForm input,
#inquiryForm textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#inquiryForm button {
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#inquiryForm button:hover {
    background-color: #b30000;
}

.product-description {
    padding: 40px 20px;
    text-align: center;
}

.product-description h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-description p {
    font-size: 18px;
}


.mission, .team {
    padding: 40px 20px;
    text-align: center;
}

.mission h2, .team h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mission p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    width: 30%;
    margin: 10px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 18px;
    color: #666;
}

.contact-hero {
    height: 60vh;
    background: url('Images/contact-hero.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.contact-hero .contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-info {
    padding: 40px 20px;
    text-align: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    width: 30%;
    margin: 10px;
    text-align: center;
}

.contact-item i {
    font-size: 24px;
    margin-bottom: 10px;
    color: red;
}

.contact-item p {
    font-size: 18px;
}

.contact-form-section {
    padding: 40px 20px;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn {
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}