﻿html {
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

h1, h2, h3 {
	font-family: Montserrat, sans-serif;
	color: #2f2f2f;
}

body {
	margin: 0;
	padding: 0;
	font-family: Open Sans, sans-serif;
	color: #2f2f2f;
	min-height: 100vh;
}

/* Initial state: hidden */
.fade-in-effect {
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body.fade-in-effect {
    animation: fadeIn 2s forwards; /* 2s is the duration, forwards keeps the final state */
}

.headerBar {
	height: 120px;
	width: 100%;
	margin: 0px auto;
	background-color: #dfdfdf;
	border-bottom: 1px solid #001B36;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	z-index: 50;
	position: fixed;
	top: 0;
	left: 0;
}

.headerBar img {
	width: 250px;
	height: 100px;
	transition: transform 0.3s ease-in;
}

.headerBar img:hover {
	transform: scale(1.05);
}

.navbar {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-right: 50px;
	position: relative;
	z-index: 50;
}

.hamburger {
	display: none;
}

.navLinks {
	display: flex;
	gap: 65px;
}

.navLinks a {
	display: flex;
	text-decoration: none;
	color: #222222;
	font-weight: 500;
	font-size: 21px;
	font-family: Montserrat, sans-serif;
	transition: transform 0.3s ease-in, color 0.3s ease-in;
	text-shadow: 0px 5px 3.5px rgba(0, 0, 0, 0.4); 
	letter-spacing: 1.2px;
	position: relative;
}

.navLinks a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #001B36;
    transition: width 0.25s ease;
}

.navLinks a:hover::after {
    width: 100%;
}

.navLinks a:hover {
	font-weight: 600;
	transform: scale(1.03);
}

.searchBar {
	display: flex;
	justify-content: flex-end;
	gap: 5px;
	margin-top: 10px;
	position: relative;
	height: 25px;
}

.searchBar input {
	padding: 0px 8px;
	font-size: 16px;
	color: #DFDFDF;
	transition: transform 0.3s ease-in;
	border-radius: 5px;
	border: 1px solid #001b36;
}

.searchBar input:focus {
	transform: scale(1.05);
}

#searchButton {
	background-color: #dfdfdf;
	border: none;
	font-size: 18px;
	color: #001b36;
	cursor: pointer;
	transition: transform 0.3s ease-in;
}

#searchButton:hover {
	transform: translateY(-5px);
}

#suggestions {
  position: absolute;
  top: 100%;
  right: 35px;
  margin-top: 6px;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  z-index: 50;
  width: 250px;
  color: #001b36;
}

#suggestions div {
  padding: 8px;
  cursor: pointer;
}

#suggestions div:hover {
  background: #dfdfdf;
}

/*End of Nav Styling*/

.dropdown{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* row that holds button + Products link */
.productLink{
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdownBtn{
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 6px 8px;
    line-height: 1;
    font-size: 16px;
    color: #222;
    transition: transform 0.2s ease;
}

.dropdown.open .dropdownBtn{
  transform: rotate(90deg);
}

.dropdownContent{
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 100%;          
    left: 0;           
    margin-top: 6px;
    background-color: #f0f0f0;
    border-left: 2px solid #001b36;
    padding: 10px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    max-height: 65vh;
    overflow-y: auto;
    z-index: 50;
}

.dropdown.open .dropdownContent{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 50;
}

.announcementBar{
    position: relative;         
    display: flex;
    flex-direction: column;
    height: 30px;
    background-color:#dfdfdf;
    overflow: hidden;
    padding: 5px;
    border: 1px solid #001b36;
    width: 100%;
    margin: 130px 0px 12px 0px;
    text-align: center;
    font-size: 20px;
}

.announcement{
	color: #222222;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    white-space: nowrap;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(100%);  
}

.announcement.active{
    opacity: 1;
    transform: translateY(-50%);  
    animation: pulse 3s infinite;
}

.catalogLink {
	text-decoration: underline;
	text-underline-offset: 2px;
	color: #222222;
	cursor: pointer;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); 
    }
    100% {
        transform: scale(1);
    }
}

.heroImage {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
	height: 700px;
	position: relative;
	margin-top: 5px;
}

.heroImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.heroHover {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border: 1px solid #001b36;
	background-image: url('Images/Textures/aluminum.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #dfdfdf;
	min-width: 300px;
	max-width: 800px;
	height: 225px;
	border-radius: 5px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity 0.3s ease-in;
}

.heroHover h1 {
	margin-bottom: 40px;
	letter-spacing: 1.2px;
}

.heroHover a {
	color: #001b36;
	text-decoration: none;
	transition: transform 0.3s ease-in;
}

.heroHover a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #001B36;
    transition: width 0.25s ease;
}

.heroHover a:hover::after {
    width: 100%;
}

.heroHover a:hover {
	transform: scale(1.05);
}

.heroImage:hover .heroHover {
	opacity: 1;
}

.missionStatement {
	display: flex;
	height: 525px;
	margin: 20px auto 20px;
	width: 95%;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	background: #dfdfdf;
}

.missionText {
	display: flex;
	flex: 0 0 40%;
	flex-direction: column;
	padding: 30px;
	align-items: center;
}

.missionText h1 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 1.5px;
}

.missionText p {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1.3px;
	margin-top: 15px;
}

.tagline {
	margin-top: 15px;
	font-size: 20px;
	font-weight: 600;
	position: relative;
}

.tagline::after {
	content: "";
	left: 0;
	bottom: -7px;
	background-color: #001b36;
	height: 2px;
	width: 95%;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}

.missionPictureGallery {
	height: 525px;
	flex: 0 0 60%;
	position: relative;
	padding: 0;
	overflow: hidden;
}

.missionPicture {
	opacity: 0;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	transition: opacity 0.5s ease-in;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;	
}

.missionPicture img {
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;	
}

.missionPicture.active {
	opacity: 1;
}

.verticalPanels {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	margin: 20px auto 20px;
}

.verticalPanel {
	height: 700px;
	flex: 0 0 25%;
	max-width: 450px;
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
	position: relative;
}

.panelHover {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity 0.3s ease-in;
	cursor: pointer;
}

.panelHover h2 {
	color: white;
	letter-spacing: 1.7px;
	position: relative;
	transition: transform 0.3s ease-in;
}

.panelHover h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.25s ease-in;
}

.panelHover:hover {
	opacity: 1;
}

.panelHover:hover h2::after {
    width: 100%;
}

.panel1 {
	background-image: url('Images/Vertical Panels/bollard4.jpg');
	background-position: center bottom;
	background-repeat: no-repeat;
}

.panel2 {
	background-image: url('Images/Vertical Panels/pole4.jpg');
	background-position: center bottom;
	background-repeat: no-repeat;
}

.panel3 {
	background-image: url('Images/Vertical Panels/polelight3.jpg');
	background-position: center bottom;
	background-repeat: no-repeat;
}

.panel4 {
	background-image: url('Images/Vertical Panels/wallsconce3.jpg');
	background-position: center bottom;
	background-repeat: no-repeat;
}

.panel1,
.panel2,
.panel3,
.panel4 {
	background-size: 100%;
	transition: background-size 0.3s ease;
}

.panel1:hover,
.panel2:hover,
.panel3:hover,
.panel4:hover {
	background-size: 102%;
}

/* Footer Styling */
.footer {
	display: flex;
    background-color: #dfdfdf;
	background-size: cover;
	background-repeat: repeat; 
    color: #2f2f2f;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-top: 1px solid #001B36;
    margin: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7);
    width: 100%;
}

.footer-logo1 img {
	width: 75px;
	height: 75px;
	margin-left: 20px;
}

.footer-logo2 img {
	width: 75px;
	height: 75px;
	margin-right: 20px;
	transform: scaleX(-1); /* Flips the image horizontally */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 15px;
    font-family: 'Open Sans', sans-serif;
}

.footer-links a {
    text-decoration: none;
    color: #2f2f2f;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #001B36;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1.5px;
    background-color: #001B36;
    transition: width 0.25s ease;
}

.footer-links a:hover::after {
    width: 100%;
}


.socialmedia {
	display: flex;
	padding: 10px;
	justify-content: space-between;
	gap: 25px;
}

.facebook-icon i {
	font-size: 28px;
	color: #1877F2;
	transition: transform 0.3s ease-in;
}

