/*------------------------------------------------------------------
Project:
Author: The_Krishna
Last change: 
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.header CSS
3.Section One CSS
4.Section Two CSS
5.Section Three CSS
6.Section Four CSS
7.Section Five CSS
8.Section Six CSS
9.Section Seven CSS
10.Section Eight CSS
11.Section Nine CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Outfit", sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;
}

ol,
ul {
    padding-left: 0rem !important;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}

ul li {
    list-style: none;
}

button {
    border: none;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #000;
}

::-webkit-scrollbar-corner {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #FE8500;
    background-clip: content-box;
}

::-webkit-scrollbar-track {
    background-color: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.50) 100%);
}

.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    z-index: 1000;
    overflow: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/*-----------------------[ 2.header CSS ]------------------------*/
header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 200;
    margin: 0 auto;
    border-bottom: 1px solid #ffffff17;
}

.top-navbar.fixed {
    background: rgba(23, 27, 34, 0.3);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

/*-----------------------[ 7.Main Header CSS ]------------------------*/
.header-container {
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 150px;
    transition: all 0.3s ease;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-links li a:hover {
    color: #FE8500;
}

.nav-links li a:hover img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(73%) saturate(3771%) hue-rotate(360deg) brightness(101%) contrast(104%);
}

.menu-toggle {
    display: none;
    z-index: 1002;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: #FE8500;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.menu-toggle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay,
.menu-logo {
    display: none;
}

/* Button Css */
.quote-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    font-style: normal;
    padding: 16px 24px;
    text-transform: uppercase;
    display: inline-block;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    color: #FFF;
    background: #FE8500;
    transition: 0.3s ease all;
    z-index: 1;
    border-radius: 40px;
}

.quote-btn:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #FFF;
    z-index: -1;
    border-radius: 40px;
}

.quote-btn:hover,
.quote-btn:focus {
    color: #FE8500;
}

.quote-btn:hover:before,
.quote-btn:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.quote-btn .arrow {
    position: relative;
    margin-left: 10px;
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.4s ease;
    z-index: 1;
}

.quote-btn:hover .arrow,
.quote-btn:focus .arrow {
    transform: rotate(45deg);
    filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%) hue-rotate(0deg) brightness(101%) contrast(100%);
}

.close-menu,
.menu,
.mobile-quote-btn {
    display: none;
}

