@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");

/* VARIABLES */
:root {
    /* TEXT VARIABLES */
    --text-dark: #000;
    --text-light: #fff;
    --text-grey: #adbdcc;
    --body-font: "Inter", Sans-serif;
    --heading-font: "Playfair Display", Sans-serif;
    --h1-size: 50px;
    --h1-height: 64px;
    --h2-size: 45px;
    --h2-height: 55px;
    --h3-size: 35px;
    --h4-size: 28px;
    --h5-size: 22px;
    --h6-size: 16px;
    --subtitle-size: 17px;
    --subtitle-height: 26px;
    --p-size: 20px;
    --p-height: 32px;
    --secondary-text-size: 14px;
    --secondary-text-height: 18px;
    --button-size: 16px;

    /* SPACING VARIABLES */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    /* COLOR VARIABLES */
    --purple-1: #6962f7;
    --purple-2: #7000ff;
    --blue-1: #00d4ff;
    --primary-accent: #0800ff;
    --primary-button-hover: #6d7a88;
    --bg-white: #fff;
    --bg-green: #1dbf73;
    --bg-light-green: #5dd08c;

    --standard-border-radius: 20px;
    --standard-box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
}

a {
    text-decoration: none !important;
    color: var(--text-light) !important;
}

ul {
    list-style: none;
}

h1 {
    font-size: var(--h1-size);
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
}
/* heading start */
.heading .container h1 {
    margin: 10px 0;
    font-weight: bold;
}
/* heading end */
/* main section start */
.mainSection {
    position: relative;
    color: var(--text-light);
}
#mainImg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    overflow: hidden;
    display: flex;
    justify-content: center; /* vertically center */
    align-items: center;     /* horizontally center */
}

.mainSection .mainText {
    text-align: center;
}
.mainSection .mainText h2 {
    font-weight: bold;
    font-size: var(--h2-size);
    margin: 15px 0;
}
.mainSection .mainText h3 {
    font-size: var(--h4-size);
    margin: 15px 0;
}
.mainSection .mainText h5{
    font-size: var(--h5-size);
    margin: 15px 0;
    font-weight: bold;
}

.mainSection .mainText .mainbtn {
    display: flex;
    justify-content: center;
    margin: 60px 0 0 0;
}

.mainSection .mainText .mainbtn a {
    margin: 20px 20px 0 20px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
}

#buttonAnimate {
    transition: transform 0.3s ease;
}

#buttonAnimate:hover {
    transform: scale(1.1);
}

#mainbtn {
    background-color: #dd0a50;
    color: white;
    border: none;
    transition: transform 0.3s ease;
}

#mainbtn:hover {
    background-color: #ff0055;
    transform: scale(1.1);
}
/* main section end */
/* about section start */
.about {
    margin: 20px 0;
    padding: 50px 0;
    background-color: #dadddf;
}
.about p {
    font-size: 20px !important;
    font-weight: 400 !important;
}
.about .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about .container h2 {
    font-size: 45px;
    font-family: var(--heading-font) !important;
    font-weight: bold;
}
.about .container .why-buy h3 {
    font-size: 35px;
    font-family: var(--heading-font) !important;
    font-weight: bold;
}
#color {
    color: #ff0055;
}

/* about section end */
/* Service start */
.service {
    background-color: #fff;
    margin: 80px 0 50px 0;
}

.service .container h2 {
    font-size: 45px;
    font-family: var(--heading-font) !important;
    font-weight: bold;
}

.service .container h3 {
    margin-bottom: 80px;
}

.service .container .all-product {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    width: 100%;
    height: 100%;
}

.service .container .all-product .product img {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
}

.service .container .all-product .product h4 {
    font-size: 30px;
    font-weight: bold;
    font-family: var(--heading-font);
    color: #dd0a50;
    margin: 10px 0 40px 0;
}
/* Service send*/
/* location section start */
.main-map {
    width: 100wh;
    background-color: #f4e6e6ec;
}

.main-map .our-location h2 {
    padding: 50px 0 0 0;
    display: inline-block;
    font-size: 45px;
    font-family: var(--heading-font) !important;
    font-weight: bold;
}

.main-map .our-location {
    text-align: center;
}

/* .main-map .our-location h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #000;
    margin: 65px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.main-map .map-section iframe {
    width: 100%;
    height: 400px;
    margin: 0 0 60px 0;
}
/* location section end */
/* time section start */
.service-time {
    margin: 50px 0 0 0;
    text-align: center;
}

.service-time h2 {
    display: inline-block;
    font-size: 45px;
    font-family: var(--heading-font) !important;
    font-weight: bold;
}

/* .service-time h1::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #000;
    margin: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.time-chart {
    margin-top: 50px;
}
.time-chart td {
    padding: 10px;
}
/* time section end */
/* Happy client start */

