@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url(layout.min.css);
html {
    font-size: 16px;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    font-family: "Bebas Neue", sans-serif;
}

:root {
    --white: #ffffff;
    --black: #000;
    --theme-color: #f5be23;
    --primary: #c99503;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.67;
    margin-bottom: 2rem;
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4 {}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
    position: relative;
}


/* Home Page CSS Start  */

.main-slider {
    height: 100vh;
    background-color: #000;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-prev,
.homeSlider .swiper-next {
    font-size: 1.125rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: auto;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    gap: 8px;
    bottom: 2rem;
}

.homeSlider .swiper-next {
    right: 5rem;
}

.homeSlider .swiper-prev {
    right: 10rem;
}

.homeSlider .swiper-next:hover,
.homeSlider .swiper-prev:hover {
    color: var(--theme-color);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.homeSlider .slide-inner:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.8;
    background: linear-gradient(355deg, black, transparent);
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 4.0rem;
    line-height: 1;
    text-transform: uppercase;
    margin: 8rem 0 3rem;
}

.bannerParaBox {
    background: #ffffff30;
    padding: 4rem 1.5rem;
    backdrop-filter: blur(7px);
    clip-path: polygon(0 0, 100% 0, 99% 90%, 90% 100%, 0 100%, 0% 50%);
    position: relative;
}

.bannerParaBox p {
    margin: 0;
    color: #fff;
    font-weight: 200;
}

.bannerParaBox p strong {
    font-weight: 700;
}

.bannerParaBox::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    height: 5px;
    width: 85%;
    margin: 2rem auto 0;
    border-radius: 10px;
}


/* About Sec */

h6 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

h6:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    width: 10px;
    height: 15px;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 28%);
    top: 2px;
}

h4 {
    font-size: 3.625rem;
    color: #000;
}

.abtContent {
    padding-left: 5rem;
}

.rotate-wrapper {
    width: 140px;
    /* adjust to match image */
    height: 140px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotate-circle {
    animation: rotateCircle 15s linear infinite;
    /* width: 100%; */
    /* height: 100%; */
}

.rotate-circle img {
    width: 100%;
    height: auto;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.countBox h3 {
    font-size: 7.3125rem;
    color: #000;
    margin: 0;
}

.countBox {
    border-top: 4px solid #000;
    margin-top: 2rem;
}


/* Services CSS */

.serviceSec {
    background: #f2f1eb;
}

.serBox {
    background: var(--theme-color);
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.2s ease-in;
}

.serBox img {
    width: 88px;
    height: 96px;
}

.serBox h3 {
    margin: 1.75rem 0;
    font-size: 2rem;
    color: #000;
}

.serBox p {
    color: #4D4D4D;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* ← change this to number of lines you want */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.serBox a {
    color: #000;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    font-size: 1.25rem;
}

.serBox a:hover {
    gap: 12px;
}

.serBox:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.serBox:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: var(--primary);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.serBox:hover:before {
    top: -35%;
    background-color: var(--primary);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.serBox:hover:after {
    top: -45%;
    background-color: var(--primary);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.serBox:hover {
    transform: scale(1.05);
}

.swiper-button-next {
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
    top: 0;
}

.swiper-button-prev {
    clip-path: polygon(0 0, 100% 0%, 83% 100%, 0% 100%);
    top: 0;
    left: auto;
    right: 4rem;
}

.serSlide {
    padding: 0rem 0 2rem;
}

.swiper-button-next,
.swiper-button-prev {
    transition: all 0.5s ease;
    top: -2rem;
    background: #000;
}

.serviceSlider {
    padding: 1rem 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--theme-color);
    color: #000;
}

.swiper-pagination {
    bottom: -1rem !important;
}


/* Vision Content CSS */

.visionSec {
    background: #131313;
}

.visionSec * {
    color: #fff;
}

.visionBox {
    border: 1px solid #fff;
    margin: 2rem 0;
    transition: all 0.5s ease;
    display: block;
}

.visionBox:hover {
    transform: scale(1.05);
}

.visionBox h3 {
    font-size: 6rem;
    color: #a39f9f;
    padding-left: 3rem;
}

.visionBox h3 span {
    color: #fff;
}

.visionContnt {
    display: flex;
    align-items: center;
}

.visionContnt a {
    padding: 1rem;
}

.visionContnt p {
    /* border-right: 1px solid #fff; */
    margin: 0;
    padding: 3.5rem;
}

.teamSec h4 {
    font-size: 40px;
    margin-bottom: 2rem;
}


/* Contact Form CSS */

.contactSec {
    background: #f2f1eb;
}

.leadForm label {
    display: block;
    font-family: "Roboto", sans-serif;
}

.leadForm input,
.leadForm textarea {
    height: 3rem;
    border: 1px solid #000;
    margin-bottom: 1rem;
    width: 100%;
    padding: 1rem;
}

.leadForm textarea {
    height: 170px;
}

.leadForm button {
    border: navajowhite;
}

.leadForm {
    background: #fff;
    padding: 4rem;
}

.leadForm h4 {
    margin-bottom: 1.25rem;
}


/* Home Page CSS End */


/* Inner Pages CSS Start */

.innerBanner {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.innerBanner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(4deg, #000000db, transparent);
}

.bannertext h1 {
    font-size: 7.8125rem;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.bannertext ul {
    display: flex;
    gap: 10px;
}

.bannertext ul li,
.bannertext ul li a {
    font-family: "Roboto", sans-serif;
    color: #fff;
}

.bannertext {
    padding-top: 8rem;
}

.abtImages {
    position: relative;
}

.abtImages .abtImgeOne {
    position: absolute;
    right: 0;
    bottom: -6rem;
}

.aboutInner {
    padding-bottom: 10rem;
}

.pillingSec {
    background: #fff;
    padding: 0;
    margin: 8rem 0 4rem;
}

.pillingSec .reveal {
    margin-top: -4rem;
}

.pillingSec h4 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.listStyle li {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 10px 0;
    font-family: "Roboto", sans-serif;
}

.colums {
    columns: 2;
}

.listStyle li i {
    font-size: 1.25rem;
    color: var(--theme-color);
}

.listStyle {
    margin-bottom: 2rem;
}

.serviceInner .row+.row {
    margin: 5rem 0;
}

.contactInfo {
    background: #F2F1EB;
    padding: 3rem 2rem;
}

.contactInfo .contactItems {
    display: block;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 1rem;
    color: #000;
}

.contactInfo .contactItems p {
    margin: 0;
}

.contactInfo .contactItems:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000;
    height: 40px;
    width: 2px;
}

.contactInfo h4 {
    margin-bottom: 2rem;
}

.contactInfo .contactItems:hover {
    color: var(--theme-color);
}

.mapSec iframe {
    filter: grayscale(1);
}

.ctaContact {
    background: url(../images/mix/19.png) bottom center / cover no-repeat;
}

.ctaContact * {
    color: #fff;
}

.ctaContact form {
    display: flex;
    align-items: center;
    border: 1px solid #ffffff78;
}

.ctaContact form input {
    border: navajowhite;
    padding: 1rem;
    background: transparent;
    width: 100%;
}

.ctaContact form button {
    display: flex;
    width: 50%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-left: 1px solid #ffffff78;
    align-items: baseline;
    gap: 10px;
    justify-content: center;
    font-size: 1.125rem;
}

.ctaContact h4 {
    margin: 0;
}

.serviceBoxesInner .serBox p {
    display: block;
    height: 190px;
}

.serviceiconImg {
    width: auto !important;
    height: auto !important;
    padding-bottom: 2rem;
}


/* Inner Pages CSS End */