/* Reset */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html,
body {
	overflow: visible;
}

html {
	background-color: rgb(26, 26, 27);
}

/* Global */
body {
	font-family: "Montserrat", sans-serif;
	background-color: #1a1a1b;
	color: #f4f4f4;
	width: 100%;
	height: 100%;
}

.message {
	top: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	height: calc(100vh - 60px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	position: absolute;
}

.message .button {
	margin-top: 15px;
	float: none;
	align-self: flex-start;
}

.message p {
	margin-bottom: 10px;
}

.success {
	color: #fff;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.error {
	color: #fff;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.error a {
	color: rgb(34, 120, 178);
	text-decoration: none;
}

.success a {
	color: rgb(34, 120, 178);
	text-decoration: none;
}

.button {
	align-self: flex-start;
	box-shadow: 0.5px 0.5px 15px 1px rgba(26, 26, 27, 0.363);
	padding: 10px 15px;
	background-color: rgb(34, 120, 178);
	border-radius: 8px;
	color: rgb(26, 26, 27);
	display: inline-block;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.button:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.button a {
	color: rgb(26, 26, 27);
	font-weight: bold;
	display: inline-block;
	font-size: 1.2em;
}

h1 {
	font-family: "Ubuntu", sans-serif;
	font-size: 1.8em;
	line-height: 1.5;
}

h2 {
	font-family: "Ubuntu", sans-serif;
	font-size: 1.8em;
	line-height: 1.5;
}

h3 {
	font-family: "Ubuntu", sans-serif;
	font-size: 1.4em;
	font-weight: normal;
	line-height: 1.5;
}

h4 {
	font-family: "Ubuntu", sans-serif;
}

p {
	font-family: "Poppins", sans-serif;
	font-size: 1.3em;
	line-height: 1.5;
	font-weight: normal;
}

.hero-content p {
	font-size: 1.7em;
}

a {
	font-family: "Ubuntu", sans-serif;
	text-decoration: none;
	color: whitesmoke;
	font-weight: 550;
}

.success {
	font-size: 1.5em;
	color: #fff;
}

.error {
	font-size: 1.5em;
	color: #fff;
}

.wrapper {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.content-wrapper {
	max-width: 1200px;
}

.message {
	position: absolute;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.message .button {
	margin-top: 15px;
}

.under-construction h1 {
	margin-bottom: 10px;
}

.contactlink a {
	color: #2278b2;
	font-family: "Poppins", sans-serif;
}

.message-sent {
	margin: 30px 20px;
}

.message-sent .button {
	margin-top: 30px;
}

.primary-text {
	color: rgb(34, 120, 178);
}

/* Header */
#header {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
	background: rgb(26, 26, 27);
  
}

.header-container {
	grid-area: header;
	max-width: 1200px;
	margin: 0 auto;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #f4f4f4;

	width: 100%;
	padding: 0px 15px;
}

.logo1 {
	width: 220px;
	display: none;
	margin-top: 15px;
}

.logo-mobile {
	display: flex;
	align-items: center;
}

.logo-crop {
	width: 56px;
	margin-top: 2px;
	box-shadow: 0.5px 0.5px 15px 1px rgba(26, 26, 27, 0.493);
}

.logo-text {
	width: 190px;
	margin-top: 10px;
	margin-left: 10px;
	box-shadow: 0.5px 0.5px 15px 1px rgba(26, 26, 27, 0.493);
}

/* Hamburger */
.hamburger-container {
	width: 30px;
	height: 30px;
}

#toggle {
	z-index: 2;
	position: absolute;
	width: 30px;
	height: 30px;
	background: 0;
	border: none;
}

.hamburger {
	width: 30px;
	height: 30px;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 4px;
	transition: all 0.2s ease;
}

/* Hamburger Center Line */
.hamburger > div {
	position: relative;
	flex: none;
	width: 90%;
	margin: auto;
	height: 3px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-135);
	transition: all 0.3s ease;
}

/* Hambuger Top and Bottom lines */
.hamburger > div::before,
.hamburger > div::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: -7px;
	width: 100%;
	height: 3px;
	background: inherit;
	border-radius: 1px;
}

.hamburger > div::after {
	top: 7px;
}

/*Animation */
.animate.hamburger > div {
	transform: rotate(-135deg);
	transition: all 0.3s ease;
}

/* Turn Hamburger Into X */
.animate.hamburger > div:before,
.animate.hamburger > div:after {
	top: 0;
	transform: rotate(90deg);
}

/* Dropdown-content */
.dropdown-content {
	overflow-y: hidden;
	scrollbar-width: thin;
	position: absolute;
	visibility: hidden;
	min-height: 100vh;
	right: 0;
	top: 60px;
	width: 100%;
	z-index: 3;
}

.dropdown-content a {
	font-size: 1.1em;
	display: block;
	color: white;
	padding: 12px 8px;
	text-decoration: none;
	text-align: right;
	transition: color 0.2s ease;
}

.dropdown-content a:hover {
	color: rgb(99, 99, 99);
	transition: color 0.2s ease;
}

