@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
    --primary-color: #FF5D3E;
    --secondary-color: #FF8926;
    --black: #000000;
    --dark-gray: #101010;
    --light-gray: #F5F5F5;
    --text-gray: #1E1E1E;
    --white: #FFFFFF;
}

body, html{
    overflow-x: hidden;
}

body {
    font-family: "Onest", sans-serif;
    color: var(--text-gray);
    background: var(var(--white));
    font-size: 16px;
    font-weight: normal;    
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
body::-webkit-scrollbar-thumb:hover {
    background: #3BA7A6;
}

p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

strong {
    font-weight: 600;
}

ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: all .5s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    text-decoration: none;
}

* {
    outline: none !important;
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    left: -50px;
    bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transition: background 0.5s;
    z-index: 999;
    transition: 0.5s ease;
}

.back-to-top img{
    transform: rotate(180deg);
    max-width: 20px;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--white);
}

.back-to-top.scrollfixed {
    left: 15px;
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease;
}

.back-to-top i {
    padding-top:8px;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #CCC;
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body#home-page{
    height: 100vh;
    overflow-y: hidden;
}

body#home-page{
    background: url('../images/banner-image.webp') center center no-repeat;
    background-size: cover;
}

header{
    background: var(--white);
    padding: 15px 0px;
    margin-top: 20px;
}

header ul.main-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header ul.main-menu li{
    list-style: none;
}

header.scrollfixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
    margin-top: 0px;
    animation: fadeInDown 2s;
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -200px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

body.padd-top{
    padding-top: 120px;
}

header ul.main-menu li a{
    font-size: 16px;
    font-weight: 400;
    padding: 0px;
    color: var(--black);
    text-decoration: none !important;
    transition: all .3s ease;
}

header ul.main-menu li:nth-child(2) a{
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-left: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
}

header ul.main-menu li a:hover, 
header ul.main-menu li.active a{
    color: var(--primary-color);
}

header #nav-icon {
  width: 40px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.6s ease-in-out;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 47px;
  display: none;
}

header.scrollfixed #nav-icon{
    top: 30px;
}

header #nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

header #nav-icon span:nth-child(1) {
  top: 0px;
}

header #nav-icon span:nth-child(2), header #nav-icon span:nth-child(3) {
  top: 14px;
}

header #nav-icon span:nth-child(4) {
  top: 28px;
}

header #nav-icon.open span:nth-child(1) {
  top: 14px;
  width: 0%;
  left: 50%;
}

header #nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

header #nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

header #nav-icon.open span:nth-child(4) {
  top: 14px;
  width: 0%;
  left: 50%;
}


