/* Reset */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

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

/* Global */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(26, 26, 27);
    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;
}

.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.6em;
    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 {
    width: 100%;
    max-width: 900px;
    margin: auto;
    background-color: #2b2b2b;
}

.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: rgb(34, 120, 178);
    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 {
    grid-area: header;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 0;
    background: rgb(26, 26, 27);
    width: 100%;
    z-index: 3;
}

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

.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: 3px;
    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 .3s ease;
    -moz-transition: -moz-transform .3s ease;
    -ms-transition: -ms-transform .3s ease;
    transition: transform .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%);
}

/* Navigation */
#nav {
    display: none;
    color: whitesmoke;
    height: 165px;
    padding-top: 140px;
    margin: 0;
}

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

#nav a: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%;
    box-shadow: inset 0 0 10px rgba(26, 26, 27, 0.664);
    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/aircon4.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: 30px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}


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

.hero h1 {
    margin-bottom: 20px;
    font-size: 2em;

}


/* Services */
#services {
    width: 100%;
    height: 100%;
    background-color: #d3d3d3;
    box-shadow: inset 0 0 10px rgb(26, 26, 27);
    max-width: 900px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;

    color: #222;
    padding: 40px 20px;

}

#services-wrap {
    width: 100%;
    height: 100%;
    text-align: center;
}


#services-content {
    padding: 0px 0.3rem;
    display: flex;
    flex-flow: column wrap;
    gap: 25px;
    width: 100%;
    margin: 40px 0px;
    text-align: center;
}

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

#services h3 {

    font-weight: bold;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0.5px 0.5px 15px 1px rgba(26, 26, 27, 0.158);
    border-radius: 15px;
    padding: 20px 15px;
    margin: 0 auto;
}

#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;

    justify-content: space-between;

}

#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*/
#info {
    grid-area: contact-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;
    justify-content: center;
    align-items: left;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    padding-bottom: 40px;
    background-color: #d3d3d3;
    color: #222;
    letter-spacing: 0.01em;
    display: flex;
    flex-wrap: wrap;
    box-shadow: inset 0 0 10px rgb(26, 26, 27);
}

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

#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;
    width: 100%;
    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-wrap {
    padding: 15px 15px 30px 15px;
}

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

.question-wrap {
    border-bottom: 1px solid #333;
}

.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 {
    padding-bottom: 15px;
    max-height: 10px;
    min-height: 10px;
    overflow: hidden;
    position: relative;
    -webkit-transition: max-height .3s ease;
    -moz-transition: max-height .3s ease;
    -ms-transition: max-height .3s ease;
    transition: max-height .3s ease;
}


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

#sitemap {
    margin-top: 10px;
    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: 900px;
    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;
}

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