.instagram-icon i {
	font-size: 28px;
	background: linear-gradient(45deg, #FCAF45, #E4405F, #833AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: transform 0.3s ease-in;
}

.linkedin-icon i {
	font-size: 28px;
	color: #0a66c2;
	transition: transform 0.3s ease-in;
}

.youtube-icon i {
	font-size: 28px;
	color: #FF0000;
	transition: transform 0.3s ease-in;
}

i:hover {
	transform: scale(1.10);
}

.footer-bottom {
    font-size: 10px;
    margin-top: 5px;
    padding-bottom: 10px;
}
/* End of Footer Section */

/* Products.php */

.products {
	justify-content: center;
	margin: 160px, 25px, 25px, 25px;
}

.products h2 {
	text-align: center;
	font-family: Montserrat, sans-serif;
	text-decoration: underline;
	text-underline-offset: 12px;
	text-decoration-thickness: 1px;
	text-decoration-color: #001b36;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4);
	font-size: 40px;
	font-weight: 500;
	margin: 145px auto 50px;
	letter-spacing: 1.4px;
}

.product-grid {
	display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 images per row */
    grid-template-rows: repeat(5, auto); /* 5 rows */
    gap: 20px;
    margin: 30px auto 20px;
    width: 98%;
}

.grid-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
	max-width: 400px;
	width: 100%;
	border: 0.5px solid #001b36;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: opacity 0.3s ease-in-out;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
	overflow: hidden;	
}

.grid-image:hover {
	opacity: 80%;
}

/* Pictures for Sections */

.image1 {background-image: url('websiteimages/addresslighting.jpg'); }
.image2 { background-image: url('websiteimages/areaandsitelighting.jpg'); }
.image3 { background-image: url('websiteimages/bollards.jpg'); }
.image4 { background-image: url('websiteimages/canopyandgarage.jpg'); }
.image5 { background-image: url('websiteimages/catenary.jpg'); }
.image6 { background-image: url('websiteimages/ceilingflush.jpg'); }
.image7 { background-image: url('websiteimages/customcreations.jpg'); }
.image8 { background-image: url('websiteimages/floodlighting.jpg'); }
.image9 { background-image: url('websiteimages/linears.jpg'); }
.image10 { background-image: url('websiteimages/madeinamerica.jpg'); }
.image11 { background-image: url('websiteimages/overstock.jpg'); }
.image12 { background-image: url('websiteimages/patiolighting.jpg'); }
.image13 { background-image: url('websiteimages/pendantsandchandeliers.jpg'); }
.image14 { background-image: url('websiteimages/polelights.jpg'); }
.image15 { background-image: url('websiteimages/poles.jpg'); }
.image16 { background-image: url('websiteimages/posttops.jpg'); }
.image17 { background-image: url('websiteimages/solarandamber.jpg'); }
.image18 { background-image: url('websiteimages/steplights.jpg'); }
.image19 { background-image: url('websiteimages/turtlesafe.jpg'); }
.image20 { background-image: url('websiteimages/vanities.jpg'); }
.image21 { background-image: url('websiteimages/wallpacks.jpg'); }
.image22 { background-image: url('websiteimages/wallsconces.jpg'); }
.image23 { background-image: url('websiteimages/highbay.jpg'); }

.grid-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.grid-label {
  position: relative;
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 1.5px;
  color: #f0f8ff;
}

.grid-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.25s ease;
}

.grid-image:hover .grid-text {
  opacity: 1;
}

.grid-image:hover .grid-label::after {
  width: 100%;
}

/* End of Products.php */

/* Understanding Kelvin/Lumens/Light Distribution */

.paragraph {
	background-color: #dfdfdf;
	display: flex;
	flex-direction: column;
	align-items: left;
	margin: 160px auto 30px;
	border: 1px solid #001b36;
	border-radius: 10px;
	box-shadow: 0 0px 5px rgba(0, 0, 0, 1);
	width: 90%;
}

