/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Google Font */
    --roboto: 'Roboto', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --Inter: 'Inter', sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #f26631;
    --dark: #090909;
    --light-dark: #3e3e3e;
    --gray: #a9a9a9;
    --body-bg: #0d0d0d;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}


body {
    color: var(--white);
    font-size: 17px;
    font-family: var(--poppins);
    font-weight: 400;
    line-height: normal;
    background-color: var(--body-bg);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--roboto);
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

button {
    padding: 0;
    border: none;
    background: unset;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}

*+address,
*+dl,
*+fieldset,
*+figure,
*+ol,
*+p,
*+pre,
*+ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--white);
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: var(--white);
    font-size: 16px;
    opacity: 1;
}

main {
    overflow: hidden;
}

/* Reusable  + Customized CSS Start */
.btn {
    min-width: 276px;
    height: 84px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn--primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    color: var(--primary);
    background-color: transparent;
    border: 1px solid var(--primary);
}

.btn--sm {
    font-size: 18px;
    min-width: 230px;
    height: 74px;
}

.fs-1 {
    font-size: 80px !important;
    line-height: 1.1;
}

.fs-2 {
    font-size: 60px !important;
    line-height: 1.2;
}

.fs-3 {
    font-size: 55px !important;
}

.section__pretitle {
    font-size: 35px;
    color: #3e3e3e;
}

.text-gray {
    color: var(--gray) !important;
}

