@charset "utf-8";
/* CSS Document */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	/* outline: 1px solid red !important; */
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.navbar .nav-links ul {
    list-style-type: none;
    display: flex;
}

.navbar .nav-links ul li {
    margin: 0 15px;
}

.navbar .nav-links ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar .nav-links ul li a:hover {
    color: #f0a500;
	text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 4px;
    background-color: black;
    margin: 4px 0;
}
/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; /* Keep it hidden initially */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0; /* Ensure it is invisible initially */
    visibility: hidden; /* Ensures it doesn't take up space when hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
	border-radius: 20px;
	box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2); /* Add shadow around the box */
}

.dropdown-menu li {
    padding: 8px 16px;
}

.dropdown-menu li a {
    color: #fff;
    text-decoration: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1; /* Show the dropdown */
    visibility: visible; /* Make it visible */
}

/* Dropdown menu items hover effect */
.dropdown-menu li a:hover {
    background-color: white;
}

.dropdown a::after {
    content: ' ▼'; /* Arrow pointing down by default */
    font-size: 12px;
    color: black;
    margin-left: 5px;
    transition: transform 0.3s ease; /* Smooth transition for rotating the arrow */
}

/* Dropdown arrow styles on hover */
.dropdown:hover a::after {
    transform: rotate(180deg); /* Rotate arrow to point up when hovered */
	    content: ''; /* Arrow pointing down by default */
}

.dropdown-menu li a:hover {
    background-color: #555;

}

/*Home Page Header Section*/
/* Header Section */

/* Make the header fill the screen */
.header-section {
  height: 100vh;           /* Full viewport height */
  width: 100vw;            /* Full viewport width */
  position: absolute;
  overflow: hidden;
	padding-bottom: 50px;
}
.header-section {
    position: relative;
    background-image: url("Images/Place Holders/Interior-design-styles-Eclectic-contemporary-living-room-by-Jamie-C-3-scaled.webp"); 
    background-size: cover;
    background-position: center;
	width: 100%;
    color: white;
}

.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text visibility */
}

.header-section .header-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	padding-bottom: 0;
	margin-bottom: 0;
}

.header-section h1 {
    font-size: 48px;
    margin-bottom: 10px;
	color: white;
}

.header-section .subheader {
    font-size: 24px;
    margin-bottom: 20px;
	color: white;
}

.header-section .btn-get-started {
    padding: 12px 30px;
    background-color: #DD5320;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
	border: none;
    transi1tion: background-color 0.3s ease;
}

.header-section .btn-get-started a
{
	
	text-decoration: none;
}

.header-section .btn-get-started:hover {
    background-color: #e67e22;
}

/* 3 Boxes Section */
.boxes-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: white;
}

.box {
	position: relative;
    width: 30%;
    padding: 20px;
	bottom: 200px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.box h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin-bottom: 15px;
	    white-space: normal;

}

.box p {
    font-size: 1rem;
    color: #333;
}







/* Home Page Welcome Section*/
.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background-color:none;
}

.text-content {
    flex: 1;
    max-width: 100%;     /* let it grow */
	width: 100%;
    margin: 0 auto;      /* remove hard margin */
    padding: 0 20px;     /* optional spacing */
	text-align: center;
}

.text-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.text-content p {
	display: block;
	margin: 0 auto; /* tweak for mobile if causes any issue */
    font-size: 1.1rem;
	line-height: 1.6;
    margin-bottom: 25px;
	width: 60%; /* Remove if needed */
}

.text-content button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #DD5320;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	margin-left: 170px;
}

.text-content button:hover {
    background-color: #e67e22;
}

.image-content {
    flex: 1;
    max-width: 500px;
    text-align: right;
	margin-right: 200px;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
}



/* About Section */
.aboutsection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: white;
}

.aboutSection
{
	background-color: #004B8D;
	padding-bottom: 100px;
	color: white;
}

.about-text-content {
    flex: 1;
    max-width: 500px;
	margin-left: 61%;
    margin-top: -300px; /* This moves the text content up */
	text-align: center; /* Remove if it effects abything */
}

.about-text-content a
{
	text-decoration: none;	
}

.aboutButton
{
	background-color: #DD5320;
      color: white;              /* White text */
      padding: 10px 20px;        /* Top/Bottom 10px, Left/Right 20px */
      border: none;              /* Remove default border */
      border-radius: 5px;        /* Rounded corners */
      cursor: pointer;           /* Pointer cursor on hover */
      font-size: 16px;
}

.aboutButton a
{
	text-decoration: none;
}

.aboutButton:hover
{
	background-color: #e67e22;
}


.about-text-content a
{
	color: white;
}

.about-text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
	color: white;
}

