@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
img {
    width: 100%;
}
html {
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 400;
}
body {
    background-color: var(--brown);
    font-family: "Alata", serif;
    font-weight: 400;
    font-style: normal;
    
}
::placeholder, button, h1, h2, h3, h4, h5, h6, span, p, a, input {
    font-family: "Alata", serif;
    font-family: "Rubik", sans-serif;
}
.start-icon {
    animation: starrotate 2s infinite linear;
    position: absolute;
}
@keyframes starrotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
:root {
    --red-color: #EA1919;
    --brown: #EFEDEA;
    --light-white: #D9D9D9;
}
.container {
    width: 90%;
    margin: auto;
}
.flex {
    display: flex;
}
a {
    text-decoration: none;
    cursor: pointer;
}
ul {
    list-style: none;
}
/* header starts here */

.service-header-main {
    width: 100%;
    background-color: #000;
    
}
.service-header-container {
    border-bottom: 1px solid rgba(217, 217, 217, 0.38);
    padding: 2rem;

}
.service-logo {
    width: 15%;
}
.service-logo img {
    width: 55%;
}
.service-menu {
    width: 70%;
    display: flex;
    align-items: center;
    /*padding-left: 1rem;*/
    justify-content: center;
}
.services-cta {
    width: 15%;
    display: flex;
    align-items: center;
}
.service-menu ul {
    width: 90%;
    justify-content: space-around;
}
.service-menu ul li {
    /* margin: 0 2rem; */
}
.service-menu ul li a {
    font-size: 1.1rem;
    color:var(--light-white);
    transition: all 0.4s ease-in-out;
    border-radius: 20px;
     padding: 0.4rem 1.5rem;
}
.service-menu ul li a:hover {
    background-color: var(--brown);
    color: #000;
}
.services-cta a {
    font-size: 1rem;
    color: var(--light-white);
    background-color: var(--red-color);
    padding: 0.6rem 2rem;
    border-radius: 20px;
    padding-left: 3rem;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.services-cta a i {
    left: 15%;
}

.services-cta a:hover {
    background-color: var(--light-white);
    color: #000;
}

/* header closed  */

/* hero section starts here  */
.hero-main {
    width: 100%;
    border-radius: 0 0 100px 100px;
    background-color: #000;
}
.hero-container {
   padding: 4rem 2rem;
}
.hero-container h1 {
    font-size: 4rem;
    color: var(--light-white);
    font-weight: 500;
}
.hero-container h1 span {
    color: var(--red-color)
}
.hero-container p {
    font-size: 1.2rem;
    width: 90%;
    color: var(--light-white);
    padding: 1.5rem 0;
    padding-bottom: 4rem;
    line-height: 1.8;
}
.hero-container a {
    color: #000;
    font-size: 1.1rem;
    background-color: var(--light-white);
    border: 1px solid transparent;
    border-radius: 20px;
    position: relative;
    padding: 0.6rem 2rem;
    padding-left: 4rem;
    transition: all 0.3s ease-in-out;
}
.hero-container a:hover {
    color: var(--red-color);
    border: 1px solid var(--red-color);
    background-color: #000;
}
.hero-container a i {
    color: var(--red-color);
    left: 15%;
}
.hero-text-box {
    width: 80%;
}
.hero-hight-box {
    padding: 3rem;
    padding-bottom: 0;
}
.hero-hight-box h3 {
    font-size: 3rem;
    color: var(--light-white);
}
.hero-hight-box p {
    width: 100%;
    padding: 0rem 0;
    font-size: 1.3rem;
    text-align: center;
}
.hero-high {
    width: 30%;
    margin: 2rem;
    text-align: center;
    padding: 2rem;
}
.what-i-do {
    background-color: var(--brown);
    padding: 3rem 0;
    position: relative;
}
.what-i-do-heading {
    position: absolute;
    left: 50%;
    top: 12%;
    transform: translate(-50%, 50%);
}
.what-i-do-heading h3 {
    font-size: 2.5rem;
    
} 
.what-i-do-heading h3 span {
    color: var(--red-color);
}
.what-i-do-container {
    padding: 3rem 0;
    align-items: self-start;
    justify-content: space-between;
    position: relative;
}
.what-i-do-box {
    width: 30%;
    background-color: #FFFDFD;
    border: 1px solid var(--light-white);
    border-radius: 30px;
    padding: 2rem;
    padding-bottom: 4rem;

}
.what-i-do-box:nth-child(2) {
    margin-top: 6rem;
}
.what-i-do-box img {
    width: 15%;
}
.what-i-do-box h4 {
    font-size: 1.3rem;
    padding: 0.5rem 0;
}
.what-i-do-box p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.35);
    margin: 0.5rem 0;
    line-height: 2;
    padding-bottom: 2rem;
}
.what-i-do-box a {
    font-size: 1rem;
    background-color: #000;
    padding: 0.5rem 2rem;
    width: 100%;
    display: block;
    text-align: center;
    color: var(--light-white);
    border-radius: 10px;
}
.why-should-choose {
    background-color: var(--brown);
    padding: 4rem 0;
}
.why-choose-left {
    width: 55%;
    padding: 3rem 5rem;
}
.why-choose-left h4 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.why-choose-right {
    width: 45%;
}
.why-choose-left h4 span {
    color: var(--red-color)
}
.why-should-choose-box {
    padding: 1rem 0;
}
.why-should-choose-box h5 {
   font-size: 1.5rem;
   margin: 0.5rem 0;
}
.why-should-choose-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 200;
}
.my-works-main {
    padding: 2rem 0;
    padding-bottom: 20rem;
    background-color: #000;
}
.my-works-heading {
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.41);
}
.my-works-left {
    width: 25%;
}
.my-works-left h4 {
    font-size: 2.4rem;
    color: var(--light-white)
}
.my-works-left h4 span {
    color: var(--red-color);
    display: block;
}
.my-works-middle {
    width: 50%;
}
.my-works-middle p {
    font-size: 1.1rem;
    color: var(--light-white);
    line-height: 2;
}
.my-works-right {
    text-align: center;
    width: 25%;
}
.my-works-right i {
    color: var(--light-white);
    font-size: 3.5rem;
}
.my-works-right a {
    transition: all 0.4s ease-in-out;
}
.my-works-right a:hover i {
    color: var(--red-color);
    transition: all 0.4s ease-in-out;
}
.my-works-list a {
    background-color: var(--light-white);
    color: #000;
    font-size: 1.15rem;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}
