:root {
    --primary-color: #308AF8;
    --secondary-color: #fff;
    --font-family: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

/* Apple Laptops screen size */
@media only screen and (max-width: 1280px) {
    .container {
        max-width: 800px;
        margin: 0 auto;
    }
  }
  
@media only screen and (max-width: 500px) {
  .container {
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
  }
}


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    font-family: "Manrope", sans-serif;
}

.text-blue {
    color: var(--primary-color) ;
}

.logo {
    height: 60px;
    width: auto;
}

.banner-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #308AF8; */
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: bottom;
    color: #fff;    
    padding: 172px 0 64px;
    border-bottom-left-radius: 72px;
    border-bottom-right-radius: 72px;
    margin-top: -96px;
    transition: all 0.3s ease-in-out;
}

.headlines {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) { 
    .headlines {
        font-size: 28px;
    }   
}




.banner-section .container .subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.book-call {
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 20px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
    padding-left: 30px;
    padding-right: 30px;
}

.book-call:hover {
    background-color: black;
    color: var(--secondary-color);
    scale: 1.20;

}

.book-call:hover .hide-on-hover {
    display: none;
}

.show-on-hover {
    display: none;
}

.hide-on-hover {
    display: inline;
}

.book-call:hover .show-on-hover {
    display: inline;
}

.banner-section .container .brand-logos {
    gap: 24px;
}

.banner-section .container .logo {
    height: 47.89px;
    width: auto;
    margin-bottom: 20px;
}

.banner-section .container .banner-inner {
    width: 100%;
    max-width: 840px;
    display: flex;
    flex-direction: column;
    gap: 155px;
    position: relative;
    z-index: 1;
}

.banner-section .container .banner-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

@media (max-width: 768px) {

    .banner-section {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        padding: 132px 0 32px;
    }

    .banner-section .container .subtitle {
        font-size: 12px;
        font-weight: 400;
    }

    .banner-section .container .logo {
        height: 39.78px;
    }

}

/* grains in #f0eef5 color */



.who-we-help {
    background: var(--primary-color) url(../images/grains.png) repeat;
    font-family: var(--font-family);
    border-radius: 56px;
    padding: 40px 40px;
}

.who-we-help .title {
    font-size: 48px;
    font-weight: 600;
}

.what-we-do-title {
    font-size: 48px;
    font-weight: 600;
}

.who-we-help .items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 0;
    margin-top: 40px;

    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.what-we-do-text {
    font-size: 16px;
    font-weight: 400;
}

.who-we-help .items img {
    height: 60px;
    width: auto;
}

.who-we-help .items .item-title {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {

    .who-we-help {
        padding: 20px 20px;
        border-radius: 40px;
    }

     .who-we-help .title {
        font-size: 28px;
        font-weight: 600;
    }

    .what-we-do-title {
        font-size: 28px;
        font-weight: 600;
    }

    .who-we-help .items {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }

    .who-we-help .items img {
        height: 40px;
    }

    .who-we-help .items .item-title {
        font-size: 14px;
    }
}

.scroll-item-1 {
  background: linear-gradient(#0072ff, #9fc4fa);
  border-top: 2px solid white;
  padding: 60px 60px;
  border-radius: 50px;
  max-width: 1200px;
}

.scroll-item-1 .divider {
  background-color: #fff;
  height: 1px;
  margin: 10px 0px;
}

/* Scroll Animation */

  .scroll-section {
    position: relative;
    height: 100vh;
  }
  
  .wrapper {
    height: 100vh;
  }
  
  .scroll-item {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0%;
    overflow: hidden;
  }
   
  .scroll-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .vertical-section .wrapper {
    flex-direction: column;
  }
  
  .horizontal-section .wrapper {
    flex-direction: row;
  }
  


/*  */
  .contact-section {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .form-label {
        font-size: 0.95rem;
    }

    .form-control, .form-select {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #ccc;
        box-shadow: none;
    }

    .form-control:focus, .form-select:focus {
        border-color: #007bff;
        box-shadow: none;
    }

/*  */

/*  */
  footer ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }

  footer a {
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

/*  */

.hover-overlay:hover {
    background-color: #007bff3a;
}

/* pure CSS Marquee START */

@keyframes slide-top {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide-bottom {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.logos {
  overflow: hidden;
  padding: 21.83px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

@media screen and (max-width: 768px) {
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
  }

  .logos:before {
    background: linear-gradient(
      to right,
      #ffffff 0%,
      rgba(248, 248, 248, 0) 100%
    );
  }

  .logos:after {
    border-radius: 10px;
    background: linear-gradient(
      to left,
      #ffffff 0%,
      rgba(248, 248, 248, 0) 100%
    );
  }
}

.logos:hover .logos-slide-top {
  animation-play-state: paused;
}

.logos-slide-top {
  display: inline-block;
  animation: 20s slide-top infinite linear;
}

.logos-slide-top img {
  height: 99px;
  margin: 0 10.915px;
}

.logos:hover .logos-slide-bottom {
  animation-play-state: paused;
}

.logos-slide-bottom {
  display: inline-block;
  animation: 20s slide-bottom infinite linear;
}

.logos-slide-bottom img {
  height: 99px;
  margin: 0 10.915px;
}

/*  */
@media (max-width: 600px) {
  .logos-slide-top img,
  .logos-slide-bottom img {
    height: 72px;
    margin: 0 8px;
  }
}

/* pure CSS Marquee END */


/*  */

.card {
  position: sticky;
  top: 200px;
  border: 0;
  background: none;  
}

.card__inner {
  will-change: transform;
  background: white;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
  transform-origin: center top;
}

.cards {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: repeat(var(--cards-count), var(--card-height));
  gap: 40px 0;
}

.card__image-container {
  display: flex;
  width: 40%;
  flex-shrink: 0;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.card__content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.card__title {
  padding: 0;
  margin: 0;
  font-size: 60px;
  font-weight: 600;
  color: #16263a;
}

.card__description {
  line-height: 1.4;
  font-size: 24px;
  color: #16263a;
}

.space {
  height: 250px;
}

.space--small {
  height: 40vh;
}

@media (max-width: 600px) {
  .card__inner {
    flex-direction: column;
  }

  .card__image-container {
    width: 100%;
  }

  .card__image {
    aspect-ratio: 16 / 9;
  }

  .card__title {
    font-size: 32px;
  }

  .card__description {
    font-size: 16px;
  }

  .card__content {
    padding: 30px 20px;
  }
}

/* Carousel Start */

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 10px;
  margin: auto;
}

.carousel-1 {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide-1 {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: var(--primary-color); */
  border: none;
  color: var(--primary-color);
  padding: 10px;
  cursor: pointer;
  font-size: 2rem;
  z-index: 1;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background: rgba(0,0,0,0.8);
}

/* Carousel End */