/*-----------------------[ 3.Section One CSS ]------------------------*/
.sectionBG {
    background-image: linear-gradient(to bottom, rgba(9, 18, 23, 0.8), rgba(9, 18, 23, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 890px;
    display: flex;
    align-items: center;
    position: relative;
}

.slick-slide {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-main,
.slick-list,
.slick-track {
    height: 100%;
}

.slider-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 935px;
    z-index: -1;
}

.qouteGET {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about {
    color: #FE8500;
    padding-bottom: 10px;
}

.latest-hardest {
    color: var(--1, #FFF);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 630px;
}

.estimationWeb {
    color: var(--5, #FFF);
    font-size: 60px;
    font-weight: 400;
    line-height: 80px;
    padding: 10px 0 30px 0;
}

.estimationWeb span {
    color: #FE8500;
    font-weight: 700;
}

.finest {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    border-left: 10px solid #FE8500;
    padding-left: 20px;
    max-width: 1040px;
}

.section-one-btn-main {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.check-design-btn {
    background: #FFF;
    color: #FE8500;
}

.check-design-btn img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(73%) saturate(3771%) hue-rotate(360deg) brightness(101%) contrast(104%);
}

.check-design-btn:hover .arrow {
    filter: brightness(0) saturate(100%) invert(64%) sepia(73%) saturate(3771%) hue-rotate(360deg) brightness(101%) contrast(104%);
}

/*-----------------------[ 4.Section Two CSS ]------------------------*/
.section-two {
    padding: 100px 0;
}

#item-box1 {
    background: linear-gradient(180deg, #0575E6 0%, #021B79 100%);
}

#item-box2 {
    background: linear-gradient(180deg, #00BF8F 0%, #001510 100%);
}

#item-box3 {
    background: linear-gradient(180deg, #F9D423 0%, #E65C00 100%);
}

#item-box4 {
    background: linear-gradient(180deg, #FF0084 0%, #33001B 100%);
}

.item-box p {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.item-box h2 {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
    padding: 20px 0;
}

.item-box h3 {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.exlcuse-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.exlcuse-main-grid-box {
    border: 2px solid #F1F4F8;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.autgor-img-main {
    width: 100%;
    height: 80px;
    max-width: 80px;
    border-radius: 50%;
    background: #FE8500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autgor-img-main img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(84deg) brightness(101%) contrast(101%);
    width: 50px;
}

.exlcuse-main-grid-box p {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 28px;
}

.item-box-row {
    margin-top: -200px;
    position: relative;
}

.item-box {
    padding: 42px;
    border-radius: 30px;
    display: block;
}

.sec-text {
    color: var(--3, #000);
    font-size: 48px;
    font-weight: 400;
    line-height: 64px;
    text-align: center;
    padding-bottom: 20px;
}

.sec-text span {
    font-weight: 700;
}

.sec-sub-text {
    color: var(--4, #222);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 880px;
    margin: 0 auto;
}


.modern-layout-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.modern-layout-main .exlcuse-main-grid-box {
    border: none;
}

.modern-layout-main .autgor-img-main {
    background: linear-gradient(180deg, #0575E6 0%, #021B79 100%);
    width: 100%;
    max-width: 65px;
    height: 65px;
}

.modern-layout-main .autgor-img-main img {
    width: 40px;
}

.modern-layout-main .exlcuse-main-grid-box p {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 24px;
}

.layas {
    color: var(--4, #222);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-top: 20px;
    transition: all 0.3s ease-in-out;
}

.demo-img-main:hover .layas {
    color: #FE8500;
}

/*-----------------------[ 5.Ads CSS ]------------------------*/
.ads-section {
    padding: 80px 0;
    background: var(--13, #091217);
}

.satistication-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.satistication {
    color: #FFF;
    text-align: start;
    max-width: 800px;
}

.satistication span {
    color: #FE8500;
}

.arrrowVector {
    position: absolute;
    right: -180px;
    bottom: 0px;
    animation: 3s ease 0s normal none infinite running moveLeftRight;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(10px);
        -moz-transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}


/*-----------------------[ 5.Inner Page CSS ]------------------------*/

.inner-pages-sec {
    padding: 80px 0;
}

.inner-page-slider .slick-slide {
    margin: 0 15px;
}

.inner-page-slider {
    margin-right: -240px !important;
    margin-left: 10px;
    margin-top: 40px;
}

.inner-page-slider .demo-img-main img {
    border: 2px solid #FE8500;
    border-radius: 15px;
}

.inner-page-slider .demo-img-main img:hover {
    opacity: 0.7;
}

/*-----------------------[ 5.Section Three CSS ]------------------------*/
.section-three {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/home-img/roofer-man.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    height: 600px;
    position: relative;
    padding: 100px 0;
}

.latest-code {
    color: #FFF;
    text-align: start;
}

.benefits-slider .slick-arrow {
    width: 48px;
    height: 48px;
    font-size: 0;
    background: #FE8500;
    border-radius: 50%;
    box-shadow: 0px 8px 15px rgba(254, 133, 0, 0.80);
}

.benefits-slider .slick-prev {
    position: absolute;
    top: 40px;
    right: 60px;
    z-index: 5;
}

.benefits-slider .slick-next {
    position: absolute;
    right: 0;
    top: 40px;
}

.benefits-slider .slick-prev::before {
    content: url('../images/svg/left-arrow.svg');
}

.benefits-slider .slick-next::before {
    content: url('../images/svg/right-arrow.svg');
}

.fade-down {
    animation: fadeDown 0.8s ease forwards;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-----------------------[ 6.Section Four CSS ]------------------------*/
.ssDashbord {
    border: 2px solid #000;
    width: 100%;
    background: #FFF;
}

.ssdashbord-slider {
    margin-top: -250px;
}

.ViewDashbordMain {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

/*-----------------------[ 7.Section Five CSS ]------------------------*/
.section-five {
    padding: 100px 0;
}

.process {
    text-align: center;
    color: #FE8500;
    padding-bottom: 10px;
}

.stepsTo {
    text-align: center;
}

.simple {
    color: #707070;
    text-align: center;
}

.process-img-main {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(246, 130, 31, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.process-box-main {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.details {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.process-box-row {
    margin: 40px 0;
}

.scratch {
    padding-top: 30px;
    text-align: center;
}

.section-five-row {
    margin-top: 40px;
}

/*-----------------------[ 8.Section Six CSS ]------------------------*/
.section-six {
    padding-bottom: 100px;
}

.skills-box-main {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border: 2px solid rgba(246, 130, 31, 0.3);
    transition: all 0.3s ease-in;
}

.skills-box-main:hover {
    border: 2px solid #FE8500;
}

.skills-box-main img {
    width: 70px;
}

.boost-name {
    color: #000;
    font-size: 20px;
    line-height: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease-in;
}

.skills-box-main:hover .boost-name {
    color: #FE8500;
}

.premium-features-row {
    gap: 25px 0;
    margin-top: 40px;
}

.premium-features-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-----------------------[ 9.Section Seven CSS ]------------------------*/
.section-seven {
    background: var(--D2, #F1F4F8);
    padding: 100px 0;
}

.popular {
    padding-top: 20px;
}

.faq-img {
    max-width: 100%;
    padding-top: 40px;
}

.accordion-item {
    margin-bottom: 20px;
    margin-top: 20px;
    border: none;
    border-radius: 20px;
    background: #FFF;
}

.accordion-body {
    padding: 0 30px 30px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.accordion-button {
    padding: 30px;
    color: var(--2, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    border-radius: 20px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.accordion-button::after {
    background-image: url('../images/svg/add.svg');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/sub.svg');
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #FE8500;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    padding-bottom: 20px;
}

.accordion-button:focus {
    box-shadow: none;
}

.faqStext {
    font-weight: 700;
    text-align: start;
}

.hardest {
    text-align: start;
    padding-top: 10px;
}

/*-----------------------[ 10.Section Eight CSS ]------------------------*/
.section-realted-product {
    padding-bottom: 100px;
}

.related-pro-img {
    width: 100%;
}

.related-product-slider {
    margin-top: 40px;
}

.related-product-slider a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 15px;
}

.useful {
    text-align: center;
}

/*-----------------------[ 10.Section Responsive design Layout CSS ]------------------------*/

.resposnive-img-sub {
    border: 2px solid rgba(246, 130, 31, 0.3);
    text-align: center;
    padding: 50px;
    border-radius: 15px;
    transition: all 0.5s ease-in-out;
    height: 100%;
}

.resposnive-img-sub h3 {
    color: #000;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    padding: 20px 0 8px 0;
    text-align: center;
}

.resposnive-img-sub p {
    color: #232323;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    text-align: center;
}

.resposnive-img-sub img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(3818%) hue-rotate(0deg) brightness(102%) contrast(104%);
}

/*-----------------------[ 11.Section Nine CSS ]------------------------*/
.section-nine {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/home-img/full-shot.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100%;
    padding: 100px 0;
}

.Explore {
    text-align: center;
    color: #FFF;
    padding: 0;
}

.Explore span {
    color: #FE8500;
}

.admin-text {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding-top: 20px;
}

.buttonExpl {
    margin-top: 60px;
}

footer {
    text-align: center;
    padding: 20px 0;
    color: var(--2, #000);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

footer a {
    color: #FE8500;
}