.my-works-list ul li a:hover {
    background-color: var(--red-color);
    color: #fff;
}
.my-works-list ul li:nth-child(4) {
    margin-left: 5rem;
}
.my-works-list {
    padding: 3rem 2rem;
}
.my-works-list ul {
    flex-wrap: wrap;
}
.my-works-list ul li {
    margin: 2.5rem 2rem;
}
.my-works-list ul li a i {
    margin-left: 0.4rem;
    font-size: 1.1rem;
}
.faq {
    background-color: var(--light-white);
    padding: 3rem 0;
}
.faq-container {
    background-color: #0D0C0C;
    border-radius: 30px;
    padding: 3rem;
    margin-top: -20rem;
}
.faq-container h4 {
    font-size: 2.4rem;
    color: var(--light-white)
}
.faq-container h4 span {
    color: var(--red-color)
}
.faq-left {
    width: 50%;
}
.faq-right {
    width: 50%;
    /*padding: 2rem;*/
    
}
.faq-right h5 {
   font-size: 1.2rem;
   color: var(--light-white);
   padding: 0.5rem 0;
   cursor: pointer;
   
}
.faq-box {
    border-bottom: 1px solid rgba(217, 217, 217, 0.31);
    padding: 1rem;
}
.faq-box:last-child {
    border: 0;
}
.faq-right p {
    color: rgba(217, 217, 217, 0.67);
    font-size: 0.95rem;
     display: none; 
}
.faq-box i {
    margin-left: 0.7rem;
}
.faq-left p {
    font-size: 1.1rem;
    color: var(--light-white);
    width: 70%;
    line-height: 2;
}
.faq-left i {
    font-size: 8rem;
    color: var(--red-color);
    display: block;
    margin-top: 2rem;
}
.faq-left h4 {
    font-size: 2.4rem;
    margin: 2rem 0;
}

.faq-ans-main {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow-y: scroll;
    justify-content: center;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}