.home-banner-content{
    height: calc(100vh - 185px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
h1{
    color: #EFEFEF;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    text-transform: capitalize;
}

.home-banner-content h1{
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

h2{
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    text-transform: capitalize;
}

h2.section-title span{
    background: linear-gradient(154deg, #FFBE0B -0.61%, #FFAF12 15.86%, #FF8926 46.44%, #FF5D3E 77.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3{
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    text-transform: capitalize;
    color: var(--black);
}

ul.list-style1 li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-gray);
    list-style: none;
}

ul.list-style1 li:before{
    content: '';
    position: absolute;
    left: 0px;
    top: 4px;
    width: 15px;
    height: 15px;
    background: url('../images/favicon.png') center center no-repeat;
    background-size: contain;
}

.home-banner-content p{
    color: #EFEFEF;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: capitalize;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.4);
    margin: 30px 0px;
}

.home-banner-content .btn-primary{
    border-radius: 150px;
    background-image: linear-gradient(to right, #FFBE0B 0%, #FFAF12  15%, #FF8926  30%, #FF5D3E  50%, #FF5D3E  65%, #FF8926  80%, #FFAF12  100%);    
    background-size: 200% auto;
    color: var(--white);
    padding: 10px 30px 10px 60px;
    position: relative;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    text-transform: capitalize;
    transition: all .6s ease;
    text-decoration: none !important;
    transition: 0.5s;
    max-width: fit-content;
}
.home-banner-content .btn-primary img{
    position: absolute;
    left: 20px;
    top: 8px;
    transition: all .6s ease;
}
.home-banner-content .btn-primary:hover{
    background-position: right center;
    box-shadow: 0px 4px 15px rgba(255, 93, 62, 0.7);
}   
.home-banner-content .btn-primary:hover img{
    transform: rotateY(180deg);
}

.btn-secondary{
   border-radius: 170px;
    background: linear-gradient(90deg, #EF454F 0%, #B33844 100%);
    background-size: 200% auto;
    color: var(--white) !important;
    padding: 10px 50px 10px 20px;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    transition: all .6s ease;
    text-decoration: none !important;
    max-width: fit-content;
    margin-bottom: 60px;
    display: inline-block;
}
.btn-secondary img{
    position: absolute;
    right: 15px;
    top: 9px;
    transition: all .3s ease;
}
.btn-secondary:hover img{
    right: 10px;
}

.btn-secondary.yellow-btn{
    background: #F6861F;
}

.btn-secondary.blue-btn{
    background: linear-gradient(91deg, #0BB6FF 4.42%, #009FE3 21.93%, #008AC5 52.99%, #076D99 87.17%);
}

.btn-secondary.green-btn{
    background: linear-gradient(90deg, #0DFF00 -69.16%, #066E00 100%);
}

.text-red span{
    background: linear-gradient(90deg, #EE464D 0%, #A7343B 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue span{
    background: linear-gradient(90deg, #0BB6FF 0%, #076D99 70.87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-green span{
    background: linear-gradient(173deg, #0DFF00 4.66%, #0BDD00 29.23%, #09B200 65.83%, #066E00 115.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-yellow{
    color: #F6861F;
}

section{
    padding: 100px 0px;
}

.inner-banner-desktop{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    height: 430px;
    overflow: hidden;
    text-align: right;
    width: 100%;
}

.inner-banner-desktop img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.show-desktop{
    display: block;
}

.show-mobile{
    display: none;
}

.team-image{
    border-radius: 16px;
}

.light-gray-bg{
    background: #EFEFEF;                                                                              
}

.vision-box{
    border-radius: 16px;
    border: 1px solid #FF5D3E;
    background: #FFF;
    padding: 30px;    
}

.vision-box img{
    margin-top: -70px;
    margin-bottom: 50px;
}

footer{
    background: #575656;
    padding: 10px;
    text-align: center;
    width: 100%;
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

body#home-page footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.global-logo-box{
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    overflow: hidden;
}

.global-logo-box p{
    margin-bottom: 0px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
    margin-top: 20px;
    color: var(--black);
}

.red-border{
    border: 1px solid #B20C06;
}

.yellow-border{
    border: 1px solid #F6861F;
}

.blue-border-box{
    padding: 1px;
    background: linear-gradient(0deg,rgba(7, 109, 153, 1) 0%, rgba(11, 182, 255, 1) 100%);
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

.green-border-box{
    padding: 1px;
    background: linear-gradient(0deg,#066E00 0%, #0DFF00 100%);
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

.border-box-content{
    background: var(--white);
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    overflow: hidden;
}


.green-border{
    border: 1px solid #0DFF00;
}

ul.icon-box-list{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

ul.icon-box-list li{
	list-style: none;
	text-align: center;
	padding: 20px;
	background: var(--white);
	border-radius: 16px;
	display: flex;
    align-items: center;
	justify-content: center;
    flex-direction: column;
    width: 30%;
	min-height: 190px;
	font-size: 20px;
	border-bottom: 5px solid #ffbe0b;
	transition: all 0.6s ease;
}

ul.icon-box-list li:hover{
	background: #ff5d3e;
	color: var(--white);
}

ul.icon-box-list li img{
	display: inline-block;
	margin: 0 auto;
	margin-bottom: 20px;
	transition: all 0.6s ease;
}

ul.icon-box-list li:hover img{
	filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
    .container {
        max-width: 98%;
    }
}

@media (max-width: 1200px){
    h1{
        font-size: 48px;
        line-height: 56px;
    }
    h2{
        font-size: 40px;
        line-height: 50px;
    }
    h3{
        font-size: 34px;
        line-height: 46px;
    }
    .home-banner-content p{
        font-size: 24px;
        line-height: 32px;
        margin: 20px 0px 40px 0px;
    }
}

@media (max-width: 960px){
    body#home-page{
        background: url('../images/banner-image-mob.webp') center center no-repeat;
        background-size: cover;
    }
    ul.icon-box-list li{
		width: 46%;
	}
}

@media (max-width: 767px){
    body.padd-top {
        padding-top: 93px;
    }
    section{
        padding: 60px 0px;
    }
    h1{
        font-size: 36px;
        line-height: 46px;
    }
     h2{
        font-size: 30px;
        line-height: 40px;
    }
    h3{
        font-size: 24px;
        line-height: 36px;
    }
    .home-banner-content p{
        font-size: 20px;
        line-height: 30px;
    }
    header #nav-icon {
        display: block;
    }
    header .logo img{
        max-width: 250px;
    }
    header ul.main-menu{
        position: fixed;
        right: -100%;
        top: 110px;
        height: 100%;
        width: 100%;
        display: block;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        padding: 20px;
        z-index: 9999;
        transition: all 0.6s ease;
    }
    header ul.main-menu li{
        display: block;
    }
	header ul.main-menu li a{
		padding: 10px 0px;
		display: block;
	}
    header ul.main-menu li:nth-child(2) a{
        margin: 0px 0px;
        border: none;
		padding: 10px 0px;
        border-top: 1px solid #b3b3b3;
        border-bottom: 1px solid #b3b3b3;
    }
    header ul.main-menu.active{
        right: 0;
    }
	
	.home-banner-content .btn-primary{
		font-size:20px;
		line-height: 30px;
	}
	.home-banner-content .btn-primary img{
		max-width: 27px;
	}
    .inner-banner-desktop{
        height: 300px;
    }

    .padd-top header ul.main-menu{
        top: 90px;
    }
    .show-desktop{
    display: none;
    }
	ul.icon-box-list{
		gap: 15px;
	}
	ul.icon-box-list li{
		width: 100%;
		font-size: 16px;
		min-height: inherit;
	}
    .show-mobile{
        display: block;
    }
    .vision-box img{
        max-width: 70px;
        margin-top: -50px;
        margin-bottom: 30px;
    }
}