/* Slider Class */
.slider {
	visibility: visible;
	overflow-y: visible;
	height: 100%;
	-webkit-transition: -webkit-transform 0.3s ease;
	-moz-transition: -moz-transform 0.3s ease;
	-ms-transition: -ms-transform 0.3s ease;
	transition: transform 0.3s ease;
	padding: 20px;
	background: rgba(26, 26, 27, 0.925);
	color: #fff;
}

.slider.opened {
	-webkit-transform: translate(0, 0%);
	-moz-transform: translate(0, 0%);
	-ms-transform: translate(0, 0%);
	transform: translate(0, 0%);
}

.slider.closed {
	-webkit-transform: translate(0, -100%);
	-moz-transform: translate(0, -100%);
	-ms-transform: translate(0, -100%);
	transform: translate(0, -100%);
}
.nav-wrapper {
	height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

/* Navigation */
#nav {
	height: 100%;
	display: none;
	flex-direction: row;
	align-self: flex-end;
	justify-content: space-between;
	color: whitesmoke;
}

.nav-buttons {
	margin-bottom: 10px;
}

#nav .nav-btn {
	padding: 10px 15px 10px 15px;
	margin: 0 5px;
	border-radius: 7px;
	background-color: none;
	transition: background 0.2s ease;
}

#nav .nav-btn:hover {
	background-color: rgb(34, 120, 178);
	transition: background 0.3s ease;
}

#nav .active {
	background-color: rgb(34, 120, 178);
}

.dropdown-content .active {
	color: rgb(34, 120, 178);
}

#header .logo2 {
	width: 120px;
}

/* Main */
#main {
	position: relative;
	grid-area: main;
	width: 100%;
	height: 100%;
	color: white;
	background-color: rgb(26, 26, 27);
	z-index: 1;
}

/* Hero */
.hero {
	position: relative;
	width: 100%;
	
	z-index: 1;
	height: auto;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero .button {
	margin-top: 30px;
}

#main-hero {
	background-image: url(/images/aircon-image-main.jpg);
}

#services-hero {
	background-image: url(/images/men-aircon.jpg);
}

#faqs-hero {
	background-image: url(/images/showcase.jpg);
}

#contact-hero {
	background-image: url(/images/hero2.jpg);
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.747);
}

.hero-content {
	position: relative;
	text-align: left;
	padding: 60px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	z-index: 1;
	max-width: 1200px;
}

.hero::after {
	content: "";
	display: table;
	clear: both;
}

.hero h1 {
	margin-bottom: 20px;
	font-size: 2em;
}
#hero-title {
    transition: opacity 0.5s ease;
}

/* Services */
#services {
	width: 100%;
	height: 100%;
	background-color: #d3d3d3;
	
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	align-self: center;
	color: #222;
	padding: 60px 20px 60px 20px;
}

#services-wrap {
	width: 100%;
	max-width: 1200px;
	height: 100%;
	text-align: center;
	margin: auto;
}

#services-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 80px 0 0 0;
}

#services h3,
h2 {
	margin-bottom: 15px;
}

#services h3 {
	font-weight: bold;
}

.service {
	.service {
		flex: 0 0 calc(33.333% - 27px);
		margin: 0;
	}
	box-shadow: 0.5px 0.5px 15px 1px rgba(26, 26, 27, 0.158);
	border-radius: 15px;
	padding: 20px 15px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.service:hover {
	transition: background 0.3s ease;
	transform: scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
	transition: all 0.3s ease;
}

/*.service:hover .service-icon {
	color: #d3d3d3 !important;
	fill: #d3d3d3 !important;
}*/

#button-flex {
	display: flex;
	justify-content: space-between;
}

#button-flex div:first-of-type {
	background-color: rgb(26, 26, 27);
}

#button-flex div:first-of-type a {
	color: #d3d3d3;
}

.faq-button .button a {
	color: #d3d3d3;
}

#services-content i {
	margin-bottom: 15px;
	color: rgb(34, 120, 178);
}

#services-wrap .button {
	margin-top: 20px;
}

#services-wrap .button a {
	font-weight: bold;
	color: rgb(26, 26, 27);
	display: inline;
}

#contact-info {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

#social-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.849);
}

#social {
	height: 100%;
	display: flex;
	gap: 20px;
	width: 100%;
	align-items: flex-end;
	justify-content: flex-end;
    margin-right: 15px;
    
}

#social-mobile {
	height: 100%;
	display: flex;
	gap: 10px;
	width: 100%;
	align-items: center;
	justify-content: flex-end;
	margin-right: 20px;
}
#social-mobile img {
	width: 30px;
	display: flex;
	flex-direction: column;
}

#social img {
	width: 50px;
	display: flex;
	flex-direction: column;
}

#social img a {
	color: #d3d3d3;
}

#social-hero {
	margin: 20px 0;
}

#social-hero h1 {
	font-size: 2.2em;
}

/*Contact Info*/
.contact-info {
	text-align: right;
}

#info {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#info div {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

#info div a {
	text-align: right;
}

#info h2 {
	font-size: 1.4em;
	color: rgb(34, 120, 178);
	margin-bottom: 0px;
}

