﻿/* ======================================
   SMALL MOBILE
====================================== */
@media (max-width: 768px) {

.headerBar {
	position: relative;
	padding: 5px;
	height: 90px;
}
	
.hamburger {
	display: block !important;
	position: absolute;
	right: 0px;
	top: 35px;
	font-size: 32px;
	cursor: pointer;
	color: #001b36;
	z-index: 9999;
	background: none;
	border: none;
}
		
.headerBar img {
	width: 120px;
	height: 60px;
	margin-top: 10%;
}
	
.navbar {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 50;
	margin: 0;
	padding: 0;
}
	
.navLinks {
    display: none;
    flex-direction: column;
    background-color: #f0f8ff;
    position: absolute;
    top: 100px;
    right: 0;
    width: 300px;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    font-size: 18px;
}
	
.navLinks.open {
    display: flex;
    gap: 15px;
}
		
.searchBar {
	position: absolute;
	right: 35px;
}

.searchBar input {
	padding: 0px 8px;
	font-size: 16px;
	color: #DFDFDF;
	transition: transform 0.3s ease-in;
	border-radius: 5px;
	border: 1px solid #001b36;
	width: 150px;
}
	
.searchBar input:focus {
	transform: scale(1.05);
}
	
.dropdown {
	align-items: flex-start;
}
	
.productLink{
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.announcementBar {
	margin: 10px 0px 10px 0px;
	font-size: 12px;
	height: 22px;
}
	
.heroImage {
	height: 450px;
}
	
.heroHover {
	width: 90%;
	height: 220px;
	opacity: 1;
	text-align: center;
}
	
.heroHover h1 {
	font-size: 22px;
	margin-bottom: 25px;
}
	
.heroHover a {
	font-size: 14px;
}
	
.missionStatement {
	flex-direction: column;	
	bprder-radius: 5px;
}
	
.missionText {
	height: auto;
	padding: 5px;
	border-radius: 0px;
	text-align: center;
}
	
.missionText h1 {
	font-size: 22px;	
}

.missionText p {
	font-size: 14px;	
}
	
.missionText .tagline {
	margin-top: -10px;
	font-weight: bold;
}
	
.tagline::after {
	height: 0px;	
}
	
.missionPicture img {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
	
.verticalPanels {
	display: flex;
	flex-direction: column;
	z-index: 5;
	width: 95%;
	max-width: 450px;
	margin: 30% auto 0;
	gap: 15px;
}
	
.verticalPanel {
	height: 400px;
	width: 100%;
	flex: none;
	max-width: 450px;
}
	
.panelHover {
	opacity: 1;
	background-color: rgba(0,0,0,0.2);
	inset: 0;
}
	
.panelHover h2 {
	font-size: 18px;
}
	
.panelHover h2::after {
    width: 100%;
}
	
.panel1,
.panel2,
.panel3,
.panel4 {
	background-size: cover;
	background-repeat: no-repeat;
}
	
.panel1 {
	background-image: url('Images/Vertical Panels/bollard-mobile.png');
	background-position: center;
}
	
.panel2 {
	background-image: url('Images/Vertical Panels/pole-mobile.png');
	background-position: center;
}
	
.panel3 {
	background-image: url('Images/Vertical Panels/polelight-mobile.png');
	background-position: center;
}
	
.panel4 {
	background-image: url('Images/Vertical Panels/wallsconce-mobile.png');
	background-position: center;
}
	
.footer {
	display: flex;
    background-color: #dfdfdf;
    color: #2f2f2f;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px;
}

.footer-logo1 img {
	width: 35px;
	height: 35px;
	margin: 5px;
}
	
.footer-logo2 img {
	width: 35px;
	height: 35px;
	margin: 5px;
	transform: scaleX(-1); /* Flips the image horizontally */
}
		
.footer-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
	
.footer-links a {
    font-size: 12px;
}
	
.footer-links a:hover {
    color: #001B36;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
	
.footer-links a::after {
    display: none;
}	
	
.socialmedia {
	padding: 5px;
	gap: 15px;
}
	
.facebook-icon i {
	font-size: 18px;
	color: #1877F2;
	transition: transform 0.3s ease-in;
}
	
.instagram-icon i {
	font-size: 18px;
}
	
.linkedin-icon i {
	font-size: 18px;
}
	
.youtube-icon i {
	font-size: 18px;
}
	
i:hover {
	transform: scale(1.10);
}
	
.footer-bottom {
    font-size: 6px;
    padding-bottom: 5px;
}

.products {
	justify-content: center;
	margin: 0px, 25px, 25px, 25px;
}
	
.products h2 {
	font-size: 28px;
	font-weight: 500;
	margin: 20px auto 40px;
	letter-spacing: 1.4px;
}
	
.product-grid {
    grid-template-columns: repeat(1, 1fr); 
    grid-template-rows: repeat;
    gap: 10px;
    margin: 30px auto 20px;
}
	
.grid-image {
	transition: none;
}
	
.grid-image:hover {
	opacity: 1;
}
	
.grid-text {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.4);
}
	
.grid-label {
  font-size: 20px;
}
	
.grid-label::after {
  width: 100%;
}
	
/*Understanding Kelvin/Lumens/Light Distribution*/
	
.paragraph {
	margin: 20px auto 20px;
	width: 98%;
}
	
.paragraph h1 {
	font-size: 20px;
}
	
.paragraph h2 {
	font-family: Montserrat, sans-serif;
	font-style: oblique;
	font-size: 18px;
	color: black;
	font-weight: 600;
	text-align: center;
}
	
.paragraph p {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	font-size: 16px;	
}
	
.paragraph p2 {
	margin-top: 0px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
}
	
.kelvin-chart {
	background-image: url('websiteimages/kelvinchart-mobile 400px.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: -50px auto -50px;
}
	
.paragraph p3 {
	text-align: center;
	text-decoration: underline;
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
}
	
.lighting-optics {
	background-image: url('websiteimages/lightingoptics-mobile 400px.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: -70px auto -60px;
	box-shadow: none;
}
	
/* End of Section */
	
	
/* Ourstory.php */
	
.story-box {
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 30px auto;
	height: auto;
	padding: 5px;
	width: 98%;
}
	
.story-text {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
	margin-top: 10px;
}
	
.story-text h1 {
	font-size: 20px;
}
	
.story-text p {
	font-size: 14px;
	margin-left: 0px;
	line-height: 28px;
}
	
.u-text {
	font-size: 14px;
}
	
.statement {
	font-family: Open-sans, sans-serif;
	font-size: 20px;
	text-align: center;
	margin-left: 5px;
	line-height: 32px;
}
	
.story-text h2 {
	font-size: 20px;
}
	
.story-text ul {
	font-size: 14px;
}
	
.story-text li {
	font-size: 14px;
}
	
.story-picture {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin: 0px auto;
	width: 98%;
}
	
.mike-picture {
	background-image: url('websiteimages/mikekrest-mobile1.jpg');
	width: 98%;
	height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
	
.story-picture p {
	font-size: 14px;
}

.story-picture p2 {
	font-size: 12px;
	margin-bottom: 10px;
}

/* End of Section */


/* Meetourteam.php */
	
.contact-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr); 
    grid-template-rows: repeat; 
	gap: 10px;
	width: 100%;
	margin: 20px auto 5px;	
}
	
.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #001b36;
	padding: 5px;
	box-shadow: 0px 0px 3.5px rgba(0, 0, 0, 1.5);
	width: 98%;
	margin: 5px auto 5px;
}
	
.contact-image {
	width: 100%;
	max-width: 400px;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-color: #afadc2;
}
	
.contact p {
	font-size: 16px;
}
	
.contact a {
	font-size: 12px;
}
	
/* End of Section */
	
	
/* Contactus.php */
	
.contact-us {
	display: flex;
	flex-direction: column;
	margin: 30px auto 0px;
	height: 100%;
	width: 98%;
	text-align: center;
}
	
.location-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 10px;	
}
	
.location-text h1 {
	font-size: 22px;
}
	
.location-text p {
	font-size: 16px;
	margin-top: 5px;
}
	
.map-image {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	width: 100%;
	padding: 5px;
}
	
.map {
	background-image: url('websiteimages/map-mobile1.jpg');
	background-size: cover;
	background-postion: center;
	background-repeat: no-repeat;
	width: 100%;
	min-width: 300px;
	height: 400px;
	margin: 5px auto;
}
	
/* End of Section */

/* Customerforms.php */
	
.choose-form {
	display: flex;
	flex-direction: column;
	margin: 20px auto 0px;
	background-image: url('websiteimages/pic4.jpg');
	height: auto;
	padding: 5px;
}
	
.forms {
	flex-direction: column;
	gap: 10px;
}
	
.forms a {
	font-size: 26px;
	padding: 0px 30px;
	height: 100px;
	width: 98%;
	transition: scale 0.3s ease-in;
}
	
.forms a:hover {
	transform: scale(1.1)
}
	
/* End of Section */
	
/* Gallery.php */
	
.galleryHeader h1 {
	font-size: 22px;
	font-weight: 500;
	margin: 30px auto 30px;
	letter-spacing: 1.4px;
	text-underline-offset: 5px;
}
	
.gallery {
	margin: 5px auto;
	height: 500px;
	width: 98%;
	position: relative;
}
	
.gallerySlide {
	position: absolute;
	width: 100%; 
  	height: 500px;
 	opacity: 0;
 	transition: opacity 1s ease-in-out; 
}
		
.gallerySlide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
		
.previewBar {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 20px auto;
    position: relative;
    width: 98%;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
	
.thumbnails {
    display: flex;
    justify-content: center;
}
	
.thumbnail {
    margin: 0 10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
}
	
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
		
.prev, .next {
    font-size: 16px;
    padding: 5px;
}
		
.imageSection2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 5px;
    width: 100%;
    max-width: 100%;
}
	
.longImage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
	
.twoImages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
}
	
.twoImages img,
.longImage img {
    width: 95%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Optional polish */
}
	
.galleryGrid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 15px;
	width: 98%;
	margin: 20px auto;
	align-items: center;
	justify-content: center;
}
	