.paragraph h1 {
	margin-top: 25px;
	text-align: center;
	font-family: Montserrat, sans-serif;
	color: #001b36;
	text-decoration: underline;
	text-underline-offset: 5px;
	letter-spacing: 1.5px;
	font-size: 30px;
	font-weight: 600;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.paragraph h2 {
	display; flex;
	font-family: Montserrat, sans-serif;
	font-style: oblique;
	font-size: 24px;
	color: black;
	font-weight: 600;
	text-align: center;
}

.paragraph p {
	display: flex;
	margin-left: 150px;
	margin-right: 150px;
	font-family: Open Sans, sans-serif;
	font-size: 18px;
	color: black;	
}

.paragraph p2 {
	display: flex;
	margin-top: 0px;
	margin-left: 150px;
	margin-right: 150px;
	font-family: Open Sans, sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: black;	
}

.kelvin-chart {
	background-image: url('websiteimages/kelvinchart.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 500px;
	width: 1500px;
	margin: 30px auto;
}

.paragraph p3 {
	text-align: left;
	text-decoration: underline;
	margin-top: 40px;
	margin-bottom: 20px;
	margin-left: 150px;
	margin-right: 150px;
	font-family: Open Sans, sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: black;	
}

.lighting-optics {
	background-image: url('websiteimages/lightingoptics.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 20px auto 20px;
	height: 500px;
	width: 1200px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

/* End of Section */


/* Ourstory.php */

.storyHeroSection {
	height: 85vh;
	width: 99%;
	margin: 125px auto 20px;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.storyHeroImage {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.storyHeroImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.storyHeroImage::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0)
    );
}

.heroImageText {
	position: absolute;
	left: 3%;
	top: 5%;
	z-index: 3;
}

.heroText {
	font-size: 32px;
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	color: white;
	letter-spacing: 3px;
	line-height: 60px;
}

.heroLinks {
	display: flex;
	flex-direction: column;
	margin-top: 25px;
	padding: 5px;
}

.heroLinks a {
	text-decoration: underline;
	text-underline-offset: 5px;
	color: white;
	font-size: 28px;
	transition: transform 0.3s ease-in;
}

.heroLinks a:hover {
	transform: scale(1.05)
}

.storyBox {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
	gap: 60px;
	width: min(1750px, 95%);
	margin: 70px auto;
	align-items: stretch;
}

.storyText {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 55px 60px;
	background-color: #E8E8E8;
}

.storyText p {
	margin: 0 0 15px;
	padding: 0;
	font-size: 18px;
	line-height: 1.8;
}

.storyText p:last-child {
	margin-bottom: 0;
}

.storyStatement {
	margin-top: 0px;
	padding-top: 25px;
	border-top: 1px solid rgba(0, 0, 0, 0.18);
	font-size: 20px;
	line-height: 1.6;
}

.storyStatement strong {
	font-weight: 700;
}

.storyImage {
	display: flex;
	flex-direction: column;
	margin: 0;
	background-color: #FFFFFF;
}

.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 {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 26px 30px 10px;
	text-align: center;
}

.remembranceText p {
	margin: 0 0 12px;
	padding: 0;
	font-size: 16px;
	line-height: 1.5;
}

.remembranceText p:first-child {
	font-weight: 700;
	font-size: 17px;
}

.mikeQuote {
	margin: 12px 0 0;
	font-style: italic;
	line-height: 1.6;
}

.whatWeDo {
	background-color: #e8e8e8;
	padding: 20px;
	margin-top: 70px;
}

.centerStatement {
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-size: 40px;
	font-weight: bold;
	font-family: Montserrat, sans-serif;
	letter-spacing: 5px;
}

.taskcardBox {
	display: flex;
	flex-direction: column;
	width: 98%;
	margin: -30px auto 20px;
	padding: 20px;
}

.taskcardBox h2 {
	font-family: Montserrat, sans-serif;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 2px;
}

.taskcardDescription {
	font-family: Open-sans, sans-serif;
	font-size: 20px;
	letter-spacing: 2px;
	margin-top: 0px;
}

.taskcards {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 20px;
	padding: 10px 0px 10px;
	overflow-x: scroll;
	margin-top: 10px;
}

.taskcard {
	display: flex;
	position: relative;
	z-index: 1;
	padding: 0;
	justify-content: center;
	max-width: 600px;
	min-width: 400px;
	height: 480px;
	border-radius: 10px;
	box-shadow:
	0 8px 25px rgba(0,0,0,.08);
	transition: transform 0.3s ease-in;
}

.taskcard:hover {
	transform: translateY(-5px);
}

.card1 {background-image: url('Images/StoryImages/photometrics.jpg')}
.card2 {background-image: url('Images/StoryImages/engineering.jpg')}
.card3 {background-image: url('Images/StoryImages/lasercutting.jpg')}
.card4 {background-image: url('Images/StoryImages/welding.jpg')}
.card5 {background-image: url('Images/StoryImages/powdercoating.jpg')}
.card6 {background-image: url('Images/StoryImages/assembly.jpg')}
.card7 {background-image: url('Images/StoryImages/fabrication.jpg')}

.taskcardTitle {
	display: flex;
	position: absolute;
	bottom: 0px;
	height: 20%;
	width: 100%;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.6);
	justify-content: center;
}

.taskcardTitle p {
	color: white;
	font-size: 22px;
	letter-spacing: 2px;
	padding: 10px;
	font-weight: 600;
	font-family: Montserrat, sans-serif; 
}

/* End of Section */


/* Meetourteam.php */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(3, auto); 
	gap: 40px;
	margin: 165px 20px 20px 20px;	
}

.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);
}

