/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
header {
    border-top: 7px solid #59CEE5;
    background-color: #f8f8f8;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s;
}

header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 0;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

header.sticky .logo img {
    height: 30px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 120px;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
}

header .logo {
    margin-right: 20px;
}

header nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: rgba(89, 206, 229, 0.2);
}

header nav ul li a.active {
    background-color: rgba(89, 206, 229, 0.4);
    color: #fff;
}

header .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

header .burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

header nav ul.show {
    display: block;
}

header nav ul .close-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Banner Section */
#banner {
    background-color: #F5BB50;
    background-image: url('images/Print-design-TechGuy3.png'); /* Replace with the actual path to your image */
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 60px 0;
    display: flex;
    align-items: center;
	background-position-x: 95%;
    background-position-y: 8px;
}

#banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#banner .banner-text {
    max-width: 75%;
}

#banner .banner-text h1 {
    font-size: 36px;
    margin: 0 0 10px;
    color: #fff;
}

#banner .banner-text p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 20px;
}

#banner .banner-text button {
    background-color: #fff;
    color: #23b3d9;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
	font-size: 20px;
	font-weight: 600;
}

/* Page Conents Section */
#page-contents {
    border-top: 7px solid #F5BB50; /* Same thickness and color as the banner background */
    padding: 50px 0;

}

/* About Section Styling */
#page-contents {
    padding: 50px 0;
    background-color: #fff;
}

#page-contents h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

#page-contents .content-box {
    padding: 60px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#page-contents p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

#page-contents h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #1f8397;
    border-bottom: 2px solid #F5BB50;
    padding-bottom: 10px;
}

#page-contents ul {
    list-style-type: disc;
    padding-left: 20px;
}

#page-contents ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Specific Elements Styling */
#page-contents strong {
    color: #23b3d9;
}



/* Gallery Styling */
.gallery {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
}

.gallery img {
    width: calc(25% - 10px); /* Adjust to fit 4 images per row on a regular laptop screen */
	max-height: 300px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery img:hover {
    border-color: #007bff;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}



/* FAQ Section Styles */
.faq-section {
    padding: 20px;
    background-color: #f9f9f9; /* Adjust based on your brand colors */
    border-radius: 8px;
}

.faq-section h2 {
    color: #333; /* Adjust based on your brand colors */
    text-align: center;
    margin-bottom: 20px;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    border-bottom: 1px solid #ddd; /* Adjust based on your brand colors */
    padding: 10px 0;
}

.faq-question h3 {
    color: #007BFF; /* Adjust based on your brand colors */
    cursor: pointer;
    margin: 0;
    font-size: 1.1em;
}

.faq-answer {
    display: none;
    padding: 10px 0;
}

.faq-answer p {
    margin: 0;
    color: #555; /* Adjust based on your brand colors */
}

/* FAQ Toggle Functionality */
.faq-question h3:hover {
    color: #0056b3; /* Adjust based on your brand colors */
}

/* Open FAQ answer */
.faq-question.active .faq-answer {
    display: block;
}



/* Contact Form Section Styles */
.contact-section {
    padding: 20px;
    background-color: #f9f9f9; /* Adjust based on your brand colors */
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    color: #333; /* Adjust based on your brand colors */
    text-align: center;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #555; /* Adjust based on your brand colors */
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd; /* Adjust based on your brand colors */
    border-radius: 4px;
    font-size: 1em;
    color: #333; /* Adjust based on your brand colors */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007BFF; /* Adjust based on your brand colors */
    outline: none;
}

button[type="submit"] {
    padding: 10px 15px;
    background-color: #007BFF; /* Adjust based on your brand colors */
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    align-self: center;
}

button[type="submit"]:hover {
    background-color: #0056b3; /* Adjust based on your brand colors */
}




















/* Services Section */
#services {
    padding: 50px 0;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
}

#services .product-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

#services .product-item {
    background-color: #f8f8f8;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

#services .product-item img {
    max-width: 100%;
    height: auto;
}

#services .product-item h3 {
    font-size: 24px;
    margin: 10px 0;
}

#services .product-item p {
    font-size: 16px;
    margin: 5px 0;
}

#services .product-item .price {
    font-size: 18px;
    color: #59CEE5;
    font-weight: bold;
}

#services .product-item button {
    background-color: #59CEE5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 15px;
    margin-top: 10px;
}

/* Reviews Section */
#reviews {
    background-color: #e1faff;
    padding: 20px 0;
	position: relative;
    overflow: hidden;
}
#reviews .container {
    position: relative;
}

.reviews-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#reviews h2 {
    text-align: center;
    margin-bottom: 40px;
}

#reviews .reviews-grid {
    display: flex;
    gap: 20px;
	overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0px 0;
	margin: 0 45px;
    /*justify-content: center;
	flex-wrap: wrap;*/
}

#reviews .review-item {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    width: 290px;
	flex: 0 0 auto; /* Ensure items don't shrink */
}
.scroll-button {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
	font-weight:400;
    color: #999;
    z-index: 10;
}

.scroll-button.left {
    left: 10px;
}

.scroll-button.right {
    right: 10px;
}
.text-align-right {
	text-align: right; 
}


#reviews .review-item p {
    margin: 10px 0;
}

#reviews .review-item p:first-of-type {
    font-size: 16px;
    font-style: italic;
}

#reviews .review-item p:last-of-type {
    color: #59CEE5;
    font-size: 18px;
}

/* Footer Section */
footer {
    background-color: #333;
    padding: 40px 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	color: #fff;
	text-align: center;
}

footer .footer-column {
    flex: 1 1 calc(25% - 20px);
}

footer .footer-logo img {
    max-width: 100px;
}

footer .footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-column ul li {
    margin-bottom: 5px;
}

footer .footer-column ul li a {
    text-decoration: none;
    color: #ccc;
}

footer .social-media a {
    margin-right: 10px;
    text-decoration: none;
    color: #59CEE5;
}

footer .social-media a:hover {
    text-decoration: underline;
}

.footer-column.footer-logo {
    text-align: left;
}

.copyright {
	background-color: #59CEE5;
    text-align: center;
    padding: 5px 0;
    color: #fff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #23b3d9;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
	font-size: 20px;
	font-weight: 800;
	font-family: sans-serif;
    text-decoration: none;
	vertical-align: middle;
}

.scroll-to-top.show {
    display: block;
}

/* Media Queries */
@media (max-width: 768px) {
    header .burger {
        display: flex;
    }

    header nav ul {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        flex-direction: column;
        width: 200px;
    }

    header nav ul li {
        margin: 10px 0;
        padding: 10px 20px;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    header nav ul.show {
        display: flex;
    }

    header nav ul .close-menu {
        display: block;
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    #banner .container {
        flex-direction: column;
        text-align: center;
    }

    #banner .banner-text,
    #banner .banner-image {
        max-width: 100%;
    }
	#banner {
	background-position-y: 100%;
    background-size: 15%;
	}

	#reviews .review-item {
    
    width: 180px;
	}
	
    footer .container {
        flex-direction: column;
    }

    .scroll-to-top {
        display: none;
    }
	.text-align-right {
		text-align: center; 
	}

}