.galleryImage img {
	width: 98%;
	margin: 5px auto;	
}
	
.galleryImage:hover {
	transform: scale(1.08)
}
	
/*End of Section*/

/* Styling for Different Product Pages */
	
.categoryHeader h2 {
	font-size: 28px;
	margin: 30px auto 30px;
}
	
.item-grid {
	grid-template-columns: repeat(1, 1fr);
    gap: 10px; 
    width: 100%;
    margin: 10px auto;
}
	
/* Individual product items */
.product-item {
	display: flex;
	flex-direction: column;
    border: 1px solid #001b36;
    padding: 5px;
    width: 100%;
    margin: 0px auto 0px;
}
	
/* Hover effect */
.product-item:hover {
    transform: scale(1.03);
}
	
/* Product image container */
.product-image {
    width: 100%;
    max-height: 400px;
    max-width: 400px; 
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
	
/* Headings inside the product items */
.product-item h3 {
    font-size: 20px;
    margin: 5px 0 5px;
}
	
/* Links inside the product items */
.product-item a {
    text-decoration: none;
    color: #001b36;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}
	
.product-item p {
	margin-top: 0px;
	font-size: 14px;
}
	
.product-item a:hover {
    text-decoration: underline;
}
	
/* End of Section */
	
}



/* =====================================================
   TABLET STYLING (769 - 1024)
===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

.headerBar {
	position: relative;
	padding: 5px;
	height: 90px;
}
	
.hamburger {
	display: block !important;
	position: absolute;
	right: 35px;
	top: 35px;
	font-size: 32px;
	cursor: pointer;
	color: #001b36;
	z-index: 9999;
	background: none;
	border: none;
}
		
.headerBar img {
	width: 120px;
	height: 60px;
	margin-top: 10%;
}
	
.navbar {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 50;
	margin: 0;
	padding: 0;
}
	
.navLinks {
    display: none;
    flex-direction: column;
    background-color: #f0f8ff;
    position: absolute;
    top: 100px;
    right: 0;
    width: 300px;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    font-size: 18px;
}
	
.navLinks.open {
    display: flex;
    gap: 15px;
}
		
.searchBar {
	position: absolute;
	right: 35px;
}

.searchBar input {
	padding: 0px 8px;
	font-size: 16px;
	color: #DFDFDF;
	transition: transform 0.3s ease-in;
	border-radius: 5px;
	border: 1px solid #001b36;
	width: 175px;
}
	
.searchBar input:focus {
	transform: scale(1.05);
}
	
.dropdown {
	align-items: flex-start;
}
	
.productLink{
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.announcementBar {
	margin: 10px 0px 10px 0px;
	font-size: 12px;
	height: 22px;
}
	
.heroImage {
	height: 450px;
}
	
.heroHover {
	width: 90%;
	height: 180px;
	opacity: 1;
	text-align: center;
}
	
.heroHover h1 {
	font-size: 22px;
	margin-bottom: 25px;
}
	
.heroHover a {
	font-size: 14px;
	text-decoration: underline #001b36;
	text-underline-offset: 5px;
	text-decoration-thickness: 1.3px;
}
	
.missionStatement {
	flex-direction: column;	
	bprder-radius: 5px;
}
	
.missionText {
	height: auto;
	padding: 5px;
	border-radius: 0px;
	text-align: center;
}
	
.missionText h1 {
	font-size: 22px;	
}

.missionText p {
	font-size: 14px;	
}
	
.missionText .tagline {
	margin-top: -10px;
	font-weight: bold;
}
	
.tagline::after {
	height: 0px;	
}
	
.missionPicture img {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
	
.verticalPanels {
	display: flex;
	flex-direction: column;
	z-index: 5;
	width: 95%;
	max-width: 600px;
	margin: 15% auto 0;
	gap: 15px;
}
	
.verticalPanel {
	height: 500px;
	width: 100%;
	flex: none;
	max-width: 700px;
}
	
.panelHover {
	opacity: 1;
	background-color: rgba(0,0,0,0.2);
	inset: 0;
}
	
.panelHover h2 {
	font-size: 18px;
}
	
.panelHover h2::after {
    width: 100%;
}
	
.panel1,
.panel2,
.panel3,
.panel4 {
	background-size: contain;
	background-repeat: no-repeat;
}
	
.panel1 {
	background-image: url('Images/Vertical Panels/bollard-mobile.png');
	background-position: center;
}
	
.panel2 {
	background-image: url('Images/Vertical Panels/pole-mobile.png');
	background-position: center;
}
	
.panel3 {
	background-image: url('Images/Vertical Panels/polelight-mobile.png');
	background-position: center;
}
	
.panel4 {
	background-image: url('Images/Vertical Panels/wallsconce-mobile.png');
	background-position: center;
}
	
.footer {
	display: flex;
    background-color: #dfdfdf;
    color: #2f2f2f;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px;
}

.footer-logo1 img {
	width: 45px;
	height: 45px;
	margin: 5px;
}
	
.footer-logo2 img {
	width: 45px;
	height: 45px;
	margin: 5px;
	transform: scaleX(-1); /* Flips the image horizontally */
}
		