.about-text-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-text-content button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	margin-left: 170px;
}

.about-text-content button:hover {
    background-color: #e67e22;
}

.about-image-content {
    flex: 1;
    max-width: 500px;
    position: relative;
    text-align: right;
	margin-top: 6%;
	margin-left: 5%;
}

.about-image-content .main-image {
    width: 100%;
    border-radius: 10px;
}

.about-image-content .overlapping-image {
    position: absolute;
    top: 50%;
    left: 110%;
    transform: translate(-50%, -50%);
    width: 60%;
    z-index: 1;
    border-radius: 10px;
}





/* Service Section*/
.services-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
	margin-top: 0%;
	/*background-color: #F4A261;*/
}

.service-text-content {
    flex: 1;
    max-width: 100%;
}

.service-text-content h2
{
	text-align: center;
	font-size: 3rem;
}

.service-text-content p
{
	text-align: center;
	padding-top: 40px;
	font-size: 1.5rem;
}

.service-image-content
{
	display: inline-block;
	width: 30vw;
}

.container {
            display: flex; /* Keeps the image and text side by side */
            align-items: flex-start; /* Aligns the items at the top */
	margin-top: 10%;
            gap: 20px; /* Adds space between the image and text */
        }

        .image {
            width: 40%; /* Adjust image width */
			border: 5px solid #DD5320;
     border-radius: 10%; /* Makes the border round */
	 box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); /* Adds shadow */
            height: auto; /* Maintain aspect ratio */
        }

        .text-section {
            display: flex;
            flex-direction: column; /* Stacks the text divs vertically */
			margin-left: 5%;
			margin-top: 3%;
            gap: 10px; /* Adds space between the stacked text sections */
            flex: 1; /* Makes the text section take up the remaining space */
        }

        .text-div {
            padding: 15px;
            color: #333;
        }

.text-div h2
{
	font-size: 1.8rem;
	text-align: left;
	margin-bottom: -30px; /* Reduces space below the <h2> */
}

.text-div p
{
	text-align: left;
	font-size: 1.5rem;
	margin-top: 0; /* Removes space above the <p> */
}




