@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
  --color-primary: 26 45 162;
  --color-primary-rgb: 26, 45, 162;
  --color-bg: 248 250 252;
  --color-text: 15 23 42;
}

.dark {
  --color-primary: 96 165 250;
  --color-primary-rgb: 96, 165, 250;
  --color-bg: 2 6 23;
  --color-text: 226 232 240;
}

input,
textarea,
select,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-decoration: none;
  outline: none;
  list-style: none;
  padding: 0;
}

a,
a:hover,
a:focus,
*:focus-visible {
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  text-decoration: none;
  outline: none;
}

button:focus {
  outline: none;
  border: none;
}

button:focus,
input:focus {
  box-shadow: none !important;
}

button {
  cursor: pointer;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  text-wrap: balance;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: 'Google Sans', sans-serif;
}

.custome-blur {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.hero-banner {
  background: url() no-repeat center center;
  background-size: cover;
}

.hero-banner::after {
  content: '';
  background: #0095d07a;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.dot-bg {
  background-image: url(../images/chess-scaled.png);
  background-size: 5%;
}

.card-blur {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--color-primary-rgb), 0.3);
}

.feature-banner {
  background: url('../images/feature.jpg') no-repeat center center;
  background-size: cover;
}

.testimonial-swiper {
  padding: 10px 0 40px 0;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: #e6e6e6;
  opacity: 1;
  width: 5px;
  height: 5px;
  transition: all 0.2s;
}

/* Safari fix */

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto !important;
  display: flex;
}

.testimonial-swiper .swiper-slide article {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: rgba(var(--color-primary-rgb), 0.9);
  width: 24px;
  border-radius: 6px;
}

@media (max-width: 768px) {

  .testimonial-swiper .swiper-button-next,
  .testimonial-swiper .swiper-button-prev {
    display: none;
  }
}

.testimonial-swiper {
  overflow: visible !important;
}

.swiper-pagination {
  bottom: -55px !important;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 333;
}

.anim-t {
  animation: stick 0.6s linear !important;
}

@keyframes stick {
  0% {
    opacity: 0%;
  }

  50% {
    opacity: 50%;
    background-color: rgba(var(--color-primary-rgb), 0.5);
  }

  100% {
    opacity: 100%;
  }
}

.parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(12, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.div1 {
  grid-area: 1 / 3 / 7 / 4;
}

.div2 {
  grid-area: 7 / 3 / 13 / 4;
}

.div3 {
  grid-area: 4 / 2 / 10 / 3;
}

.div4 {
  grid-area: 1 / 1 / 7 / 2;
}

.div5 {
  grid-area: 7 / 1 / 13 / 2;
}

.active-nav {
  position: relative;
}

.active-nav::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
}

.c-bg {
  background-color: rgba(var(--color-primary-rgb), 0.5);

  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll-hide::-webkit-scrollbar {
  display: none;
}

.scroll-hide {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and old Edge */
}


.form-message {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background-color: #d4edda;
  border-left: 4px solid #28a745;
}

.error-message {
  background-color: #f8d7da;
  border-left: 4px solid #dc3545;
}