.footer-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
	
.footer-links a {
    font-size: 12px;
}
	
.footer-links a:hover {
    color: #001B36;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
	
.footer-links a::after {
    display: none;
}	
	
.socialmedia {
	padding: 5px;
	gap: 15px;
}
	
.facebook-icon i {
	font-size: 18px;
	color: #1877F2;
	transition: transform 0.3s ease-in;
}

.instagram-icon i {
	font-size: 18px;
}
	
.linkedin-icon i {
	font-size: 18px;
}
	
.youtube-icon i {
	font-size: 18px;
}
	
i:hover {
	transform: scale(1.10);
}
	
.footer-bottom {
    font-size: 6px;
	padding-bottom: 5px;
}

.products {
	justify-content: center;
	margin: 0px, 25px, 25px, 25px;
}
	
.products h2 {
	font-size: 28px;
	font-weight: 500;
	margin: 20px auto 40px;
	letter-spacing: 1.4px;
}
	
.product-grid {
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat;
    gap: 10px;
    margin: 30px auto 20px;
}
	
.grid-image {
	transition: none;
}
	
.grid-image:hover {
	opacity: 1;
}
	
.grid-text {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
}
	
.grid-label {
	font-size: 20px;
}
	
.grid-label::after {
	width: 100%;
}
	
/*Understanding Kelvin/Lumens/Light Distribution*/
	
.paragraph {
	margin: 20px auto 20px;
	width: 98%;
	padding: 10px;
}
	
.paragraph h1 {
	font-size: 20px;
}
	
.paragraph h2 {
	font-family: Montserrat, sans-serif;
	font-style: oblique;
	font-size: 18px;
	color: black;
	font-weight: 600;
	text-align: center;
}
	
.paragraph p {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	font-size: 16px;	
}
	
.paragraph p2 {
	margin-top: 0px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
}
	
.kelvin-chart {
	background-image: url('websiteimages/kelvinchart.jpg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: -115px auto -115px;
}
	
.paragraph p3 {
	text-align: center;
	text-decoration: underline;
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
}
	
.lighting-optics {
	background-image: url('websiteimages/lightingoptics.jpg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: -50px auto -50px;
	box-shadow: none;
}
	
/* End of Section */
	
	
/* Ourstory.php */
	
.storyHeroSection {
	margin: 15px auto 15px;
}

.heroText {
	font-size: 22px;
}

.heroLinks {
	margin-top: 5px;
}

.heroLinks a {
	font-size: 18px;
}

.storyBox {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 95%;
	margin: 30px auto;
}

.storyText {
	padding: 30px;
	text-align: center;
}

.storyText p {
	font-size: 16px;
}

.storyStatement {
	padding-top: 15px;
	font-size: 18px;
}

.storyImage {
	justify-content: center;
	align-items: center;
}

.mikeImage {
	width: 100%;
	aspect-ratio: 4 / 3;
	background-image: url("websiteimages/mikekrest.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.remembranceText p {
	font-size: 14px;
}

.remembranceText p:first-child {
	font-size: 15px;
}

.whatWeDo {
	margin-top: -30px;
}

.centerStatement {
	font-size: 28px;
}

.taskcardBox {
	padding: 15px;
}

.taskcardBox h2 {
	font-size: 20px;
}

.taskcardDescription {
	font-size: 16px;
}

.taskcards {
	margin-top: -5px;
}

.taskcard {
	max-width: 500px;
	min-width: 350px;
	height: 400px;
}

.taskcardTitle p {
	font-size: 18px;
}
	
/* End of Section */
	
	
/* Meetourteam.php */
	
.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat; 
	gap: 10px;
	width: 100%;
	margin: 20px auto 5px;	
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #001b36;
	padding: 5px;
	box-shadow: 0px 0px 3.5px rgba(0, 0, 0, 1.5);
	width: 98%;
	margin: 5px auto 5px;
}
	
.contact-image {
	width: 100%;
	max-width: 400px;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-color: #afadc2;
}
	
.contact p {
	font-size: 16px;
}
	
.contact a {
	font-size: 12px;
}
	
/* End of Section */
	
	
/* Contactus.php */
	
.contact-us {
	display: flex;
	flex-direction: column;
	margin: 30px auto 0px;
	height: 100%;
	width: 98%;
	text-align: center;
}
	
.location-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 10px;	
}
	
.location-text h1 {
	font-size: 22px;
}
	
.location-text p {
	font-size: 16px;
	margin-top: 5px;
}
	
.map-image {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	width: 100%;
	padding: 5px;
}
	
.map {
	background-image: url('websiteimages/map-mobile1.jpg');
	background-size: cover;
	background-postion: center;
	background-repeat: no-repeat;
	width: 100%;
	min-width: 300px;
	height: 400px;
	margin: 5px auto;
}
	
/* End of Section */

/* Customerforms.php */
	
.choose-form {
	display: flex;
	flex-direction: column;
	margin: 20px auto 0px;
	background-image: url('websiteimages/pic4.jpg');
	height: auto;
	padding: 5px;
}
	
.forms {
	flex-direction: column;
	gap: 10px;
}
	
.forms a {
	font-size: 26px;
	padding: 0px 30px;
	height: 100px;
	width: 98%;
	transition: scale 0.3s ease-in;
}
	
.forms a:hover {
	transform: scale(1.1)
}
	
/* End of Section */
	
/* Gallery.php */
	
.galleryHeader h1 {
	font-size: 22px;
	font-weight: 500;
	margin: 30px auto 30px;
	letter-spacing: 1.4px;
	text-underline-offset: 5px;
}
	
.gallery {
	margin: 5px auto;
	height: 500px;
	width: 98%;
	position: relative;
}
	
.gallerySlide {
	position: absolute;
	width: 100%; 
  	height: 500px;
 	opacity: 0;
 	transition: opacity 1s ease-in-out; 
}
		
.gallerySlide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
		
.previewBar {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 20px auto;
    position: relative;
    width: 98%;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
	
.thumbnails {
    display: flex;
    justify-content: center;
}
	
.thumbnail {
    margin: 0 10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
}
	
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
		
.prev, .next {
    font-size: 16px;
    padding: 5px;
}
	
.imageSection2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 5px;
    width: 100%;
    max-width: 100%;
}
	
.longImage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
	
.twoImages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
}
	
.twoImages img,
.longImage img {
    width: 95%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Optional polish */
}
	
.galleryGrid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 15px;
	width: 98%;
	margin: 20px auto;
	align-items: center;
	justify-content: center;
}
	