.linear-text {
    background: linear-gradient(to bottom, #ffffff 0%, #5c5c5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image-overlay {
    position: relative;
    z-index: -1;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.6;
}

/* Reusable  + Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.herader__wrapper {
    max-width: 1216px;
}

.header__top {
    padding: 12px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    gap: 6px;
}

.contact-link {
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.contact-link:hover {
    color: var(--primary);
}

.header--area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header__nav__link {
    padding: 26px 32px;
    font-size: 20px;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.header__nav__item:hover .header__nav__link {
    color: var(--primary);
}

.header__logo__link {
    max-width: 194px;
}

/* Dorpdown Menu */
.header__dropdown {
    position: relative;
}

.header__dropdown::after {
    content: '\2b';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.header__dropdown__content {
    width: 824px;
    min-height: 400px;
    background-color: var(--primary);
    padding: 14px;
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 24px;
}

.header__nav__item:hover .header__dropdown__content {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header__dropdown__btns__wrap {
    margin-top: 38px;
    padding-left: 16px;
    padding-right: 48px;
    height: 100%;
    gap: 38px;
}

.header__dropdown__btn {
    font-family: var(--roboto);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header__dropdown__btn:hover {
    opacity: 1;
}

.header__dropdown__thumbs__wrap {
    width: 53%;
    height: 100%;
}

.header__dropdown__thumb {
    transition: all 0.3s ease-in-out;
}

.header__dropdown__thumb:first-child {
    z-index: 1;
}

.header__dropdown__thumb:not(:first-child) {
    opacity: 0;
}

.header__dropdown__thumb.active {
    z-index: 2;
    opacity: 1;
}

/* Mobile Header */
.header__menu__btn,
.menu-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: 0;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px;
    transition: all 0.3s ease-in-out;
}

.header__menu__btn:hover,
.menu-close:hover {
    background-color: var(--primary);
    color: var(--white);
}

.menu .offcanvas {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.menu .offcanvas-header {
    padding: 24px 32px;
}

.menu .offcanvas-body {
    padding: 24px 32px;
}

.menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu__link {
    padding: 16px 0;
    color: var(--white);
    transition: all .3s ease-in-out;
}

.menu__item:hover .menu__link,
.menu__link[aria-expanded="true"] {
    color: var(--primary);
}

.menu__collapse__link {
    font-size: 15px;
    color: var(--white);
    padding: 12px 16px;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu__collapse__link:hover {
    color: var(--primary);
}

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
    min-height: 928px;
}

.hero--section::before,
.hero--section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000 0%, #0000 100%);
    z-index: -1;
}

.hero--section::after {
    background: rgba(0, 0, 0, 0.72);
}

.hero__wrapper {
    max-width: 960px;
}

.hero__content {
    padding-top: 80px;
}

.main__title__sm {
    font-size: 69%;
}

.hero__btn {
    padding-top: 110px;
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 About Section CSS Start */
/* =============================== */
.about--section {
    padding: 128px 0;
}

.about__wrapper {
    max-width: 1496px;
    gap: 64px;
}

.about__thumbs__wrap {
    height: 600px;
    padding-right: 32px;
}

.about__thumbs__inner {
    height: 100%;
}

.about__thumb--one {
    width: 67%;
    aspect-ratio: 1 / 0.895;
    top: 0;
    left: 25%;
}

.about__thumb--two {
    width: 53.5%;
    aspect-ratio: 1 / 1;
    left: 0;
    bottom: 0;
}

.about__thumb--three {
    width: 32%;
    aspect-ratio: 1 / 1.05;
    right: 0;
    bottom: 0;
}

.about__content {
    max-width: 496px;
}

/* =============================== */
/* :: 6.0 About Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Service CSS Start */
/* =============================== */
.service--section {
    padding: 100px 0px 120px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.service__title {
    margin-bottom: 80px;
}

.service__item {
    margin-bottom: 80px;
}

.service__item-thumb img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s;
}

.service__item-thumb {
    margin-bottom: 28px;
    overflow: hidden;
}

.service__item-content h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    font-size: 30px;
    line-height: 1.08;
}

.service__item:hover .service__item-thumb img {
    transform: scale(1.1);
}

/* =============================== */
/* :: 7.0 Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Secton Block CSS Start */
/* =============================== */

.sectionBlk--section {
    padding: 110px 0px 110px;
}

.sectionBlk__content {
    max-width: 575px;
}

.sectionBlk__content h2 {
    margin-bottom: 16px;
}

.sectionBlk__content p {
    margin-bottom: 25px;
    color: #a9a9a9;
}

.sectionBlk__thumb-obj {
    top: -40px;
    left: -58px;
    z-index: -1;
}

/* =============================== */
/* :: 8.0 Secton Block CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Parts CSS Start */
/* =============================== */

.parts--section {
    padding: 110px 0px 110px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.parts__content {
    text-align: center;
    margin-bottom: 48px;
}

.parts__wrapper {
    max-width: 810px;
    margin: 0 auto;
    width: 100%;
}

.parts__content h2 {
    margin-bottom: 15px;
}

.parts__content {}

form.parts__form {
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.inputBox__wrapper {
    flex-grow: 1;
}

.inputBox input {
    width: 100%;
    border: 1px solid #ffffff33;
    height: 100%;
    background: #000000c2;
    padding: 0px 24px;
    padding-right: 70px;
    font-size: 20px;
    color: #fff;
}

.inputBox input::placeholder {
    font-size: 20px;
}

.inputBox img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.inputBox {
    position: relative;
    height: 100%;
}

/* =============================== */
/* :: 9.0 Parts CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Footer CSS Start */
/* =============================== */

footer.footer {
    background: #000000;
}

.footer__top {
    padding: 62px 0px 100px;
}

.footer__widget h5 {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 20px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    width: 57px;
    height: 57px;
    border-radius: 50%;
}

.socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.socials a:hover {
    border-color: #f26631;
    background: #f26631;
}

.footer__menu li a {
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 2.5;
    font-family: var(--Inter);
}

.footer__menu-column2 {
    column-count: 2;
}

.footer__menu li a:hover {
    color: var(--primary);
}

.footer__bottom {
    padding: 20px 0px;
    border-top: 1px solid #ffffff1a;
}

/* =============================== */
/* :: 10.0 Footer CSS End */
/* =============================== */

.social a {
    margin-right: 10px;
    font-size: 40px;
    color: #fff;
}

.social a:hover {
    color: #dd6e40;
}

.text-gray a {
    color: #dd6e40;
}