/* global css */

@font-face {
    font-family: 'Aspekta';
    src: url('fonts/AspektaVF.ttf') format('truetype');
}

@font-face {
    font-family: 'Suisse Works';
    src: url('fonts/SuisseWorks-Bold.otf') format('OpenType');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Aspekta';
}

body p, h4, h1, h2, h3, h5, h6, span {
    margin: 0;
}

.animate__animated.animate__fadeInUp {
    --animate-duration: 1s;
  }


.heading{
    color: #000;
    font-family: 'Suisse Works';
    font-size: 48px;
    font-weight: 500;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.48px;
    margin: 0;
}

.heading-span{
    color: #EE6D25;
    font-family: "Suisse Works";
    font-size: 48px;
    font-weight: 500;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.48px;
    margin: 0;
}

.text{
    color: #000;
    font-family: 'Aspekta';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* nav bar */

header {
    background-color: white;
    padding: 32px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
}

.nav-links {
    display: flex;
    gap: 48px;
    padding: 14px 32px;
    list-style: none;
    border-radius: 8px;
    border: 1px solid #F5F5F5;
    background: #FFF;
    box-shadow: 0rem 0rem 0rem 0.0625rem rgba(239, 237, 232, 1),
    0rem 0.0625rem 0.125rem 0rem rgba(178, 170, 158, 0.32),
    0rem 0.1875rem 0.1875rem 0rem rgba(209, 205, 199, 0.24),
    inset 0rem -0.125rem 0rem 0rem rgba(240, 240, 239, 0.72);
}

.nav-links a {
    text-decoration: none;
    color: #767676;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #EE6D25;
}

.navbar-button  {
    padding: 14px 24px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    background: linear-gradient(
    180deg,
    rgba(241, 131, 70, 1) 0%,
    rgba(213, 87, 17, 1) 100%
  );
  box-shadow: 0rem 0.125rem 0rem 0rem rgba(241, 131, 70, 0.5),
    inset 0rem 0.125rem 0rem 0rem rgba(255, 255, 255, 0.25); 
    border: none;
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* hero section */

.hero{
    position: relative;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    height: 918px;
    border-radius: 0px 0px 40px 40px;
    margin-top: -300px;
}

.hero-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 46px;
    gap: 24px;
}

.hero-content h4{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    background: linear-gradient(91deg, #FFF 0%, #F5F5F5 30.12%, #FFF 63.74%, #F5F5F5 100%);
    box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.25), 0px 0px 0px 3px #F5F5F5;
}

.hero-content h1{
    font-family: 'Suisse Works';
    font-size: 50px;
    color: #555555;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -0.5px;
    width: 60%;
}

.hero-content h1 span{
    font-size: 60px;
    letter-spacing: -1.8px;
}

.hero-content p{
    text-align: center;
    width: 33%;
}

.hero-button{
    padding: 14px 24px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    background: linear-gradient(
    180deg,
    rgba(241, 131, 70, 1) 0%,
    rgba(213, 87, 17, 1) 100%
  );
  box-shadow: 0rem 0.125rem 0rem 0rem rgba(241, 131, 70, 0.5),
    inset 0rem 0.125rem 0rem 0rem rgba(255, 255, 255, 0.25); 
    border: none;
}

/* logo slider */

.logos-section{
    padding-top: 64px;
}

.logos-section p{
    text-align: center;
}

  .slider {
    margin-top: 32px;
    height: 100px;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .slider::before,
  .slider::after{
    position:absolute;
    background-image:linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    content:'';
    height:100%;
    width:25%;
    z-index:2;
    pointer-events:none;
  }
  .slider::before{
    left:0;
    top:0;
  }
  .slider::after{
    right:0;
    top:0;
    transform:rotateZ(180deg);
  }
  
  /*  IMPORTANT CODE BELOW */
  
  .slide-track {
    width: calc(150px * 20);
    display: flex;
    animation: scroll 20s linear infinite;
    justify-content: space-between;
  }
  
  .slide {
    height: 33px;
    display: grid;
    place-items: center;
    transition:0.5s;
    cursor:pointer;
  }
  
   .runwal{
    height: 60px;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-150px * 10));
    }
  }

/* About Prelaunch Reality */

.about-prelaunch{
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 86px 120px 40px;
    gap: 64px;
}

.about-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-content p{
    color: #767676;
    text-align: justify;
}

/* our-values */

.our-values{
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 40px 80px 40px;
    gap: 40px;      
}

