@charset "utf-8";
/* CSS Document */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
	background-color: white;
    color: #333;
}

	.portfolioButton {
    text-align: center;
    margin-top: 20px;
		margin-bottom: 75px;
}
#GetAQuote {
            background-color: #D3D3D3;
}

.portfolioButton a
{
  color: white; /* Text color */
  padding: 10px 20px; /* Add padding around the text */
  border-radius: 5px; /* Optional: Add rounded corners */
  font-size: 2rem; /* Font size */
  font-weight: bold; /* Font weight */
  border: 2px solid white;
	    background-color: #000; /* or your brand color */
  text-decoration: none;
}

.portfolioButton a:hover
{
	text-decoration: none;
	color: black;
	background-color: white;
}

/* Add a black background color to the top navigation */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: fixed;  /* Fix the navbar at the top */
    width: 100%;      /* Ensure it spans the full width */
    top: 0;           /* Position it at the top */
    left: 0;          /* Align to the left */
    z-index: 9999;    /* Ensure the navbar is above other content */
    transition: all 0.3s ease; /* Smooth transition for the popup */
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Hide the links when the screen is small and show the hamburger icon */
.topnav .icon {
    display: none;
	font-size: 36px; /* Make the hamburger icon bigger */
}


/* Header Styles */
header {
    position: relative;
    width: 100%;
}

header img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Overlay Styles */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional text shadow */
}

/* About Us Section Styles */
.about-us {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background: white;
}

.about-us h1, .about-us h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-us ul {
    list-style-type: none;
    margin: 20px 0;
    padding-left: 20px;
}

.about-us li {
    font-size: 1rem;
    margin-bottom: 15px;
}

.about-us li strong {
    color: #3498db;
}

.portfolio {
  text-align: center;
  padding: 50px 0;
}

.portfolioSectionHeader
{
	font-size: 4rem;
	text-align: center;
	padding-top: 50px;
}

.portfolio-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.portfolio-item {
  width: 600px;
  height: 350px;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-image:hover {
  transform: scale(1.05);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}



.modal-content {
  max-width: 90%;
  max-height: 80%;
  margin: auto;
  display: block;
}

.close {
  position: absolute;
  top: 10%;
  right: 25px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}



.quote-section {
            background-color: #D3D3D3;
;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 40px auto;
        }
        .quote-heading {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            font-size: 16px;
            color: #333;
            display: block;
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box;
        }
        .form-group input[type="file"] {
            padding: 5px;
        }
        .form-group .checkbox-group {
            display: flex;
            flex-direction: column;
        }
        .form-group .checkbox-group label {
            margin-left: 5px;
        }
        .submit-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #28a745;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            text-align: center;
            width: 100%;
        }
        .submit-btn:hover {
            background-color: #218838;
        }

.footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        .footer a {
            color: #00aaff;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer .section {
            margin-bottom: 20px;
        }
        .footer .section h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .footer .social-links a {
            margin: 0 10px;
            font-size: 24px;
            color: white;
            transition: color 0.3s;
        }
        .footer .social-links a:hover {
            color: #00aaff;
        }
        .footer .contact-info {
            font-size: 16px;
        }

@media screen and (min-width: 600px) {
    .topnav a {
        display: inline-block;
    }
}

/* Show hamburger menu and hide links on small screens */
@media screen and (max-width: 600px) {
    .topnav a {
        display: none; /* Hide the links */
        width: 100%;
        text-align: left;
    }

    .topnav .icon {
        display: block; /* Show the hamburger icon */
        padding: 14px 16px;
        background-color: #333;
        color: #f2f2f2;
        text-align: center;
    }

    /* Initially hide the menu off-screen */
    .topnav.responsive {
        display: block;
        position: fixed;
        top: 0;
        left: -100%; /* Start hidden off-screen */
        width: 100%;
        background-color: rgba(51, 51, 51, 0.9); /* Slight transparency */
        z-index: 9999;
        transition: transform 0.3s ease-in-out; /* Smooth sliding effect */
    }

    /* When the responsive class is added, slide in the menu */
    .topnav.responsive.open {
        transform: translateX(100%); /* Move it into view */
    }

    .topnav.responsive a {
        display: block; /* Show the links in a vertical menu */
    }
}


/* Styling for Mobile */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 2rem; /* Smaller font size for mobile */
    }
.portfolio-item {
  width: 400px;
  height: 350px;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-image:hover {
  transform: scale(1.05);
}

    .about-us {
        padding: 20px;
    }

    .about-us h1 {
        font-size: 1.8rem;
    }

    .about-us p, .about-us li {
        font-size: 1rem;
    }
}