.contact-image {
	width: 400px;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-color: #afadc2;
}

.contact p {
	font-family: Open Sans, sans-serif;
	font-size: 20px;
	text-align: center;
	font-weight: 500;
}

.contact a {
	font-family: Open Sans, sans-serif;
	font-size: 18px;
	text-decoration: underline;
	text-align: center;
	margin-top: -15px;
}

.contact1 {background-image:}


/* End of Section */


/* Contactus.php */

.contact-us {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 140px auto 0px auto;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
	border: 1px solid #001b36;
	background-color: #DFDFDF;
	height: 500px;
	width: 1500px;
	text-align: center;
}

.location-text {
	display: flex;
	flex: 1;
	flex-direction: column;	
}

.location-text h1 {
	font-family: Montserrat, sans-serif;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	text-decoration: underline;
	color: #001b36;
}

.location-text p {
	font-family: Open Sans, sans-serif;
	font-size: 22px;
	font-weight: 500;
	text-align: center;
}

.map-image {
	display: flex;
	flex: 1;
	justify-content: flex-end;
}

.map {
	background-image: url('websiteimages/map.jpg');
	background-size: cover;
	background-postion: center;
	background-repeat: no-repeat;
	width: 700px;
	height: 490px;
	align-items: center;
}

/* End of Section */


/* Styling for Different Product Pages */

.categoryHeader h2 {
	text-align: center;
	font-family: Montserrat, sans-serif;
	text-decoration: underline;
	text-underline-offset: 12px;
	text-decoration-thickness: 1px;
	text-decoration-color: #001b36;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4);
	font-size: 40px;
	font-weight: 500;
	margin: 145px auto 25px;
	letter-spacing: 1.4px;
}

.item-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
    gap: 15px; /* Spacing between grid items */
    padding: 20px;
    justify-content: center;
}

/* Individual product items */
.product-item {
	display: flex;
	flex-direction: column;
    border: 1px solid #001b36;
    padding: 15px;
    align-items: center;
    text-align: center;
    background-color: #e0e0e0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

/* Hover effect */
.product-item:hover {
    transform: scale(1.03);
}

/* Product image container */
.product-image {
    width: 100%;
    height: 400px;
    width: 400px; 
    background-size: cover;
    background-position: center;
}

/* Headings inside the product items */
.product-item h3 {
    font-size: 20px;
    margin: 10px 0 10px;
}

/* Links inside the product items */
.product-item a {
    text-decoration: none;
    color: #001b36;
    font-weight: 500;
    cursor: pointer;
}

.product-item a:hover {
    text-decoration: underline;
}


/* End of Section */


/* Customerforms.php */

.choose-form {
	display: flex;
	margin-top: 140px;
	align-items: center;
	justify-content: center;
	background-image: url('websiteimages/pic4.jpg');
	background-size: cover;
	background-position: center;
	height: 550px;
}

.forms {
	display: flex;
	align-items: center;
	gap: 30px;
	align-items: center;
	justify-content: center;
}

.forms a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #001b36;
	text-align: center;
	border: 1px solid #001b36;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 1.5);
	background: #dfdfdf;
	padding: 0px 30px;
	height: 400px;
	width: 300px;
	transition: scale 0.3s ease-in;
}