.values-grid{
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.card{
    width: 327px;
    height: 641px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    border-radius: 188.5px;
    backdrop-filter: blur(65px);
    box-shadow: 4px 4px 8.8px -2px #0000002B;
    background: #EFEFEF96;
    align-items: center;
    padding: 80px 36px 0px 36px;
}

.card-title{
    color: #EE6D25;
    font-family: "Suisse Works";
    font-size: 32px;
    font-weight: 500;
    line-height: 52px; /* 116.667% */
    letter-spacing: -0.48px;
    margin: 0;
}

.line{
    width: 225px;
    height: 0.5px;
    background: #EE6D25;
}

.card p{
    color: #333;
    font-family: "Aspekta";
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 4px;
    letter-spacing: -0.48px;
    margin: 0;
}

.card span{
    color: #EE6D25;
    font-family: "Aspekta";
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.48px;
    line-height: 4px;
    margin: 0;
}

.card img{
    position: absolute;
    bottom: -10px;
    left: 0px;
}

.card-2 img{
    position: absolute;
    bottom: -10px;
    left: 5px;
}

.card-2 p{
    line-height: 36px;
}

.card-2 span{
    color: #EE6D25;
}

/* mission-vission */

.mission-vission{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    padding: 64px 40px 64px 40px;
    background: #F0F0F0;
}

.wrapper{
    display: flex;
    gap: 120px;
    justify-content: space-between;
}

.wrapper-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 50%;
}

.info-container h2{
    color: #696969;
    font-family: "Suisse Works";
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: -0.48px;
    margin-bottom: 16px;
}

/* location section */

.location{
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 40px 40px 40px;
    gap: 40px;
}

.location-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-container{
    display: flex;
    padding: 48px 80px 32px 80px; 
    gap: 20px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: #F5F5F5;
    box-shadow: 4px 4px 7px -2px #00000023;
    border-radius: 16px;
}

.location-container img{
    width: 402px;
}

.location-container p{
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
}

/* team */

.team p{
    width: 80%;
}


/* The Prelaunch Advantage */

.prelaunch-advantage{
    background: url("assets/The\ Prelaunch\ Advantage\ bg.png");
    padding: 48px 40px 80px 40px;
    gap: 24px;
}

.prelaunch-advantage .description{
    color: white;
    width: 33%;
    text-align: center;
}

.services-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.flip-box {
    background-color: transparent;
    width: 440px;
    height: 284px;
    border-radius: 24px;
    background-color: transparent;
    perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flip-box-front {
  background-color: #fff;
  box-shadow: 0px 229px 64px 0px rgba(166, 55, 7, 0.01), 0px 147px 59px 0px rgba(166, 55, 7, 0.11), 0px 83px 50px 0px rgba(166, 55, 7, 0.38), 0px 37px 37px 0px rgba(166, 55, 7, 0.64), 0px 9px 20px 0px rgba(166, 55, 7, 0.74);
  color: black;
  border-radius: 24px;
}

.flip-box-front h4{
    color: #000;
    font-family: Aspekta;
    font-size: 22px;
    font-weight: 550;
    line-height: 28px;
}

.flip-box-front img{
    margin-bottom: 24px;
  /* height: 50px;
  width: 50px; */
}

.flip-box-back {
  background-color: #ffffff;
  box-shadow: 0px 229px 64px 0px rgba(166, 55, 7, 0.01), 0px 147px 59px 0px rgba(166, 55, 7, 0.11), 0px 83px 50px 0px rgba(166, 55, 7, 0.38), 0px 37px 37px 0px rgba(166, 55, 7, 0.64), 0px 9px 20px 0px rgba(166, 55, 7, 0.74);
  color: #000;
  transform: rotateY(180deg);
  border-radius: 24px;
  padding: 16px 36px;
}

.flip-box-back p{
    font-style: italic;
}



/* projects */

.projects{
    position: relative;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 40px 120px 40px;
    gap: 40px;
    background: url('assets/projects-bg.png');
}


.projects-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr); 
    gap: 20px; 
}

.services-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.project-container{
    display: flex;
    padding: 8px 8px 16px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    border-radius: 20px;
    background: #FFF;
}

