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

:root {
  --header-height: 3.5rem;
  --first-color: hsl(230, 75%, 56%);
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(230, 25%, 80%);
  --body-font: "Syne", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-fixed: 100;
  --z-modal: 1000;
}

@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* -- */

.swiper-wrapper-1 {
  width: 100%;
  height: 500px;
  z-index: 1;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: rgb(2, 0, 36);
}

.swiper-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: blur(4px);
}

.text-overlay {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  padding: 10px;
  border-radius: 5px;
  z-index: 2;
  width: 50%;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.text-overlay h2 {
  color: white;
  font-size: 60px;
  font-weight: bold;
}

.text-overlay p {
  color: white;
}

.button-19 {
  align-items: center;
  background-color: #5764ec;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-19+.button-19 {
  margin-left: 20px;
}

.button-19:hover,
.button-19:focus {
  background-color: #1c2bcd;
  color: #ffffff;
}

.button-19:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

.button-19:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}

.both-button {
  display: flex;
}

.powered-by h2 {
  font-size: 38px;
  color: #000;
  font-weight: 800;
  margin-top: 150px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
}

.swipersecond {
  margin-top: 50px;
}

.swiper-tech-slide {
  background-color: var(--body-color);
  height: auto;
}

.swiper-wrapper-tech {
  transition-timing-function: linear;
}

.swipersecond img {
  height: 70px;
  width: auto;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.container-design {
  margin-top: 100px;
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.service-heading h6 {
  font-size: 15px;
  color: #ff561d;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  margin-top: 100px;
}

.service-heading h2 {
  font-size: 38px;
  color: #000;
  font-weight: 800;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 50px;
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background-color: var(--body-color);
    position: relative;
    overflow: hidden;
  }
  
  .services-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
    background-color: var(--body-color);
  }
  
  .card {
    margin: 20px !important;
    border-radius: 1px !important;
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12) !important;
    background-color: var(--body-color) !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    transition: transform 0.3s ease-in-out;
    width: 18rem !important; 
    height: 23.5rem !important; 
    text-decoration: none !important; 
    color: inherit !important;
  }
  
  .card:hover {
    transform: scale(0.95);
  }
  
  .card-body {
    position: relative;
    z-index: 2;
  }
  
  .card p {
    margin-top: 20px !important;
  }
  
  .card h5 {
    font-weight: bold;
  }
  
  .card .readMore {
    text-decoration: none;
    color: #ff561d;
    font-size: 17px;
    font-weight: 600;
  }
  
  .card-img-top {
    width: 150px !important;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 0px;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover .card-img-top {
    transform: scale(0.9);
  }
  
  .contact-support {
    background-image: url('Gradbg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

.contact-support h2 {
    font-size: 2.5rem;
    color: #dfdede;
    font-weight: 700;
    padding: 50px;
}

.contact-support p {
    font-size: 1.25rem;
    color: #dfdede;
    margin-top: -50px;
    margin-bottom: 20px;
}

@media (max-width: 1022px) {
  .swiper-wrapper-1 {
    margin-top: calc(var(--header-height) + 0px);
  }
}

@media (max-width: 1054px) {
  .text-overlay {
    left: 10%;
  }

  .text-overlay h2 {
    font-size: 40px;
  }

  .text-overlay p {
    font-size: 14px;
  }

  .swiper-wrapper-1 {
    height: 400px;
  }

  .button-18 {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 713px) {
  .text-overlay {
    left: 10%;
  }

  .text-overlay h2 {
    font-size: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .text-overlay p {
    font-size: 12px;
  }

  .swiper-wrapper-1 {
    height: 400px;
  }

  .button-18 {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 552px) {
  .text-overlay {
    left: 10%;
    width: 80%;
    text-align: center;
  }

  .text-overlay h2 {
    font-size: 30px;
    padding-top: 50px;
  }

  .text-overlay p {
    font-size: 12px;
  }

  .both-button {
    margin-top: 25px;
    margin-left: 8%;
  }

  .button-19 {
    font-size: 14px;
    align-items: center;
    margin-left: 8%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .swiper-wrapper-1 {
    margin-top: -40px;
  }
}

@media (max-width: 470px) {
  .contact-support h2 {
    font-size: 2rem;
  }
}