.forms a:hover {
	transform: scale(1.1)
}

/* End of Section */

/* Gallery.php */

.galleryHeader h1 {
	text-align: center;
	font-family: Montserrat, sans-serif;
	text-decoration: underline;
	text-underline-offset: 12px;
	text-decoration-thickness: 1px;
	text-decoration-color: #001b36;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4);
	font-size: 40px;
	font-weight: 500;
	margin: 145px auto 50px;
	letter-spacing: 1.4px;
}

.gallery {
	position: relative;
	align-items: center;
	justify-content: center;
	margin: auto;
	height: 650px;
	width: 1600px;
	border: 1px solid #001b36;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 2);
}

.gallerySlide {
	position: absolute;
	width: 100%; 
  	height: 100%;
 	opacity: 0;
 	transition: opacity 1s ease-in-out; 
}

.gallerySlide.active {
	opacity: 1;
	z-index: 1;
}

.gallerySlide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.previewBar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.thumbnails {
    display: flex;
    justify-content: center;
}

.thumbnail {
    margin: 0 10px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.prev, .next {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.imageSection2 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	height: 700px;
	width: 1610px;
	background-color: #f0f8ff;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1.5);
	gap: 10px;
}

.longImage {
	display: flex;
	flex: 1;
}

.longImage img {
	width: 800px;
	height: 700px;
	object-fit: cover;
}

.twoImages {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 50%; /* Limits it to half the container */
	height: 700px;
}

.twoImages img {
	max-width: 100%;
	height: 350px;
	width: 800px;
	object-fit: cover;
}

.galleryGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	width: 90%;
	max-width: 1400px;
	margin: 20px auto;
	align-items: center;
	justify-content: center;
}

.galleryImage {
	border: 1px solid black;
	text-align: center;
	border-radius: 2px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 1.5);
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease-in-out;
}

.galleryImage:hover {
	transform: scale(1.08)
}

/*End of Section*/

/*Fixture.php*/

.fixturePreview {
	display: flex;
	gap: 50px;
	margin: 140px 20px 20px 20px;
	min-height: 500px;
}

.fixtureImage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1.5;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	height: auto;
	background-color: #DFDFDF;
	position: relative;
}

#fixtureImageStandard {
	max-width: 500px;
	max-height: 700px;
	margin-top: 10px;
}

.colorButtons {
	display: flex;
	gap: 25px;
	margin-top: 40px;
	margin-bottom: 15px;
}

.colorButton {
	width: 30px;
	height: 30px;
	border: 0.5px solid gray;
	border-radius: 2px;
	cursor: pointer;
	transition: transform 0.3s ease-in;
}

.colorButton:hover {
	transform: scale(1.10);
}

.selected {
	transform: scale(1.20);
	border: 1px solid navy;
}

.black {
	background-color: black;
	
}

.darkbronze {
	background-color: #804a00; 
}

.anodizedsilver {
	background-color: #aaaeb0; 
}

.white {
	background-color: white;
}

.fixtureDetails {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 20px;
	border: 1px solid #001b36;
	max-height: 475px;
	padding: 5px 30px;
	background-color: #dfdfdf;
	border-radius: 5px;
}

.detailRow {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}

.detailLabel {
	font-weight: 600;
	font-family: Montserrat, sans-serif;
	font-size: 18px;
}

.detailValue {
	margin: 0;
	font-family: Open Sans, sans-serif;
}

.fixtureName {
	text-align: center;
	font-family: Montserrat, sans-serif;
	text-decoration: underline;
	text-underline-offset: 12px;
	text-decoration-thickness: 1px;
	text-decoration-color: #001b36;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4);
	font-size: 25px;
	font-weight: 500;
	letter-spacing: 1.4px;
	margin-top: 10px;
}

.downloadLink {
	color: #001b36;
	margin-top: 10px;
	text-underline-offset: 10px;
	transition: transform 0.3s ease-in;
}

.downloadLink:hover {
	color: #0066CC;
}

.spec {
	margin-top: 25px;
}

.ies {
	margin-top: 10px;
}

.install {
	margin-bottom: 20px;
}

#fixtureImageStandard {
	transition: opacity 0.25s ease-in-out;
}

#fixtureImageStandard.fade-out {
	opacity: 0;
}

/*End of Section*/