/* Quick Services - Air Conditioning Repair */
.airConditionRepairSection {
            display: flex;
            justify-content: space-between; /* Space between text and image */
            align-items: center; /* Center vertically */
			text-align: center;
            padding: 40px;
			border: 5px solid #DD5320;           
			gap: 20px;
        }

        .air-condition-repair-text-container {
            flex: 1; /* Text container takes available space */
        }

        .air-condition-repair-header {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .air-condition-repair-subheader {
            font-size: 20px;
            color: #555;
            margin-bottom: 20px;
        }

        .air-condition-repair-paragraph {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
        }

        .air-condition-repair-learn-more-btn {
            padding: 10px 20px;
            background-color:#DD5320;
            color: white;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
            display: inline-block;
        }

        .air-condition-repair-learn-more-btn:hover {
            background-color: #0056b3; /* Darker blue on hover */
        }

        .air-condition-repair-image {
            max-width: 500px; /* Limits image size */
            width: 100%;
            height: auto;
        }

.air-condition-repair-image-mobile
{
	 max-width: 500px; /* Limits image size */
            width: 100%;
            height: auto;
	display: none;
}

/* Quick Services Heater Repair - index/home page */ 
.quick-service-heater-repair-section {
            display: flex;
            justify-content: space-between; /* Space between text and image */
            align-items: center; /* Aligns both text and image vertically */
            padding: 40px;
			border: 5px solid #003049;  
			text-align: center;
            gap: 20px;
        }

        .quick-service-heater-repair-text-container {
            flex: 1; /* Text container takes the remaining space */
        }

        .quick-service-heater-repair-header {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .quick-service-heater-repair-subheader {
            font-size: 20px;
            color: #555;
            margin-bottom: 20px;
        }

        .quick-service-repair-paragraph {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
        }

        .quick-service-heater-repair-learn-more-btn {
            padding: 10px 20px;
            background-color: #DD5320;
            color: white;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
            display: inline-block;
        }

        .quick-service-heater-learn-more-btn:hover {
            background-color: #0056b3; /* Darker blue on hover */
        }

        .quick-service-heater-Repair-Image {
            max-width: 500px; /* Limits image size */
            width: 100%;
            height: auto;
        }


/* Air condition energy efficient - home page */
.airConditionEnergyEfficientSection {
            display: flex;
            justify-content: space-between; /* Space between text and image */
            align-items: center; /* Center vertically */
			text-align: center;
            padding: 40px;
			border: 5px solid #DD5320;           
            gap: 20px;
        }

        .air-condition-energy-text-container {
            flex: 1; /* Text container takes available space */
        }

        .air-condition-energy-header {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .air-condition-energy-subheader {
            font-size: 20px;
            color: #555;
            margin-bottom: 20px;
        }

        .air-condition-energy-paragraph {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
        }

        .air-condition-energy-learn-more-btn {
            padding: 10px 20px;
            background-color: #DD5320; /* Blue color */
            color: white;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
            display: inline-block;
        }

        .air-condition-energy-learn-more-btn:hover {
            background-color: #0056b3; /* Darker blue on hover */
        }

        .air-condition-energy-image {
            max-width: 500px; /* Limits image size */
            width: 100%;
            height: auto;
        }
.air-condition-energy-image-mobile {
            max-width: 500px; /* Limits image size */
            width: 100%;
            height: auto;
	display: none;
        }

/* Quick Services Heater Repair - index/home page */ 
.quick-service-ductless-section {
            display: flex;
            justify-content: space-between; /* Space between text and image */
            align-items: center; /* Aligns both text and image vertically */
            padding: 40px;
			border: 5px solid #003049; 
			text-align: center;
            gap: 20px;
        }

        .quick-service-ductless-text-container {
            flex: 1; /* Text container takes the remaining space */
        }

        .quick-service-ductless-header {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .quick-service-ductless-subheader {
            font-size: 20px;
            color: #555;
            margin-bottom: 20px;
        }

        .quick-service-ductless-paragraph {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
        }

        .quick-service-ductless-learn-more-btn {
            padding: 10px 20px;
            background-color: #DD5320; /* Blue color */
            color: white;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
            display: inline-block;
        }

        .quick-service-ductless-learn-more-btn:hover {
            background-color: #0056b3; /* Darker blue on hover */
        }

        .quick-service-ductless-Image {
            max-width: 500px; /* Limits image size */
            width: 100%;
            height: auto;
        }

	.why-us {
  background-image: url('Images/Place Holders/Interior-design-styles-Eclectic-contemporary-living-room-by-Jamie-C-3-scaled.webp');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: white;
		
}

.why-us-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
	width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.bullet-points {
  width: 60%;
}

.bullet-points h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.bullet-points ul {
  list-style-type: disc;
  padding-left: 20px;
}

.schedule-appointment {
  width: 35%;
  background: rgba(0, 0, 0, 0.6);
  padding:13px;
  border-radius: 8px;
  text-align: center;
}

.schedule-appointment h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.schedule-appointment p {
  font-size: 1.2em;
}



/* Leave a review section */
.customer-reviews {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.customer-reviews h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.subheader {
  font-size: 1.2em;
  color: #777;
  margin-bottom: 30px;
}

.reviews-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.reviews-container a
{
	text-decoration: none;
}

.review {
  display: none;
  padding: 20px;
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author {
  font-weight: bold;
  font-size: 1.2em;
}

.rating {
  color: gold;
  font-size: 1.5em;
}

.text {
  font-style: italic;
  margin-top: 10px;
}

.leave-review-btn {
  background-color: #0066cc;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 20px;
}

.leave-review-btn:hover {
  background-color: #005bb5;
} 

.leave-review-btn a
{
	text-decoration: none;
}

/* Gallery Section Styling */
.gallery {
    padding: 40px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subheader {
    font-size: 1.2em;
    color: #777;
    margin-bottom: 30px;
}

/* Grid Layout for Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.gallery-item {
    width: 100%;
    height: auto;
    max-width: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal Styling */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3em;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

.close-btn:hover {
    color: #ccc;
}

/*Contact Section */ 
/* Contact Section Styling */
.contact-us {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: #f4f4f4;
    margin: 20px;
    border-radius: 8px;
}

.contact-left {
    width: 45%;
    padding-right: 30px;
	text-align: center;
}

.phone-call-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0077cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.phone-call-btn:hover {
    background-color: #005fa3;
}

.contact-left h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact-subheader {
    font-size: 1.2em;
    background-color: #DD5320;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Contact Form Styling */
.contact-right {
    width: 50%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right form label {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.contact-right form input,
.contact-right form textarea {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-right form button {
    padding: 12px;
    background-color: #DD5320;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-right form button:hover {
    background-color: #b22222;
}

/* Footer Section */
/* Footer Styling */
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    font-size: 1em;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-company-info,
.footer-social-media,
.footer-location,
.footer-quick-links {
    width: 22%;
    min-width: 200px;
}

.footer-company-info h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer-company-info p {
    font-size: 1em;
}

.footer-social-media h3,
.footer-location h3,
.footer-quick-links h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.footer-social-media ul,
.footer-quick-links ul {
    list-style: none;
    padding: 0;
}

.footer-social-media li,
.footer-quick-links li {
    margin-bottom: 10px;
}

.footer-social-media a,
.footer-quick-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-media a:hover,
.footer-quick-links a:hover {
    color: #f39c12;
}

/* Copyright Section Styling */
.footer-copyright {
    background-color: #111;
    color: #bbb;
    padding: 20px;
    margin-top: 20px;
}

.site-footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.site-footer a {
  color: #00aced;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Services Page & SubPages */




/* Specials Page ^Place services and its subpages^ */

	.specials-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
  gap: 20px;
}

.specials-text {
  flex: 1 1 500px;
  color: #333;
}

.specials-text h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: #003366;
}

.specials-text h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #006699;
}

.specials-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.specials-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.specials-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/*Service Area Page */
.service-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-area h1 {
  color: #003366;
  margin-bottom: 5px;
}

.service-area h2 {
  color: #006699;
  margin-top: 0;
}

.service-area .tagline {
  font-style: italic;
  font-weight: bold;
  margin-bottom: 15px;
  color: #cc0000;
}

.service-area p {
  line-height: 1.6;
  color: #333;
}

.map-placeholder {
  margin-top: 30px;
  height: 300px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border: 2px dashed #aaa;
  border-radius: 5px;
}

.map-placeholder iframe
{
	width: 100%;
	height: 100%;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Systems Page */
.hero-text {
  max-width: 50%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  animation: slideIn 10s infinite;
}




/* Systems Page */
/* Section Styling */
.we-run-section {
  position: relative;
  height: 100vh;
  background: url('Images/Place Holders/homeguide-trane-air-conditioner-unit.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.we-run-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity here */
  z-index: 0;
}
/* Top-right Hamburger */
.systems-nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger {
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Text Content */
.systems-content {
  max-width: 100%;
  z-index: 2;
}

.systems-content h1 {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.systems-content p {
  font-size: 1.5rem;
  margin-top: 1rem;
}




/*Blog Page */
.blog-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 40px;
    }

    .blog-card {
      background-color: #fff;
      width: 300px;
      margin: 20px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.2s;
      text-decoration: none;
      color: inherit;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-content h3 {
      margin: 0 0 10px;
      font-size: 1.2em;
    }

    .blog-content p {
      font-size: 0.95em;
      color: #555;
    }



/* Questions & Answers Page */
.faq-container {
      max-width: 800px;
      margin: 60px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    .faq {
      margin-bottom: 20px;
    }

    .question {
      background: #e6f2ff;
      padding: 15px;
      cursor: pointer;
      font-weight: bold;
      border-radius: 5px;
      border: 1px solid #cce0ff;
    }

    .answer {
      padding: 15px;
      display: none;
      background: #f0f8ff;
      border: 1px solid #cce0ff;
      border-top: none;
      border-radius: 0 0 5px 5px;
    }

    .question:hover {
      background-color: #d4e6ff;
    }

    .active + .answer {
      display: block;
    }



/* Blog Page about variable speeds*/
.hvac-blog {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            padding: 20px;
            max-width: 800px;
            margin: auto;
            color: #333;
        }

        .hvac-blog h1,
        .hvac-blog h2 {
            text-align: center;
        }

        .hvac-blog .highlight {
            font-weight: bold;
            color: #006699;
        }

        .hvac-blog ul {
            padding-left: 20px;
        }

        .hvac-blog .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .hvac-blog .comparison-table th,
        .hvac-blog .comparison-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }

        .hvac-blog .comparison-table th {
            background-color: #f4f4f4;
        }


/* Blog about replacement*/
.hvac-replacement-blog {
      font-family: Arial, sans-serif;
      color: #333;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      line-height: 1.6;
    }

    .hvac-replacement-blog h1,
    .hvac-replacement-blog h2 {
      text-align: center;
      color: #004a7f;
    }

    .hvac-replacement-blog ul {
      padding-left: 20px;
    }

    .hvac-replacement-blog .highlight {
      font-weight: bold;
      color: #006699;
    }

    .hvac-replacement-blog .cta {
      text-align: center;
      margin-top: 30px;
    }

    .hvac-replacement-blog .cta a {
      display: inline-block;
      padding: 12px 24px;
      background-color: #006699;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
    }

    .hvac-replacement-blog .cta a:hover {
      background-color: #004a7f;
    }






/* Services Page */
/* Services section */
.services-page-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #004B8D;
	padding-bottom: 80px;
}

.services-page-title {
  font-size: 3rem;
  margin-bottom: 40px;
  color: white;
}

/* Card container */
.services-page-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual cards */
.services-page-card {
  background: rgba(255, 255, 255, 0.1);
	background-color: white;
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 30px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-page-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
}

.services-page-card-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: black;
}

.services-page-card-description {
  font-size: 1rem;
  color: black;
}

/* Accent borders */
.services-page-design {
  border-left: 5px solid #FF6B6B;
}

.services-page-dev {
  border-left: 5px solid #4ECDC4;
}

.services-page-marketing {
  border-left: 5px solid #FFD93D;
}

.services-page-support {
  border-left: 5px solid #1DD1A1;
}

.services-page-container a
{
	text-decoration: none;
}






/* Animation for Hero Image */
@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.special-savings, .services-box {
  flex: 1 1 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.services-box a 
{
	text-decoration: none;
}
.coupon-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.coupon-header {
  text-align: center;
  color: #003366;
  margin-bottom: 40px;
}

.coupon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.coupon-card {
  background-color: #fff;
  border: 2px dashed #ff6a00;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coupon-card h3 {
  font-size: 2rem;
  color: #cc3300;
  margin: 0 0 10px;
}

.coupon-card p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.coupon-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
  display: block;
}

.coupon-btn {
  background-color: #ff6a00;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.coupon-btn:hover {
  background-color: #e05500;
}




/* About Page */

.aboutPageSection {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 2rem;
      gap: 2rem;
      flex-wrap: wrap;
	background-color: #004B8D;
    }

    .aboutPage-content {
      flex: 1;
      min-width: 300px;
		color: white;
    }	

	.slogan
	{
	color: #DD5320;
	}

    .aboutPageSection-image {
      flex: 1;
      min-width: 300px;
    }

    .aboutPageSection-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

.values {
  padding: 20px;
  background-color: white;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.values h2 {
  color: #003366;
}

.values ul {
  list-style-type: none;
  padding: 0;
}

.values li {
  background-color: #e0e0e0;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
}




/* Ductless System Blog Page */
.BlogPageDuctlessSystemHeader {
      background-color: #003049;
      color: white;
      padding: 30px 20px;
      text-align: center;
    }

.intro {
      background-color: #e0f2f1;
      padding: 20px;
      border-left: 6px solid #2a9d8f;
      border-radius: 6px;
    }


.BlogPageDuctlessSystemHeader h1
{
	color: white;
}

    .BlogPageDuctlessmain {
      max-width: 1000px;
      margin: auto;
      padding: 40px 20px;
    }

    .DuctlessSectionText {
      color: #005f73;
      margin-top: 40px;
    }

    .DuctlessSection {
      margin-bottom: 40px;
    }

    .pros, .cons {
      background-color: white;
      padding: 20px;
      border-left: 6px solid;
      border-radius: 6px;
    }

    .pros {
      border-color: #2a9d8f;
    }

    .cons {
      border-color: #e76f51;
    }

    .DuctlessBlogUL {
      list-style-type: '✔️';
      padding-left: 20px;
    }

    .cons ul {
      list-style-type: '❌';
    }







/* Blog Page About Drain lines*/
.drainLineBlogHeader {
      background-color: #003049;
      color: white;
      padding: 30px 20px;
      text-align: center;
    }

.drainLineBlogHeader h1 
{
	color: white;
}
    .drainLineBlogMain {
      max-width: 1000px;
      margin: auto;
      padding: 40px 20px;
    }

    .drainLineBlogText {
      color: #003049;
      margin-top: 40px;
    }

    .blogDrainLineSection {
      margin-bottom: 40px;
    }

    .tip-box, .product-box {
      background-color: white;
      padding: 20px;
      border-left: 6px solid #2a9d8f;
      border-radius: 6px;
      margin-bottom: 20px;
    }

    .warning-box {
      border-left-color: #e76f51;
    }

    .drainLineBlogUL {
      list-style-type: '🛠️ ';
      padding-left: 20px;
    }


    .drainLineBlog a {
      color: #0077b6;
      text-decoration: none;
    }

    .drainLineBlog a:hover {
      text-decoration: underline;
    }


/* Repair Page*/
/* Containers */
.repair-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.repair-hero {
  background-color: #004B8D;
  color: white;
  padding: 60px 20px;
}
.repair-hero__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.repair-hero__text {
  flex: 1;
}
.repair-hero__title {
  font-size: 2.5rem;
  margin-bottom: 10px;
	color: white;
}
.repair-hero__subtitle {
  font-size: 1.2rem;
}
.repair-hero__image {
  flex: 1;
  text-align: right;
}
.repair-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sections */
.repair-section {
  padding: 60px 20px;
}
.repair-section--signs {
  background-color: white;
}
.repair-section--why-us {
	background-color: #F4F8FB;
}


.repair-section__title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
	color: #004B8D;
}

/* Card List */
.repair-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  justify-content: center;
}
.repair-card {
  background: white;
  border: 2px solid #DD5320;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.repair-card:hover {
  transform: translateY(-5px);
}
.repair-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.repair-card__text {
  font-size: 0.95rem;
}

/* Footer */
.repair-footer {
  background-color: #002f5d;
  color: white;
  text-align: center;
  padding: 20px 10px;
}
.repair-footer__text {
  font-size: 1rem;
}
.repair-footer__link {
  color: #ffd700;
  text-decoration: underline;
}


/* Install Page*/

/* Layout container */
.install-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero section */
.install-hero {
  background-color: #004B8D;
  color: white;
  padding: 60px 20px;
}

.install-hero__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.install-hero__text {
  flex: 1;
}

.install-hero__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
	color: white;
}

.install-hero__subtitle {
  font-size: 1.2rem;
}

.install-hero__image {
  flex: 1;
  text-align: right;
}

.install-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sections */
.install-section {
  padding: 60px 20px;
}

.install-section--signs {
  background-color: white;
}

.install-section--why-us {
  background-color: #f4f8fb;
}

.install-section__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004b8d;
}

/* Cards */
.install-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.install-card {
  background-color: white;
  border: 2px solid #DD5320;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.install-card:hover {
  transform: translateY(-5px);
}

.install-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #DD5320;
}

.install-card__text {
  font-size: 0.95rem;
}




/*Heating Page */
/* Layout container */
.heating-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.heating-hero {
  background-color: #004b8d;
  color: white;
  padding: 60px 20px;
}

.heating-hero__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.heating-hero__text {
  flex: 1;
}

.heating-hero__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.heating-hero__subtitle {
  font-size: 1.2rem;
}

.heating-hero__image {
  flex: 1;
  text-align: right;
}

.heating-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sections */
.heating-section {
  padding: 60px 20px;
}

.heating-section--signs {
  background-color: white;
}

.heating-section--why-us {
  background-color: #f4f8fb;
}

.heating-section__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004b8d;
}

/* Cards */
.heating-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.heating-card {
  background-color: white;
  border: 2px solid #DD5320;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.heating-card:hover {
  transform: translateY(-5px);
}

.heating-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #DD5320;
}

.heating-card__text {
  font-size: 0.95rem;
}


/* Maintenance Page */
/* Layout container */
.maintenance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.maintenance-hero {
  background-color: #004b8d;
  color: white;
  padding: 60px 20px;
}

.maintenance-hero__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.maintenance-hero__text {
  flex: 1;
}

.maintenance-hero__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
color: white;
}

.maintenance-hero__subtitle {
  font-size: 1.2rem;
}

.maintenance-hero__image {
  flex: 1;
  text-align: right;
}

.maintenance-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sections */
.maintenance-section {
  padding: 60px 20px;
}

.maintenance-section--signs {
  background-color: white;
}

.maintenance-section--why-us {
  background-color: #f4f8fb;
}

.maintenance-section__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004b8d;
}

/* Cards */
.maintenance-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.maintenance-card {
  background-color: white;
  border: 2px solid #DD5320;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.maintenance-card:hover {
  transform: translateY(-5px);
}

.maintenance-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #DD5320;
}

.maintenance-card__text {
  font-size: 0.95rem;
}


/* Commercial hvac */
/* Layout container */
.commercial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.commercial-hero {
  background-color: #004b8d;
  color: white;
  padding: 60px 20px;
}

.commercial-hero__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.commercial-hero__text {
  flex: 1;
}

.commercial-hero__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
	color: white;
}

.commercial-hero__subtitle {
  font-size: 1.2rem;
}

.commercial-hero__image {
  flex: 1;
  text-align: right;
}

.commercial-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sections */
.commercial-section {
  padding: 60px 20px;
}

.commercial-section--signs {
  background-color: white;
}

.commercial-section--why-us {
  background-color: #f4f8fb;
}

.commercial-section__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004b8d;
}