.galleryImage img {
	width: 98%;
	margin: 5px auto;	
}
	
.galleryImage:hover {
	transform: scale(1.08)
}
	
/*End of Section*/

/* Styling for Different Product Pages */
	
.categoryHeader h2 {
	font-size: 28px;
	margin: 30px auto 30px;
}
	
.item-grid {
	grid-template-columns: repeat(2, 1fr);
    gap: 10px; 
    width: 100%;
    margin: 10px auto;
}
	
/* Individual product items */
.product-item {
	display: flex;
	flex-direction: column;
    border: 1px solid #001b36;
    padding: 5px;
    width: 100%;
    margin: 0px auto 0px;
}
	
/* Hover effect */
.product-item:hover {
    transform: scale(1.03);
}
	
/* Product image container */
.product-image {
    width: 100%;
    max-height: 400px;
    max-width: 400px; 
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
	
/* Headings inside the product items */
.product-item h3 {
    font-size: 20px;
    margin: 5px 0 5px;
}
	
/* Links inside the product items */
.product-item a {
    text-decoration: none;
    color: #001b36;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}
	
.product-item p {
	margin-top: 0px;
	font-size: 14px;
}
	
.product-item a:hover {
    text-decoration: underline;
}
	
/* End of Section */
	
}



/* =====================================================
   SMALL LAPTOP (1025 - 1279)
===================================================== */
@media (min-width:1025px) and (max-width:1279px){

.headerBar {
	position: relative;
	padding: 5px;
	height: 90px;
}
	
.hamburger {
	display: block !important;
	position: absolute;
	right: 35px;
	top: 35px;
	font-size: 32px;
	cursor: pointer;
	color: #001b36;
	z-index: 9999;
	background: none;
	border: none;
}
		
.headerBar img {
	width: 120px;
	height: 60px;
	margin-top: 10%;
}
	
.navbar {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 50;
	margin: 0;
	padding: 0;
}
	
.navLinks {
    display: none;
    flex-direction: column;
    background-color: #f0f8ff;
    position: absolute;
    top: 100px;
    right: 0;
    width: 300px;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    font-size: 18px;
}
	
.navLinks.open {
    display: flex;
    gap: 15px;
}
		
.searchBar {
	position: absolute;
	right: 35px;
}

.searchBar input {
	padding: 0px 8px;
	font-size: 16px;
	color: #DFDFDF;
	transition: transform 0.3s ease-in;
	border-radius: 5px;
	border: 1px solid #001b36;
	width: 175px;
}
	
.searchBar input:focus {
	transform: scale(1.05);
}
	
.dropdown {
	align-items: flex-start;
}
	
.productLink{
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.announcementBar {
	margin: 10px 0px 10px 0px;
	font-size: 16px;
	height: 28px;
}
	
.heroImage {
	height: 450px;
}
	
.heroHover {
	width: 90%;
	height: 180px;
	opacity: 1;
	text-align: center;
}
	
.heroHover h1 {
	font-size: 22px;
	margin-bottom: 25px;
}
	
.heroHover a {
	font-size: 14px;
	text-decoration: underline #001b36;
	text-underline-offset: 5px;
	text-decoration-thickness: 1.3px;
}
	
.missionStatement {
	flex-direction: row;	
	bprder-radius: 5px;
}
	
.missionText {
	height: auto;
	padding: 15px;
	border-radius: 0px;
	text-align: center;
}
	
.missionText h1 {
	font-size: 22px;	
}

.missionText p {
	font-size: 14px;	
}
	
.missionText .tagline {
	margin-top: -10px;
	font-weight: bold;
}
	
.tagline::after {
	height: 0px;	
}
	
.missionPicture img {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
	
.verticalPanels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	z-index: 5;
	width: 95%;
	min-width: 600px;
	margin: 5% auto 0;
	gap: 15px;
}
	
.verticalPanel {
	height: 500px;
	width: 100%;
	flex: none;
	max-width: 700px;
}
	
.panelHover {
	opacity: 1;
	background-color: rgba(0,0,0,0.2);
	inset: 0;
}
	
.panelHover h2 {
	font-size: 18px;
}
	
.panelHover h2::after {
    width: 100%;
}
	
.panel1,
.panel2,
.panel3,
.panel4 {
	background-size: contain;
	background-repeat: no-repeat;
}
	
.panel1 {
	background-image: url('Images/Vertical Panels/bollard-mobile.png');
	background-position: center;
}
	
.panel2 {
	background-image: url('Images/Vertical Panels/pole-mobile.png');
	background-position: center;
}
	
.panel3 {
	background-image: url('Images/Vertical Panels/polelight-mobile.png');
	background-position: center;
}
	
.panel4 {
	background-image: url('Images/Vertical Panels/wallsconce-mobile.png');
	background-position: center;
}
	
.footer {
	display: flex;
    background-color: #dfdfdf;
    color: #2f2f2f;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px;
}

.footer-logo1 img {
	width: 45px;
	height: 45px;
	margin: 5px;
}
	
.footer-logo2 img {
	width: 45px;
	height: 45px;
	margin: 5px;
	transform: scaleX(-1); /* Flips the image horizontally */
}
		
.footer-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
	
.footer-links a {
    font-size: 12px;
}
	
.footer-links a:hover {
    color: #001B36;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
	
.footer-links a::after {
    display: none;
}	
	
.socialmedia {
	padding: 5px;
	gap: 15px;
}
	
.facebook-icon i {
	font-size: 18px;
	color: #1877F2;
	transition: transform 0.3s ease-in;
}

.instagram-icon i {
	font-size: 18px;
}
	
.linkedin-icon i {
	font-size: 18px;
}
	
.youtube-icon i {
	font-size: 18px;
}
	
i:hover {
	transform: scale(1.10);
}
	
.footer-bottom {
    font-size: 6px;
	padding-bottom: 5px;
}

.products {
	justify-content: center;
	margin: 0px, 25px, 25px, 25px;
}
	
.products h2 {
	font-size: 28px;
	font-weight: 500;
	margin: 20px auto 40px;
	letter-spacing: 1.4px;
}
	
.product-grid {
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat;
    gap: 10px;
    margin: 30px auto 20px;
}
	
.grid-image {
	transition: none;
}
	
.grid-image:hover {
	opacity: 1;
}
	
.grid-text {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
}
	
.grid-label {
	font-size: 20px;
}
	
.grid-label::after {
	width: 100%;
}
	
/*Understanding Kelvin/Lumens/Light Distribution*/
	
.paragraph {
	margin: 20px auto 20px;
	width: 98%;
	padding: 10px;
}
	
.paragraph h1 {
	font-size: 20px;
}
	
.paragraph h2 {
	font-family: Montserrat, sans-serif;
	font-style: oblique;
	font-size: 18px;
	color: black;
	font-weight: 600;
	text-align: center;
}
	
.paragraph p {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	font-size: 16px;	
}
	
.paragraph p2 {
	margin-top: 0px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
}
	
.kelvin-chart {
	background-image: url('websiteimages/kelvinchart.jpg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: -50px auto -50px;
}
	
.paragraph p3 {
	text-align: center;
	text-decoration: underline;
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
}
	
.lighting-optics {
	background-image: url('websiteimages/lightingoptics.jpg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: 30px auto 30px;
	box-shadow: none;
}
	
/* End of Section */
	
	
/* Ourstory.php */
	
.storyHeroSection {
	margin: 15px auto 15px;
}

.heroText {
	font-size: 22px;
}

.heroLinks {
	margin-top: 5px;
}

.heroLinks a {
	font-size: 18px;
}

.storyBox {
	display: flex;
	flex-direction: row;
	gap: 15px;
	width: 95%;
	margin: 30px auto;
}

.storyText {
	padding: 15px;
	text-align: center;
}

.storyText p {
	font-size: 14px;
}

.storyStatement {
	padding-top: 15px;
	font-size: 16px;
}

.storyImage {
	justify-content: center;
	align-items: center;
}

.mikeImage {
	width: 100%;
	aspect-ratio: 4 / 3;
	background-image: url("websiteimages/mikekrest.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.remembranceText p {
	font-size: 14px;
}

.remembranceText p:first-child {
	font-size: 15px;
}

.whatWeDo {
	margin-top: -30px;
}

.centerStatement {
	font-size: 28px;
}

.taskcardBox {
	padding: 15px;
}

.taskcardBox h2 {
	font-size: 20px;
}

.taskcardDescription {
	font-size: 16px;
}

.taskcards {
	margin-top: -5px;
}

.taskcard {
	max-width: 500px;
	min-width: 350px;
	height: 400px;
}

.taskcardTitle p {
	font-size: 18px;
}
	
/* End of Section */
	
	
/* Meetourteam.php */
	
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat; 
	gap: 10px;
	width: 100%;
	margin: 20px auto 5px;	
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #001b36;
	padding: 5px;
	box-shadow: 0px 0px 3.5px rgba(0, 0, 0, 1.5);
	width: 98%;
	margin: 5px auto 5px;
}
	
.contact-image {
	width: 100%;
	max-width: 400px;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-color: #afadc2;
}
	
.contact p {
	font-size: 16px;
}
	
.contact a {
	font-size: 12px;
}
	
/* End of Section */
	
	
/* Contactus.php */
	
.contact-us {
	display: flex;
	flex-direction: row;
	margin: 30px auto 0px;
	height: 100%;
	width: 98%;
	text-align: center;
}
	
.location-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 10px;	
}
	
.location-text h1 {
	font-size: 22px;
}
	
.location-text p {
	font-size: 16px;
	margin-top: 5px;
}
	
.map-image {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	width: 100%;
	padding: 5px;
}
	
.map {
	background-image: url('websiteimages/map-mobile1.jpg');
	background-size: cover;
	background-postion: center;
	background-repeat: no-repeat;
	width: 100%;
	min-width: 300px;
	height: 400px;
	margin: 5px auto;
}
	
/* End of Section */

/* Customerforms.php */
	
.choose-form {
	display: flex;
	flex-direction: column;
	margin: 20px auto 0px;
	background-image: url('websiteimages/pic4.jpg');
	height: auto;
	padding: 5px;
}
	
.forms {
	flex-direction: column;
	gap: 10px;
}
	
.forms a {
	font-size: 26px;
	padding: 0px 30px;
	height: 100px;
	width: 98%;
	transition: scale 0.3s ease-in;
}
	
.forms a:hover {
	transform: scale(1.1)
}
	
/* End of Section */
	
/* Gallery.php */
	
.galleryHeader h1 {
	font-size: 22px;
	font-weight: 500;
	margin: 30px auto 30px;
	letter-spacing: 1.4px;
	text-underline-offset: 5px;
}
	
.gallery {
	margin: 5px auto;
	height: 500px;
	width: 98%;
	position: relative;
}
	
.gallerySlide {
	position: absolute;
	width: 100%; 
  	height: 500px;
 	opacity: 0;
 	transition: opacity 1s ease-in-out; 
}
		
.gallerySlide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
		
.previewBar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    position: relative;
    width: 98%;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
	
.thumbnails {
    display: flex;
    justify-content: center;
}
	
.thumbnail {
    margin: 0 10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
}
	
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
		
.prev, .next {
    font-size: 16px;
    padding: 5px;
}
	
.imageSection2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 5px;
    width: 100%;
    max-width: 100%;
    height: 500px;
}
	
.longImage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
	
.twoImages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
}
	
.twoImages img,
.longImage img {
    width: 95%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Optional polish */
}
	
.galleryGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	width: 98%;
	margin: 20px auto;
	align-items: center;
	justify-content: center;
}
	
.galleryImage img {
	width: 98%;
	margin: 5px auto;	
}
	
.galleryImage:hover {
	transform: scale(1.08)
}
	
/*End of Section*/

/* Styling for Different Product Pages */
	
.categoryHeader h2 {
	font-size: 28px;
	margin: 30px auto 30px;
}
	
.item-grid {
	grid-template-columns: repeat(3, 1fr);
    gap: 10px; 
    width: 100%;
    margin: 10px auto;
}
	
/* Individual product items */
.product-item {
	display: flex;
	flex-direction: column;
    border: 1px solid #001b36;
    padding: 5px;
    width: 100%;
    margin: 0px auto 0px;
}
	
/* Hover effect */
.product-item:hover {
    transform: scale(1.03);
}
	
/* Product image container */
.product-image {
    width: 100%;
    max-height: 400px;
    max-width: 400px; 
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
	
/* Headings inside the product items */
.product-item h3 {
    font-size: 20px;
    margin: 5px 0 5px;
}
	
/* Links inside the product items */
.product-item a {
    text-decoration: none;
    color: #001b36;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}
	
.product-item p {
	margin-top: 0px;
	font-size: 14px;
}
	
.product-item a:hover {
    text-decoration: underline;
}
	
/* End of Section */
	
}



/* =====================================================
   MEDIUM LAPTOP (1280 - 1750)
===================================================== */
@media (min-width:1280px) and (max-width:1750px){
			
.missionText h1 {
	font-size: 22px;	
}

.missionText p {
	font-size: 16px;	
}
	
.missionText .tagline {
	margin-top: -10px;
	font-weight: bold;
}
			
.verticalPanels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	z-index: 5;
	width: 95%;
	min-width: 600px;
	margin: 5% auto 0;
	gap: 15px;
}
	
.verticalPanel {
	height: 500px;
	width: 100%;
	flex: none;
	max-width: 700px;
}
	
.panelHover {
	opacity: 0;
	background-color: rgba(0,0,0,0.2);
	inset: 0;
}
	
.panelHover h2 {
	font-size: 18px;
}
	
.panelHover h2::after {
    width: 100%;
}
	
.panel1,
.panel2,
.panel3,
.panel4 {
	background-size: contain;
	background-repeat: no-repeat;
}
	
.panel1 {
	background-image: url('Images/Vertical Panels/bollard-mobile.png');
	background-position: center;
}
	
.panel2 {
	background-image: url('Images/Vertical Panels/pole-mobile.png');
	background-position: center;
}
	
.panel3 {
	background-image: url('Images/Vertical Panels/polelight-mobile.png');
	background-position: center;
}
	
.panel4 {
	background-image: url('Images/Vertical Panels/wallsconce-mobile.png');
	background-position: center;
}
	
.products {
	justify-content: center;
	margin: 0px, 25px, 25px, 25px;
}
	
.products h2 {
	font-size: 28px;
	font-weight: 500;
	margin: 140px auto 40px;
	letter-spacing: 1.4px;
}
	
.product-grid {
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat;
    gap: 10px;
    margin: 20px auto 20px;
}
	
.grid-image {
	transition: none;
}
	
.grid-image:hover {
	opacity: 1;
}
	
.grid-text {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
	
.grid-label {
	font-size: 20px;
}
	
.grid-label::after {
	width: 100%;
}
	
/*Understanding Kelvin/Lumens/Light Distribution*/
	
.paragraph {
	margin: 140px auto 20px;
	width: 98%;
	padding: 10px;
}
	
.paragraph h1 {
	font-size: 22px;
}
	
.paragraph h2 {
	font-family: Montserrat, sans-serif;
	font-style: oblique;
	font-size: 20px;
	color: black;
	font-weight: 600;
	text-align: center;
}
	
.paragraph p {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	font-size: 18px;	
}
	
.paragraph p2 {
	margin-top: 0px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 18px;
}
	
.kelvin-chart {
	background-image: url('websiteimages/kelvinchart.jpg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: 30px auto 10px;
}
	
.paragraph p3 {
	text-align: center;
	text-decoration: underline;
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
}
	
.lighting-optics {
	background-image: url('websiteimages/lightingoptics.jpg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 98%;
	margin: 30px auto 30px;
	box-shadow: none;
}
	
/* End of Section */
	
	
/* Ourstory.php */
	
.storyHeroSection {
	margin: 130px auto 15px;
}

.heroText {
	font-size: 22px;
}

.heroLinks {
	margin-top: 5px;
}

.heroLinks a {
	font-size: 18px;
}

.storyBox {
	display: flex;
	flex-direction: row;
	gap: 15px;
	width: 95%;
	margin: 30px auto;
}

.storyText {
	padding: 15px;
	text-align: center;
}

.storyText p {
	font-size: 16px;
}

.storyStatement {
	padding-top: 15px;
	font-size: 18px;
}

.storyImage {
	justify-content: center;
	align-items: center;
}

.mikeImage {
	width: 100%;
	aspect-ratio: 4 / 3;
	background-image: url("websiteimages/mikekrest.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.remembranceText p {
	font-size: 14px;
}

.remembranceText p:first-child {
	font-size: 15px;
}

.whatWeDo {
	margin-top: -30px;
}

.centerStatement {
	font-size: 28px;
}

.taskcardBox {
	padding: 15px;
}

.taskcardBox h2 {
	font-size: 20px;
}

.taskcardDescription {
	font-size: 16px;
}

.taskcards {
	margin-top: -5px;
}

.taskcard {
	max-width: 500px;
	min-width: 350px;
	height: 400px;
}

.taskcardTitle p {
	font-size: 18px;
}
	
/* End of Section */
	
	
/* Meetourteam.php */
	
.contact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat; 
	gap: 10px;
	width: 100%;
	margin: 20px auto 5px;	
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #001b36;
	padding: 5px;
	box-shadow: 0px 0px 3.5px rgba(0, 0, 0, 1.5);
	width: 98%;
	margin: 5px auto 5px;
}
	
.contact-image {
	width: 100%;
	max-width: 400px;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-color: #afadc2;
}
	
.contact p {
	font-size: 16px;
}
	
.contact a {
	font-size: 12px;
}
	
/* End of Section */
	
	
/* Contactus.php */
	
.contact-us {
	display: flex;
	flex-direction: row;
	margin: 30px auto 0px;
	height: 100%;
	width: 98%;
	text-align: center;
}
	
.location-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 10px;	
}
	
.location-text h1 {
	font-size: 22px;
}
	
.location-text p {
	font-size: 16px;
	margin-top: 5px;
}
	
.map-image {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	width: 100%;
	padding: 5px;
}
	
.map {
	background-image: url('websiteimages/map-mobile1.jpg');
	background-size: cover;
	background-postion: center;
	background-repeat: no-repeat;
	width: 100%;
	min-width: 300px;
	height: 400px;
	margin: 5px auto;
}
	
/* End of Section */

/* Customerforms.php */
	
.choose-form {
	display: flex;
	flex-direction: column;
	margin: 20px auto 0px;
	background-image: url('websiteimages/pic4.jpg');
	height: auto;
	padding: 5px;
}
	
.forms {
	flex-direction: column;
	gap: 10px;
}
	
.forms a {
	font-size: 26px;
	padding: 0px 30px;
	height: 100px;
	width: 98%;
	transition: scale 0.3s ease-in;
}
	
.forms a:hover {
	transform: scale(1.1)
}
	
/* End of Section */
	
/* Gallery.php */
	
.galleryHeader h1 {
	font-size: 22px;
	font-weight: 500;
	margin: 140px auto 30px;
	letter-spacing: 1.4px;
	text-underline-offset: 5px;
}
	
.gallery {
	margin: 5px auto;
	height: 500px;
	width: 98%;
	position: relative;
}
	
.gallerySlide {
	position: absolute;
	width: 100%; 
  	height: 500px;
 	opacity: 0;
 	transition: opacity 1s ease-in-out; 
}
		
.gallerySlide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
		
.previewBar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    position: relative;
    width: 98%;
    overflow-x: scroll;
    scroll-behavior: smooth;
}
	
.thumbnails {
    display: flex;
    justify-content: center;
}
	
.thumbnail {
    margin: 0 10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
}
	
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
		
.prev, .next {
    font-size: 16px;
    padding: 5px;
}
	
.imageSection2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 5px;
    width: 100%;
    max-width: 100%;
    height: 500px;
}
	
.longImage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
	
.twoImages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
}
	
.twoImages img,
.longImage img {
    width: 95%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Optional polish */
}
	
.galleryGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	width: 98%;
	margin: 20px auto;
	align-items: center;
	justify-content: center;
}
	
.galleryImage img {
	width: 98%;
	margin: 5px auto;	
}
	
.galleryImage:hover {
	transform: scale(1.08)
}
	
/*End of Section*/

/* Styling for Different Product Pages */
	
.categoryHeader h2 {
	font-size: 28px;
	margin: 130px auto 30px;
}
	
.item-grid {
	grid-template-columns: repeat(4, 1fr);
    gap: 10px; 
    width: 100%;
    margin: 10px auto;
}
	
/* Individual product items */
.product-item {
	display: flex;
	flex-direction: column;
    border: 1px solid #001b36;
    padding: 5px;
    width: 100%;
    margin: 0px auto 0px;
}
	
/* Hover effect */
.product-item:hover {
    transform: scale(1.03);
}
	
/* Product image container */
.product-image {
    width: 100%;
    max-height: 400px;
    max-width: 400px; 
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
	
/* Headings inside the product items */
.product-item h3 {
    font-size: 20px;
    margin: 5px 0 5px;
}
	
/* Links inside the product items */
.product-item a {
    text-decoration: none;
    color: #001b36;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}
	
.product-item p {
	margin-top: 0px;
	font-size: 14px;
}
	
.product-item a:hover {
    text-decoration: underline;
}
	
/* End of Section */


}