@import url('https://fonts.googleapis.com/css?family=Syne:400,500,700');
@import url('https://fonts.googleapis.com/css?family=Satisfy:400,500,700');

/* @import url('https://fonts.googleapis.com'); */

/* html {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #545454;
} */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: 'Sora', sans-serif;
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #f57c00; 
}
/* MAIN LAYOUT FIX */
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* REMOVE FLOAT (if you have it) */
.nav div.main_list {
    float: none;
}

/* ALIGN MENU */
.main_list {
    display: flex;
    align-items: center;
}

/* UL FIX */
.navlinks {
    display: flex;
    align-items: center;
}

/* SEARCH ICON */
.search-icon {
    width: 20px;
}
/* Navbar section */
.logo img {
    width: 185px;
}

/* NAVBAR */
.nav {
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 999;
    padding: 0 135px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav .logo {
    display: flex;
    align-items: center;
    height: 100%;
}

/* MENU WRAPPER */
.nav .main_list {
    height: 100%;
    display: flex;
    align-items: center;
}

/* NAV LINKS */
.navlinks {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

/* EACH ITEM */
.navlinks li {
    position: relative;
    padding: 0 20px;
}

/* LINK STYLE */
.navlinks li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    height: 100px;
}

/* FIXED DOT POSITION */
.navlinks > li > a::before {
    content: "";
    position: absolute;
    top: 30px;              /* above text */
    left: 100%;              /* center */
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid #fd7e14;
    border-radius: 50%;
    /* opacity: 1; */
    transition: 0.3s;
}

/* Show dot on hover */
/* .navlinks > li:hover > a::before {
    opacity: 1;
} */

/* HOVER COLOR */
.navlinks li a:hover {
    color: #fd7e14;
}

/* SEARCH ICON */
.search-icon img {
    width: 20px;
}

/* DROPDOWN */
.main_list .navlinks .nav-list ul {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    transform: translateY(10px);
    pointer-events: none;
    display: block;
    min-width: 210px;
    padding: 20px;
    box-shadow: 0 0 40px rgba(18, 24, 32, 0.1);
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    transition: 0.3s ease;
      list-style: none !important;
    font-size: 14px;
}

/* SHOW DROPDOWN */
.main_list .navlinks .nav-list:hover > ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  
}

/* DROPDOWN LINKS */
.main_list .navlinks .nav-list ul li {
    padding: 8px 0;
}

.main_list .navlinks .nav-list ul li a {
    color: #333;
    height: auto;
}

/* Home section */

.banner-section {
    width: 100%;
    height: 100vh;
    /* background-image: url(https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80); */
    background-position: center top;
	background-size:cover;
}

.navTrigger {
    display: none;
}



/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}



.affix {
    padding: 0px 160px;
    background-color: #121820;
}


/* Slideshow container */
/* Container for each slide */
.mySlides {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust height as needed */
  overflow: hidden;
}

/* The Wrapper for Image + Gradient */
.img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 1. The Blurred Image */
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%); 
  -webkit-filter: grayscale(100%);
  transform: scale(1.1); /* Prevents white edges from the blur */
}

/* 2. The Gradient Overlay (Your specific style) */
.img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / 75%), rgb(0 0 0 / 75%));
  z-index: 1;
}

/* 3. The Sharp Text Content */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Sits above the gradient and blur */
  color: white;
  /* text-align: center; */
  width: 100%;
  padding: 40px 160px 0px 160px;
}

/* Dots Styling (Optional cleanup) */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}



.active {
  background-color: #717171;
}

/* Fading animation */
/* .fade {
  animation-name: fade;
  animation-duration: 1.5s;
} */

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* banner section text */
.mil-mb-60 {
    margin-bottom: 50px !important;
}
.mil-subtitle{
    margin-top: 50px;
    font-size: 16px;
    display: inline-block;
   color: #fff;
    font-family: Syne, sans-serif !important;
    font-weight: 500;
}
.mil-accent{
    color:#fd7e14;
}
/* .mil-h1{
    font-size: 60px !important;
} */
.slogan{
    font-family: Syne,sans-serif !important;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 140%;
    text-transform: uppercase;
}
.slogan-small{
       font-family: Syne,sans-serif !important;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}