.project-name{
    display: flex;
    padding: 0px 8px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.project-name h4{
    color: #EE6D25;
    font-family: Aspekta;
    font-size: 22px;
    font-weight: 550;
    line-height: 28px; 
}

.arrow{
    padding: 19px;
    border-radius: 8px;
    background: linear-gradient(180deg, #F18346 0%, #D55711 100%);
    box-shadow: 0px 2px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 2px 0px 0px rgba(241, 131, 70, 0.50);
}

/* calculator */

#loan-calculator-section{
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    align-items: center;
    justify-content: center;
}

.loan-calculator {
    margin-top: 50px;  
    width: 98%;
    background: #fff;
    box-shadow: 12px 12px 50px -11px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: #14213d;
    overflow: hidden;
    display: flex;
    flex-direction: row;
  }
  
  .loan-calculator,
  .loan-calculator * {
    box-sizing: border-box;
  }
  
  .loan-calculator .top {
    background: #eaeaea;
    color: #fff;
    padding: 24px;
    width: 50%;
  }
  
  .loan-calculator .top h2 {
    margin-top: 0;
  }
  
  .loan-calculator form {
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
  }  
    
  
  .loan-calculator .label {
    margin-bottom: 12px;
    color: black;
  }
  
  .loan-calculator form input {
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 10px;
    width: 100%;
    color:#000;
  }
  
  .loan-calculator .result {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    padding: 24px;
  }
  
  .loan-calculator .result .left {
    width: 100%;
    padding: 8px 32px;
  }
  
  .loan-calculator .left h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
  }
  
  .loan-calculator .result .value {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(20, 33, 61, 0.2);
  }
  
  .loan-calculator .result .value::before {
    content: "\20B9";
    font-size: 27px;
    font-weight: 400;
    margin-right: 6px;
    opacity: 0.4;
  }
  
  .loan-calculator .group1{
    padding-top: 32px;
    text-align: center;
  }  
    
  .loan-calculator .group1 .calculate-btn {
    background: #EE6D25;
    color: #fff;
    border: none;
    padding: 8px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    margin: 24px 0;
  }
  
  .loan-calculator .right {
    width: 50%;
  }
  
  @media (max-width: 650px) {
    #loan-calculator-section{
        padding: 40px 16px;
    }
    
    .loan-calculator{
        flex-direction: column;
        width: 100%;
    }

    .loan-calculator .top{
        width: 100%;
        padding: 18px;
    }
  
    .loan-calculator .result {
      flex-direction: column;
      text-align: center;
      padding: 18px;
    }
  }

/* testimonials */

.testimonials{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 64px;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    gap: 20px;
    animation: scroll-carousel 15s linear infinite;
    margin-top: 60px;
}

.testimonial {
    display: flex;
    flex: 0 0 30%;
    min-width: 30%;
    padding: 16px 16px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 32px; */
    border-radius: 12px;
    border: 2px solid #F5F5F5;
    background: #F5F5F5;
    box-shadow: 4px 4px 7px -2px rgba(213, 87, 17, 1);
}

.testimonial p{
    /* width: 90%; */
}

.testimonial-carousel-2{
    display: flex;
    gap: 20px;
    animation: scroll-carousel-reverse 15s linear infinite;
    margin-top: 20px;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes scroll-carousel-reverse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-carousel::after {
    content: '';
    display: flex;
}

/* career page  */

.career-form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 44px;
  padding: 120px 102px;
  background: url("assets/career-bg.png") no-repeat center center/cover;
}

.form-heading{
    width: 72%;
}

.career-h1{
    font-size: 72px;
    line-height: 92px;
}
.career-h1 span{
    font-size: 72px;
    line-height: 92px;
}

.form-container {
  background: #E6E6E6;
  padding: 54px;
  border-radius: 28px;
  box-shadow: 10px 11px 16.9px -4px #00000040;
  max-width: 730px;
  width: 100%;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 22px;

}

.form-group input {
  width: 100%;
  padding: 22px;
  border: none;
  border-radius: 100px;
  outline: none;
  font-size: 18px;
}

.form-group input[type="file"] {
  padding: 5px;
}

.btn {
  display: block;
  width: 100%;
  padding: 20px 24px;
  background: #EE6D25;
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 24px;
}

.btn:hover {
  background: #0056b3;
}

.success-message {
  display: none;
  color: #28a745;
  text-align: center;
  margin-top: 15px;
}

/* footer */
.footer{
    display: flex;
    gap: 358px;
    padding: 50px 40px;
    align-items: flex-start;
    background: url('assets/footer-bg.png') no-repeat center center/cover;
}

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info img{
    width: 287px;
    height: 155px;

}

.orange-heading{
    color: #EE6D25;
    font-family: Aspekta;
    font-size: 22px;
    font-weight: 550;
    line-height: 28px;
}

.footer-links{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-top: 24px;
}
.footer-section{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.footer-section ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.footer-section a{
    text-decoration: none;
}

.icon-list{
    display: flex;
    gap: 16px;
}