.faq-ans-main::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.faq-ans-main.active {
    z-index: 100;
    opacity: 1;
    pointer-events: all;
}
.faq-ans-container {
    width: 60%;
    background-color: #fff;
    padding: 2rem;
    position: relative;
    border-radius: 10px;
    overflow-y: scroll;
    border: 1px solid grey;
}
.faq-ans-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.faq-ans {
    display: none;
}
.faq-ans span {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    display: block;
    border-top: 1px solid grey;
    padding-top: 1.5rem;
    margin: 1.5rem 0;
}
.faq-ans span a {
    position: relative;
    margin-left: 1rem;
}
.faq-ans span a:after {
    content: "";
    width: 0;
    left: 0;
    bottom: -5px;
    position :absolute;
    height: 1.5px;
    background-color: #000;
    transition: all 0.4s ease-in-out;
}
.faq-ans span a:hover:after {
    width: 100%;
}
.faq-ans.active {
    display: block;
}
.faq-ans-container h4 {
    font-size: clamp(1.4rem, 2.6vw, 1.6rem);
    padding: 1rem 0;
}
.faq-ans-container p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    /*padding: 1rem 0;*/
    opacity: 0.7;
    line-height: 26px;
    
}
.close-faq {
    position: absolute;
    right: 20px;
    top: 20px;
}
.close-faq i {
    font-size: 1.5rem;
    cursor: pointer;
}
.info {
    padding: 4rem 0;
    background-color: var(--light-white);
}
.info h4 {
    font-size: 2.4rem;
}
.info h4 span {
    color: var(--red-color)
}
.info-box-container {
    display: flex;
    margin: 2rem 0;
    overflow-x: scroll;
    padding: 3rem 0;
    padding-top: 0;
}
.info-box-container::-webkit-scrollbar {
    width: 0;
}
.info-box {
    min-width: 27%;
    margin-right: 3rem;
}
.info-box h4 {
    font-size: 1.4rem;
    /* display: inline-block; */
    width: 80%;
    padding-left: 1rem;
}
.info-box a {
    font-size: 1.5rem;
    color: #000;
    margin-left: 2rem;
    width: 20%;
}
.info-text-box {
    display: flex;
    padding: 1rem 0;
    justify-content: center;
}
.footer-main {
    padding: 3rem 0;
    background-color: #000;
    width: 100%;
}
.footer-top {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
}
.footer-top img {
    width: 6vw;
}
.footer-top h5 {
    font-size: 1.3rem;
    color: var(--light-white);
    margin: 0.5rem 0;
}
.footer-top h5 i {
    color: var(--red-color);
}
.footer-top p {
    font-size: 1rem;
    color: rgba(214, 206, 206, 0.69);
    margin: 1rem 0;
}
.footer-bottom {
    border-top: 1px solid rgba(214, 206, 206, 0.38);
    border-bottom: 1px solid rgba(214, 206, 206, 0.38);
    margin: 2rem 0;
    padding: 2rem 0;
}
.footer-bottom ul li {
    margin: 1rem 0;
}
.footer-bottom ul li a {
    color: var(--brown);
    font-size: 1rem;

}
.footer-left {
    width: 30%;
    padding: 2rem;
    padding-left: 10vw;
}
.footer-middle {
    width: 40%;
    padding: 2rem;
    padding-left: 13vw;
}
.footer-address {
    width: 30%;
    padding: 2rem;
}
.copyrights {
   text-align: center;
}
.copyrights p {
    font-size: 1rem;
    color: var(--light-white)
}

.fixed-cta {
    position: fixed;
    right: 4%;
    bottom: 8%;
}
.fixed-cta a {
    background-color: var(--light-white);
    color:  #000;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0.6rem 2rem;
    cursor: pointer;
    position: relative;
    padding-left: 3rem;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}
.fixed-cta a i {
    position: absolute;
    left: 15%;
}
.fixed-cta a:hover {
    background-color: var(--red-color);
}

/* form  */
.contact-form {
    width: 100%;
    background-color: transparent;
    position: fixed;
    left: 0;
    height: 100vh;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: -1;
    transform: scale(0.8);
}

.contact-form.active {
    transition: all 0.4s ease-in-out;
    display: flex;
    transform: scale(1);
    z-index: 100000;
    opacity: 1;
}
.contact-form-container {
    position: relative;
    width: 40%;
    background-color: var(--light-white);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid grey;
}
.contact-form form input, .contact-form form textarea {
    display: block;
    width: 100%;
    padding: 0.8rem 2rem;
    background-color: var(--brown);
    font-size: 1rem;
    margin: 0.8rem 0;
    border-radius: 8px;
    border: 1px solid grey;
    outline: none;
}
.contact-form-close {
    position: absolute;
    right: 3%;
    top: 3%;

}
.contact-form-close i {
    font-size: 1.5rem;
    cursor: pointer;
}
.contact-details-form {
    text-align: center;
}
.contact-details-form span {
    display: block;
    margin: 1.5rem 0;
}
.contact-details-form ul {
    justify-content: center;
}
.contact-details-form ul li {
    margin: 0rem 1rem;
}
.contact-details-form ul li a {
    font-size: 1.2rem;
    color: #000;
}
.form-button {
    background-color: #000 !important;
    cursor: pointer;
    color: var(--light-white)
  
}

/* maintainance  */
.maintainace {
    height: 100vh;
    width: 100%;
    z-index: 1000;
    position: fixed;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}
.maintainance-container {
    width: 80%;
    text-align: center;
    background-color: var(--light-white);
    padding: 3rem;
    border-radius: 20px;
}
.maintainance-container h3 {
    font-size: 2rem;
    padding: 1rem 0;
}
.maintainance-container p {
    font-size: 1.1rem;
}
.maintainance-container ul {
    justify-content: center;
    margin: 1rem 0;
}
.maintainance-container ul li {
    margin: 0.5rem;
}
.maintainance-container ul li a {
    font-size: 1.1rem;
    color: #000;
}