.mil-font-small{
       font-family: Satisfy, cursive !important;
      font-size: 26px;
  
}
.mil-font-3 {
    font-family: Satisfy, cursive !important;
      font-size: 32px;
 
  
}


.mil-button.mil-border {
    border-color: #f57c00;
    background-color: transparent;
}

.banner-btn {
    color: #fff;

    text-decoration: none;
    cursor: pointer;
    height: 70px ;
    padding: 0 60px ;
    font-family: Sora, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 0 #f57c00;
    border: 2px solid #f57c00;
    border-radius: 40px;
    transition: .2s cubic-bezier(0, 0, .3642, 1);
}
.banner-btn span{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.subtext{
    padding-left: 40px;
  width: 75%;
  color: rgb(255 255 255 / 50%);
  margin-bottom: 0px;
  text-align: justify;
}

.banner-subimg img{
    max-width: 650px;
    max-height: 100%;
}
.horizontal-line{
    margin-bottom: 50px;
    height: 2px;
    color: #f57c00;
        opacity: .8;
        width: 100%;
}
.text-width{
    width: 80%;
}

.card-section{
    margin-top: 80px;
}
.icon-box{
    display: flex;
   align-items: center;
/* justify-content: center; */
position: relative;
}
.mini-icon{
    padding-right: 15px;
}
.mini-icon img{
    max-width: 45px;
    height: 100%;
}
.icon-box h5{
    font-family: Syne, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffffc2;
}
.text-width-slogan{
    width: 100%;
}
.subtext-width{
    width: 100%;
}
.icon-box::after {
content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    left: 62px;
    bottom: 0;
    top: 35px;
    background-color: #f57c00;
    transition: 0.5s 
ease;
}


.lifecycle-section {
    
   
    padding: 90px 160px 60px 160px;
}
.lifecycle-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* 1. Reset and Base Styles */
.lifecycletext {
    font-family: 'Syne', sans-serif !important;
    width: 150px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row; /* Puts image above text */
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all 0.4s ease;
  text-transform: uppercase;
    font-weight: 600;
}

.lifecycletext img {
   width: 50px;
   padding-right: 10px;
}

/* 2. The Orange Circle (Initially Hidden) */
.lifecycletext:before {
    content: "";
    position: absolute;
    top: 7px; 
    left: calc(50%); /* Centers the 30px circle */
    z-index: -1; 
    transform: scale(0);
    border-radius: 50%;
    background-color: #f57c00;
    width: 25px;
    height: 25px;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

/* 3. Hover State: Triggers for the specific item */
.lifecycletext:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    transform: translateY(-5px); /* Moves specific text/img up */
}

.lifecycletext:hover:before {
    transform: scale(1);
}
.divider {
    width: 100%;
    height: 2px;
    background-color: rgba(18, 24, 32, .1);
    /* background-color: red; */
    position: relative;
}


 .divider:before {
    content: "";
    width: 25px;
    border-right: 5px solid #fff;
    height: 100%;
    background-color: #f57c00;
    position: absolute;
    top: 0;
    left: 0;
}
.divider:after {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 5px solid #fff;
}
.divider:after {
    content: "";
    width: 25px;
    /* border-right: 5px solid #fff; */
    height: 100%;
    background-color: #f57c00;
    position: absolute;
    top: 0;
    /* left: 0; */
}
/* Service section */
.card-lifecycle{
padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
}
.lifecycle-deco {
    background-image: url(./assets/deco-1.png);
    z-index: -1;
    width: 220px;
    height: 140px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}
.card-heading {
font-family: Syne, sans-serif;
    color: #121820;
    font-weight: 600;
    line-height: 140%;
    /* text-align: center; */
}
.card-heading span{
font-family: Syne, sans-serif;

}
.lifecycle-detail{
  /* text-align: center; */
    font-family: Sora, sans-serif;
    line-height: 30px;
    color: rgb(18 24 32 / 70%);
}
.lifecycle-item{
 padding: 30px 0;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
}
.lifecycle-item-first{
 /* padding: 30px 0; */
 padding-top: 30px;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
   
}
.icon-first{
   width: 12% !important;
}
/* .text-first{
     width: 37% !important;
  
} */
.lifecycle-icon{
    width: 25%;
    padding-left: 30px;
}
.lifecycle-icon-frame {
    width: 45px;
    height: 45px;
}
.lifecycle-icon-frame img{
    max-width: 40px;
    max-height: 40px;
}
.lifecycle-icon-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lifecycle-icon-frame:before {
      width: 20px;
    height: 20px;
    content: "";
    background-color: #f57c00;
    border-radius: 50%;
    position: absolute;
  bottom: -2px;
    right: -3px;
    z-index: -1;
}
 .lifecycle-text {
    width: 75%;
    padding-right: 30px;
}
.lifecycle-heading{
        margin-top: 10px;
        font-size: 25px;
            font-family: Syne, sans-serif;
    color: #121820;
    font-weight: 600;
    line-height: 140%;
}
.lifecycle-digit{
        margin-right: 15px;
        /* font-size: 25px; */
}
.lifecycle-text p, .lifecycle-text-first p{
        font-family: Sora, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(18, 24, 32, .4);
    line-height: 170%;
}
/* contact section */
.contact-section{
    position: relative;
    /* margin-top: 20vh; */
   
}
.contact-padding{
        padding-top: 120px;
    padding-bottom: 0px;
}
.contact-bg{
        background: linear-gradient(180deg, #181e26 0, #121820 100%);
}
 .deco-acent {
    background-image: url(./assets/contact-deco-2.png);
    z-index: 1;
}
.contact-img {
    /* background-image: url(../img/deco/deco-1.svg); */
    /* z-index: -1; */
    position: absolute;
    top: 0;
     right: 10%;
     background-repeat: no-repeat;
    background-size: contain;
        width: 220px;
    height: 140px;
}
.contact-heading{
    margin-bottom: 90px;
    font-family: Syne, sans-serif;
    font-weight: 600;
    line-height: 140%;
}
.mil-mb-30 {
    margin-bottom: 30px !important;
}
.input-frame label {
    display: block;
    font-family: Syne, sans-serif;
    font-weight: 500;
}
.input-frame input,.input-frame textarea {
    height: 70px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}
.input-frame input, .input-frame textarea {
    width: 100%;
    font-family: Sora, sans-serif;
    color: #fff;
    font-weight: 400;
   
    background-color: transparent;
}
.input-frame textarea {
    padding-top: 20px;
}
.input-frame span{
    margin-right: 15px;
}
.attach-frame {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.attach-frame i {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    font-size: 18px;
    color: #fff;
    margin-right: 15px;
}

.policy-text{
    font-size: 14px;
    color: rgb(255 255 255 / 50%);
}
.checbox-frame{
    display: flex;
}
.checbox-frame .checkbox{
    position: relative;
    top: -12px;
    margin-right: 10px;
}
.contact-button {
    width: 100%;
        background-color: #f57c00;
    border-color: transparent;
    cursor: pointer;
    height: 70px;
    padding: 0 60px;
    font-family: Sora, sans-serif !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 0 #f57c00;
    border: 2px solid transparent;
    border-radius: 40px;
    transition: .2s cubic-bezier(0, 0, .3642, 1);
    font-weight: 500;
}

.footer-section{
    position: relative;
        background-color: #121820;
}
.footer-bg{
 position: absolute;
    top: 30px;
    left: 0;
    object-fit: contain;
    object-position: top;
    width: 100%;
    height: 100%;
    opacity: .08;
    pointer-events: none;
}
.mil-light-soft {
    color: rgba(255, 255, 255, .5);
}
   .footer-content{
padding-top: 120px;
    padding-bottom: 90px;
   }
   .footer-heading{
    font-size: 28px;
           font-family: 'Syne', sans-serif !important;

   }
   .rounded-input{
    height: 70px;
    padding: 0 30px;
    border: none;
    border-radius: 40px;
    color: #121820;
    background-color: #fff;
    font-family: Sora, sans-serif;
    font-size: 16px;
    width: 100%;
    font-weight: 400;
   }
   .footer-button{
    width: 100%;
        cursor: pointer;
    height: 70px;
    padding: 0 60px;
    font-family: 'Sora', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 0 #f57c00;
    border: 2px solid transparent;
    border-radius: 40px;
    transition: .2s cubic-bezier(0, 0, .3642, 1);
    background-color: #f57c00;
    border-color: transparent;
   }
.footer-divider {
    width: 100%;
    height: 2px;
       background-color: rgba(255, 255, 255, .1);
}
.footer-links{
    position: relative;
    padding: 50px 0px;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.social-links{
    display: flex;
    padding-left: 0px !important;
    margin-bottom: 0px;
}
.footer-links ul li, .social-links li {
    list-style-type: none;
    margin-right: 30px;
     
}
.adapt-links a{
color: #fff;
   text-decoration: none !important;
}
.additional-links{
    display: flex;
}
.additional-links li a{
    color: #fff;
   text-decoration: none !important;
}
.footer-bottom {
   
    filter: brightness(80%);
    position: relative;
    background-color: #121820;
    height: 90px;
}
.footer-bottom .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom .container p {
    opacity: .3;

}
.bottom-txt{
    color: #fff;
    font-size: 13px;
}
/* How it started */
.work-section{
        padding: 40px 160px 0px 160px;
}
.how-it-works {
    padding-top: 120px;
    padding-bottom: 90px;
        background-color: rgba(18, 24, 32, .05);
        position: relative;
}
.suptitle{
        font-family: 'Syne', sans-serif;
    font-size: 16px;
    position: relative;
    padding-left: 15px;
    color: #121820;
    font-weight: 500;
}
.suptitle:before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    top: 9px;
    border-radius: 50%;
    background-color: #f57c00;
    
}
.workheading{
    margin-top: 30px;
        margin-bottom: 90px;
        font-family: Syne, sans-serif;
    color: #121820;
    font-weight: 600;
    line-height: 140%;
}
.workheading span{
 font-family: Syne, sans-serif;
}
.work-icon-box{
       display: flex;
    align-items: center;
    /* height: 50px; */
}
.work-icon-frame{
    display: flex;
   
    justify-content: center;
   
    align-items: center;
    position: relative;
   
}
.work-icon-frame img{
 width: 25px;
    height: 25px;
        margin-right: 15px;
}
.work-icon-box h5{
    font-family: Syne, sans-serif;
    color: #121820;
    font-weight: 600;
    line-height: 140%;
}
.work-box p{
       font-family: Sora, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(18, 24, 32, .4);
    line-height: 170%;
        text-align: justify;
            width: 90%;
}
.work-icon-frame:before {
        width: 13px;
    height: 13px;
    content: "";
    background-color: #f57c00;
    border-radius: 50%;
    position: absolute;
      bottom: -1px;
    right: 11px;
    z-index: -1;
}
.btn-container{
    text-align: end;
}
.mil-button, input[type=submit] {
    cursor: pointer;
    height: 70px;
    padding: 0 60px;

    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 0 #f57c00;
    border: solid 2px transparent;
    border-radius: 40px;
    text-decoration: none;
    transition: .2s cubic-bezier(0, 0, .3642, 1);
}
.mil-button span{
    font-family: "Sora", sans-serif;
    font-size: 16px;
    color: #121820;
    font-weight: 500;
}
.mil-button:hover{
    color: #f57c00;
}
.mil-link{
    
    display: inline-flex;
    align-items: center;
        font-size: 16px;
    white-space: nowrap;
    text-decoration: none;
}
.learn-btn{
        font-family: 'Syne', sans-serif !important;
    color: #121820;
    font-weight: 600;
}

.mil-link i {
    font-size: 12px;
    color: #fff;
    margin-left: 15px;
    background-color: #f57c00;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .2s cubic-bezier(0, 0, .3642, 1);
    transition: .2s cubic-bezier(0, 0, .3642, 1);
}
.line{
    position: relative;
}
.slogan-line::after{
   content: "";
    position: absolute;
    width: 125px;
    height: 2px;
  left: 510px;
    bottom: 0;
    top: 35px;
    background-color: #f57c00;
    transition: 0.5s ease;
}