/* Cards */
.commercial-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.commercial-card {
  background-color: white;
  border: 2px solid #DD5320;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.commercial-card:hover {
  transform: translateY(-5px);
}

.commercial-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #DD5320;
}

.commercial-card__text {
  font-size: 0.95rem;
}



/* Ductless HVAC */
/* Layout container */
.ductless-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.ductless-hero {
  background-color: #004b8d;
  color: white;
  padding: 60px 20px;
}

.ductless-hero__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ductless-hero__text {
  flex: 1;
}

.ductless-hero__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
	color: white;
}

.ductless-hero__subtitle {
  font-size: 1.2rem;
}

.ductless-hero__image {
  flex: 1;
  text-align: right;
}

.ductless-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sections */
.ductless-section {
  padding: 60px 20px;
}

.ductless-section--signs {
  background-color: white;
}

.ductless-section--why-us {
  background-color: #f4f8fb;
}

.ductless-section__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004b8d;
}

/* Cards */
.ductless-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.ductless-card {
  background-color: white;
  border: 2px solid #DD5320;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.ductless-card:hover {
  transform: translateY(-5px);
}

.ductless-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #DD5320;
}

.ductless-card__text {
  font-size: 0.95rem;
}


/* Indoor Air Quality */
.iaq-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      background-color: #fff;
    }

    .iaq-text-content {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .iaq-image-wrapper {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .iaq-image-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }



/* Systems Page */
 .product-menu-bar {
      display: flex;
      justify-content: center;
      gap: 20px;
      background: #004d99;
      padding: 20px;
      flex-wrap: wrap;
    }

    .product-menu-button {
      background: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 4px;
      font-weight: bold;
      color: #004d99;
      transition: background 0.3s;
    }

    .product-menu-button.active,
    .product-menu-button:hover {
      background: #0072c6;
      color: #fff;
    }

    .product-display-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .product-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .product-card-box {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .product-card-box:hover {
      transform: translateY(-3px);
    }

    .product-card-box img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .product-card-details {
      padding: 20px;
    }

    .product-card-details h3 {
      margin: 0 0 10px;
    }

    .product-card-details p {
      font-size: 14px;
      color: #555;
    }

    .product-card-points {
      margin-top: 15px;
      padding-left: 20px;
      font-size: 14px;
      color: #333;
      display: none;
    }

    .product-card-points li {
      margin-bottom: 6px;
    }

    .product-card-box.active .product-card-points {
      display: block;
    }

    .product-category-group.hidden {
      display: none;
    }










/* Responsive Design */
@media (max-width: 768px) {
	
	.iaq-section {
        flex-direction: column;
      }

      .iaq-image-wrapper {
        order: 2;
      }

      .iaq-text-content {
        order: 1;
      }
	
	
  .team {
    flex-direction: column;
    align-items: center;
  }
.BlogPageDuctlessSystemHeader, .BlogPageDuctlessmain {
        padding: 20px 10px;
      }
  .team-member {
    width: 80%;
    margin: 10px 0;
  }
	
	.systems-content h1 {
    font-size: 2rem;
  }

  .systems-content p {
    font-size: 1rem;
  }
	
	.services-page-container {
    flex-direction: column;
    align-items: center;
  }
}














@media (min-width: 768px) {
  .special-savings, .services-box {
    flex: 1 1 45%;
  }
}
.coupon-card {
    width: 100%;
}
.special-savings {
  border-left: 5px solid #ff6a00;
  text-align: left;
flex: 1 1 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.special-savings .header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.special-savings .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.special-savings h2 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

.special-savings p {
  font-size: 1rem;
  color: #555;
  margin: 10px 0 20px 0;
}

.view-btn {
  background-color: #ff6a00;
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

.view-btn:hover {
  background-color: #e05a00;
}

.services-box {
  background-color: #0073e6;
  color: #fff;
}

.services-box h2 {
  margin-top: 0;
}

.services-list {
  margin-top: 15px;
  display: grid;
  gap: 10px;
}

.service-item {
  background-color: #ffffff;
  color: #0073e6;
  padding: 10px;
  border-radius: 4px;
  font-weight: bold;
  text-align: left;
}









/* Mobile styles */
@media screen and (max-width: 768px) {
	
	.install-hero__content {
    flex-direction: column;
    text-align: center;
  }
  .install-hero__image {
    text-align: center;
    margin-top: 20px;
  }
	.repair-hero__content {
    flex-direction: column;
    text-align: center;
  }
  .repair-hero__image {
    text-align: center;
    margin-top: 20px;
  }
	
	/* Navigation System and animation */
	 .nav-links {
        position: fixed;
        top: 10%;
        left: 2px;
        width: 75%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
	}
	
    .nav-links ul {
         flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
		margin-right: 40px;
		height: 35px;
		overflow: visible;
    }
	
.hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: black;
        margin: 5px 0;
	    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    }
	
	.systemsHamburger {
  font-size: 4rem;
  cursor: pointer;
  color: white;
  display: block;       /* ensures it's always displayed */
  z-index: 9999;         /* keep it on top of all content */
  position: relative;    /* allows layering if needed */
}
    .nav-links.active {
        transform: translateX(0);
    }
	
	/* Animate to X when active */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(50deg) translate(12px, 10px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
	
	
	
	
/* Header Section */
.header-content 
	{
		margin-top: 10px;
	}
	.header-section
	{
		
	}
	.boxes-section
	{
		margin-top: -70px;
	}
	
	.box
	{
		text-align: left; /* optional: in case the parent is centering it */
	}
	.box h3
	{
		font-size: 1rem;
	}
	
	
	/* Welcome Section */
	.welcome-section {
		margin-top: -35%;
		width: 100%;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .image-content {
        width: 100%;
        max-width: 100%;
		margin-left: 45%;
        padding: 0 20px;
        display: flex;
        justify-content: center; /* Center the content horizontally */
    }
	
	.text-content 
	{
		flex: 1;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 0 20px;
    text-align: center;
		padding-bottom: 15px;
	}

	.text-content h1 {
    margin-bottom: 10px; /* Adjust if the gap between h1 and p is too large */
	font-size: 2.4rem;
    width: 100%;
    text-align: center; /* or left */
}
	
	.text-content p {
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
    .text-content button {
        margin-top: 20px;
		margin-left: 0;
    }
	
	
	/* About Section*/
	
	 .aboutSection {
        padding: 20px 10px;
		 padding-bottom: -10px;
    }

    .about-image-content {
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-bottom: 20px;
		margin-left: 10%;
		width: 60%;
    }

    .main-image {
        width: 50%;
        height: auto;
    }

    .overlapping-image {
        position: absolute;
        width: 20%;
        right: 10px;
        bottom: -10px;
    }

    .about-text-content h1 {
        font-size: 2em;
    }
	
	.about-text-content
	{
		margin-top: 5%;
		text-align: center;
		margin-left:0%;
		width: 100%;
	}
	
    .about-text-content p {
        margin-bottom: 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    }

    .about-text-content button {
        margin-top: 20px;
		margin-left: 0;
		color: #DD5320;
    }
	
	
	
	/* Service Section */
	.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.text-section {
    display: flex;
    flex-direction: column;
	margin-left: -100%;
	margin-top: 80%;
    gap: 20px;
}

.text-div {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
	
	
	
	/* Quick Repair Section*/ 
	.airConditionRepairSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.air-condition-repair-text-container {
    max-width: 800px;
    margin-bottom: 20px;
}

.air-condition-repair-header {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.air-condition-repair-subheader {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #555;
}

.air-condition-repair-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 20px;
	display: none;
}
	.air-condition-repair-image-mobile
{
	  width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 20px;
	display: block;
}

.air-condition-repair-paragraph {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.air-condition-repair-learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.air-condition-repair-learn-more-btn:hover {
    background-color: #e65c00;
}
	
	
	
	
	
	
	
	/* Heater Section underneath */
	
	.quick-service-heater-repair-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.quick-service-heater-repair-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.quick-service-heater-repair-text-container {
    max-width: 800px;
    margin-top: 20px;
}

.quick-service-heater-repair-header {
    font-size: 2em;
    margin-bottom: 10px;
}

.quick-service-heater-repair-subheader {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #555;
}

.quick-service-heater-repair-paragraph {
    font-size: 1em;
    margin-bottom: 50px;
    line-height: 1.6;
    color: #333;
}

.quick-service-heater-repair-learn-more-btn {
    display: inline-block;
	margin-top: 15px;
    padding: 12px 24px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.quick-service-heater-repair-learn-more-btn:hover {
    background-color: #e65c00;
}
	
	
	/* Energy Efficient Section Underneath */
	.airConditionEnergyEfficientSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.air-condition-energy-text-container {
    max-width: 800px;
    margin-bottom: 20px;
}

.air-condition-energy-header {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.air-condition-energy-subheader {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #555;
}

.air-condition-energy-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 20px;
	display: none;
}
	.air-condition-energy-image-mobile
{
	  width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 20px;
	display: block;
}	
	
	
	
	/* Ductless Section */
	
	.quick-service-ductless-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.quick-service-heater-repair-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.quick-service-ductless-text-container {
    max-width: 800px;
    margin-top: 20px;
}

.quick-service-ductless-header {
    font-size: 2em;
    margin-bottom: 10px;
}

.quick-service-ductless-subheader {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #555;
}

.quick-service-ductless-paragraph {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.quick-service-heater-repair-learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.quick-service-heater-repair-learn-more-btn:hover {
    background-color: #e65c00;
}
	
	
	
	
	
	
	
	/* Contact form section */
	.contact-us {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.contact-left, .contact-right {
    flex: 1 1 400px;
}

.contact-left h2,
.contact-right h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-subheader {
    font-size: 1.5rem;
    color: white;
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}

.contact-right input,
.contact-right textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-right textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-right button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-right button:hover {
    background-color: #005fa3;
}
	
	
	
	/* Responsive Design */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-company-info,
    .footer-social-media,
    .footer-location,
    .footer-quick-links {
        width: 100%;
        text-align: center;
    }
	
	.aboutPageSection {
        flex-direction: column;
      }

}