.main-client {
    margin: 80px 0;
}
.main-client .container h2 {
    font-size: 45px;
    font-family: var(--heading-font) !important;
    font-weight: bold;
}

.main-client .container .client-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 50px 0;
}

.main-client .container .client-img img {
    width: 160px;
}

/* Happy client end */
/* footer section start */
.main-footer {
    margin: 50px 0 20px 0;
}

.main-footer .footer {
    display: flex;
    justify-content: space-around;
}

.main-footer .footer .footer-item {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main-footer .footer .footer-item h4 {
    font-family: var(--heading-font);
    /* margin: 0 0 30px 0 !important; */
    font-size: var(--h4-size);
    font-weight: bold;
}

.main-footer .footer .footer-item a {
    color: #0800ff !important;
    margin: 5px 0;
}

.main-footer .footer .footer-item a,
.main-footer .footer .footer-item p {
    font-size: 20px;
}
/* developer information start */
.main-dev-in {
    background-color: #f4e6e6ec;
    padding: 15px 0;
    margin: 30px 0 0 0;
}

.dev-in a {
    color: #0800ff !important;
}

.dev-in p {
    margin: 0 !important;
}

.dev-in p,
.dev-in a {
    font-size: 16px;
}
/* developer information end */
/* footer section end */
/* Button to top button start */
.bottom-top a {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 3;
}

.bottom-top a i {
    padding: 5px;
    font-size: 25px;
}
/* Button to top button end */
/* whatsapp fixed button start */
.wts-fixed a {
    position: fixed;
    bottom: 120px;
    right: 50px;
    z-index: 3;
    background-color: #25d366;
}

.wts-fixed a:hover {
    background-color: #1da851 !important;
}

.wts-fixed a i {
    font-size: 30px;
}
/* whatsapp fixed button end */

/* email fixed button start */
.email-fixed a {
    position: fixed;
    bottom: 190px;
    right: 50px;
    z-index: 3;
    background-color: rgba(17, 0, 0, 0.961);
}

.email-fixed a:hover {
    background-color: rgb(17, 0, 0) !important;
}

.email-fixed a i {
    font-size: 30px;
}
/* email fixed button end */
/* responsive start */
/* Happy client start */
/* 1000px responsive start */
@media only screen and (max-width: 1000px) {
.main-client .container .client-img img {
    width: 100px;
}
}
/* 800px responsive start */
@media only screen and (max-width: 800px) {

 h1 {
    font-size: var(--h3-size);
}
.mainSection .mainText h2 {
    font-size: var(--h4-size);
    margin: 15px 0;
}
.mainSection .mainText h3 {
    font-size: var(--h5-size);
    margin: 15px 0;
}
.mainSection .mainText h5 {
    font-size: var(--h6-size);
    margin: 15px 0;
}
.about .container h2 {
    font-size: 35px;
}
.service .container h2 {
    font-size: 35px;
}
.service .container .all-product {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.service .container .all-product .product h4 {
    font-size: 25px;
    margin: 10px 0 40px 0;
}
.main-map .our-location h2 {
    font-size: 35px;
}
.service-time h2 {
    font-size: 35px;
}
.main-client .container h2 {
    font-size: 35px;
}

.main-client .container .client-img {
    display: flex;
    flex-direction: column;
    margin-top: 20px !important;
}
.main-client .container .client-img img {
    width: 220px !important;
    padding: 60px 0 0 0;
}
.main-footer .footer {
    display: flex;
    flex-direction: column;
}
.main-footer .footer .footer-item {
    margin: 10px 0 20px 0;
}
}
/* 640px responsive start */
@media only screen and (max-width: 640px) {
    .mainSection .mainText .mainbtn {
    display: flex;
    justify-content: center;
    margin: 60px 0 0 0;
    flex-direction: column;
}
}
/* 600px responsive start */
@media only screen and (max-width: 600px) {
    h1 {
        font-size: var(--h4-size);
    }
        .mainSection .mainText h2 {
        font-size: 30px;
        margin: 20px 0;
    }
        .mainSection .mainText h3 {
        font-size: 25px;
        margin: 20px 0;
    }
    .mainSection .mainText .mainbtn a {
    display: block;
    margin: 10px auto;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    width: 55%;
    text-align: center;
}
}
/* 550px responsive start */
@media only screen and (max-width: 550px) {
    .mainSection .mainText .mainbtn a {
    font-size: 15px;
}
}
/* 500px responsive start */
@media only screen and (max-width: 500px) {
    .mainSection .mainText .mainbtn a {
    display: block;
    margin: 10px auto;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    width: 70%;
    text-align: center;
}
    .main-client .container .client-img img {
        width: 180px !important;
        padding: 50px 0 0 0;
    }
}
/* Happy client end */
/* responsive end */