@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Rubik", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #172541;
}

p {
    line-height: 2;
    font-size: 15px;
    color: #565872;
}

a {
    text-decoration: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* HERO AREA */

.hero-area {
    min-height: 100vh;
    background-color: #000;
   background: url(https://i.ibb.co/ymBHmnMQ/we.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.hero-area:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(12, 12, 70, 0.7);
    z-index: -1;
}

.hero-area:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(https://i.postimg.cc/sXx64DzR/overlay-pattern.png);
    background-repeat: repeat;
    z-index: -1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.header .logo img {
    height: 80px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.main-menu ul li a {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    margin: 15px 7px;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu ul li a.nav-link {
    padding: 5px 0;
}

.main-menu ul li a.btn-menu {
    background: linear-gradient(to right bottom, #fb8133, #f53434);
    padding: 10px 30px; 
    border-radius: 30px;
    text-transform: uppercase;
}

.active::before {
    content: '';
    width: 30px;
    height: 3px;
    background: #fb8133;
    position: absolute;
    bottom: 0;
    left: calc(50% - 15px);
    opacity: 1;
}

/* START HERO Section */

.hero-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 45%;
}

.hero-content h1 {
    font-size: 55px;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-content a.btn-hero {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin: 5px;
    color: #ffffff;
}

.hero-content a.btn-contact {
    background: linear-gradient(to right bottom, #fb8133, #f53434);
}

.hero-content a.btn-watch {
    background-color: #ffffff30;
}

/* HERO AREA END */

/* SERVICE AREA START */
.service-area {
    padding: 140px 0;
}

.service-area .section-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fb8133;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 30px;
    margin-bottom: 15px;
}

.service-box {
    display: flex;
    margin: 0 -15px;
}

.service-item {
    padding: 0 15px;
}

.service-item-inner {
    border: 1px dashed #eee;
    padding: 50px 30px;
    text-align: center;
}

.service-item-inner .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #f8f8f8;
    border-radius: 50%;
    color: #fb8133;
    padding: 20px;
    position: relative;
    margin-bottom: 40px;
    transition: 0.3s;
}

.service-item-inner .icon::after {
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px dashed #eee;
    top: -5px;
    left: -5px;
    position: absolute;
    z-index: -1;
}

.service-item-inner h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.service-item-inner:hover .icon, 
.service-item .active .icon {
    background-color: #fb8133;
    color: #ffffff;
}

.service-item .active {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

/* FEATURES AREA */
.features-area {
    width: 100%;
    display: flex;
}

.features-img {
    background: url(https://i.postimg.cc/Ykb5HzLJ/prod.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-basis: 50%;
    border-radius: 0 50px 50px 0;
}

.features-content {
    flex-basis: 50%;
    padding: 100px 5%;
}

.features-content .section-intro {
    text-align: left;
}

div.features-icon {
    width: 70px;
    height: 70px;
    background: rgba(251, 129, 51, 0.1);
    border-radius: 50%;
    color: #fb8133;
    padding: 20px;
    float: left;
}

.features-item.item-1 {
    margin-bottom: 30px;
}

.features-item-content {
    margin-left: 90px;
}

.features-item-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features-item-content p {
    font-size: 14px;
    line-height: 1.8;
}

/* BANNER AREA */
.banner-area {
    padding: 140px 0;
}

.banner {
    display: flex;
    margin: 0 -15px;
}

.banner > .section-intro {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 15px;
}

.banner > .section-right-img {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 15px;
    position: relative;
}

img {
    max-width: 100%;
}

.banner .section-right-img::before {
    content: '';
    width: 100px;
    height: 200px;
    background: url(https://i.postimg.cc/wjYrYpXh/dots2.png);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.banner .section-right-img::after {
    content: '';
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fb8133;
    position: absolute;
    z-index: -1;
    top: -50px;
    right: 0;
    opacity: 0.1;
}

.banner .section-para {
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-block;
    background: linear-gradient(to right bottom, #fb8133, #f53434);
    padding: 14px 35px;
    color: #fff;
    border-radius: 30px;
    box-shadow: -15px 15px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.banner-btn:hover {
    background: #ffffff;
    color: #fb8133;
    border-color: #fb8133;
    box-shadow: none;
}

/* PROCESS AREA */
.process-area {
    padding-bottom: 140px;
}
.fixed-bg-area {
    padding: 140px 0;
    background: url(https://i.postimg.cc/JhPYXH9q/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.fixed-bg-area::before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(https://i.postimg.cc/sXx64DzR/overlay-pattern.png);
    position: absolute;
    top: 0;
    left: 0;
}

.fixed-bg-area::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #0c0c46;
    opacity: 0.7;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
}

.content-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.process-up-icon {
    width: 60px;
    height: 60px;
    background: #ffffff30;
    margin: 0 auto;
    color: #ffffff;
    padding: 10px;
    border-radius: 50%;
}

.content-box .section-heading {
    font-size: 40px;
    margin-top: 30px;
    color: #ffffff;
}

.over-item-box {
    display: flex;
    margin: 0 -30px;
}

.over-area {
    margin-top: -100px;
    z-index: 2;
    position: relative;
}

.over-item {
    padding: 0 30px;
}

.over-item-inner {
    padding: 60px 30px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.over-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 10px;
    background: rgba(251, 129, 51, 0.05);
    color: #fb8133;
    position: relative;
    margin-bottom: 40px;
    border-radius: 50%;
    padding: 20px;
}

.over-icon::after {
    content: '';
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: absolute;
    background-color: #fb8133;
    opacity: 0.05;
    top: -15px;
    left: -15px;
}

.over-heading {
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.over-heading span {
    font-size: 12px;
    color: #fb8133;
    margin-right: 2px;
}