#info h3 {
	font-size: 1.2em;
}

/* Contact Form */
#contact-container {
	display: flex;
	width: 100%;
	align-items: left;
	font-family: Arial, Helvetica, sans-serif;
	max-width: 1200px;
	margin: 0 auto;

	padding-bottom: 40px;
	background-color: #1a1a1b;
	color: whitesmoke;
	letter-spacing: 0.01em;
	display: flex;
	flex-wrap: wrap;
	box-shadow: inset 0 0 10px rgb(26, 26, 27);
}

.tellemail-flex {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

label {
	width: 100%;
	margin: 0 auto;
	display: block;
	letter-spacing: 1px;
	padding-bottom: 10px;
	font-size: 1.3em;
	font-family: "Ubuntu", sans-serif;
}

#contact {
	width: 100%;
	padding: 60px 20px;
}
#contact .form-header {
	margin-bottom: 30px;
}

input,
textarea {
	position: relative;
	width: 100%;
	margin: auto;
	padding: 15px 10px;
	height: 27px;
	background: #efefef;
	border: 1px solid #dedede;
	font-size: 0.9em;
	color: #3a3a3a;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 15px;
}

#form-flex {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

textarea {
	font-size: 1em;
	padding: 10px;
	height: 213px;
	margin: 0 0 10px 0;
	font-family: "Ubuntu" sans-serif;
}

input:focus,
textarea:focus {
	outline-style: none;
	border-color: #333;
	border: 1px solid rgb(34, 120, 178);
}

input#submit {
	margin-top: 30px;
	width: 100%;
	max-width: 165px;
	background-color: rgb(34, 120, 178);
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	border-radius: 0.3em;
	cursor: pointer;
	display: block;
	height: 45px;
	font-size: 1.1em;
	font-weight: bold;
	box-shadow: 0.5px 0.5px 15px 1px rgba(26, 26, 27, 0.363);
	color: rgb(26, 26, 27);
}

#important {
	display: none;
}

#contact-footer {
	text-align: center;
}

.ppstyle {
	margin-top: 40px;
}

/* FAQs */
#openPost {
	background: none;
	max-height: 1000px;
}

#faqs {
	background-color: #2278b2;
	padding: 0 20px;
}

#faqs h1 {
	margin-bottom: 40px;
}

#faqs-wrap {
	padding: 15px 15px 30px 15px;
	max-width: 1200px;
	background-color: #2278b2;
	margin: auto;
	padding: 80px 0;
}

.faqs-buttton {
    transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.faqs-button:hover {
transition: background 0.3s ease;
	transform: scale(1.5);
	
}

.question {
	width: 100%;
	background-color: rgb(26, 26, 27);
	color: whitesmoke;
}

.question-wrap {
	background-color: #2278b2;
}

.question-header {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0px;
}

.question-header h3 {
	padding: 0;
	margin: 0;
	margin-right: 10px;
}

.question-header button {
	all: unset;
	width: 20px;
	height: 20px;
	padding: 10px;
	border-radius: 50%;
	background: none;
	outline: 1px solid rgb(34, 120, 178);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.answer {
	color: #1a1a1b;
	max-height: 10px;
	min-height: 10px;
	overflow: hidden;
	position: relative;
	-webkit-transition: max-height 0.3s ease;
	-moz-transition: max-height 0.3s ease;
	-ms-transition: max-height 0.3s ease;
	transition: max-height 0.3s ease;
}

/* Footer */
#footer {
	grid-area: footer;
	background-color: rgb(26, 26, 27);
	position: absolute;
	width: 100%;
}

#sitemap {
	margin: 20px 0 100px 0;
	padding: 15px;
	text-align: center;
}

#sitemap a {
	color: slategray;
	font-size: 01em;
	padding: 3px;
}

#sitemap .icon-atr {
	font-size: 0.8em;
}

#footer-bottom {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #f4f4f4;
	padding: 10px 15px;
}

#footer-bottom p {
	color: #f4f4f4;
	padding: 0;

	font-size: 1em;
}

#footer-bottom a {
	color: whitesmoke;
	transition: color 1s ease;
}

#footer a:active {
	color: rgb(34, 120, 178);
	transition: color 1s ease;
}

#footer div i {
	display: fixed;
	z-index: 1;
	bottom: 0;
	right: 0;
}



.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 13px;
    background-color: #2278b2;
    color: #fff;
    padding: 3px 5px;
    border-radius: 20%;
    border: 2px solid whitesmoke;
    text-align: center;
    text-decoration: none;
    z-index: 1000;
    font-size: 0.7em;
}

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

input[type="submit"],
button[type="submit"] {
	font-family: "Ubuntu", sans-serif !important;
	/* Replace 'YourFontFamily' with the desired font */
	box-shadow: 0.5px 0.5px 15px 1px rgba(26, 26, 27, 0.363);
	padding: 10px 15px;
	background-color: rgb(34, 120, 178);
	border-radius: 8px;
	color: rgb(26, 26, 27);
	display: inline-block;
	margin: 0;
}
