* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0px;
}

:root {
  --light-blue-color: #036dbc;
  --dark-blue-color: #20282d;
  --para-color: #212529;
  --light-green-color: #16a34a;
}

body {
  /* background-color: #f5f5f5; */
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

img {
  max-width: 100%;
}

.fixed-image {
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Red Hat Display", serif !important;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: var(--dark-blue-color);
}

h2 {
  font-size: 48px;
  line-height: 1.1;
}

h4 {
  font-size: 30px;
}

a {
  font-weight: 500;
}

a,
a:hover {
  text-decoration: none;
  color: #007bff;
}
/* P tag */

.theme-para,
p {
  color: var(--para-color);
  font-weight: 400;
  line-height: 26px;
  font-size: 16px;
  font-family: "DM Sans", sans-serif !important;
}

p:last-child {
  margin-bottom: 0;
}

/* Theme Button (<a> tag) */

/* <a href="#" class="theme-button"> Client Login </a> */

.theme-button,
.blue-theme-button {
  background-color: var(--dark-blue-color);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.blue-theme-button {
  background-color: var(--light-blue-color);
}

.theme-button::before,
.blue-theme-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.theme-button:hover::before,
.blue-theme-button:hover::before {
  left: 100%;
}

.theme-button:hover,
.blue-theme-button:hover {
  background-color: var(--light-blue-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  transition: all 0.4s;
}
.theme-button:hover {
  background-color: var(--dark-blue-color);
  box-shadow: none;
}

/* Global Slick Carousel Dots */

.slick-dots li {
  margin: 0 8px;
}

.slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background: gray !important;
  border: none;
  transition: all 0.3s ease;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button {
  background: var(--dark-blue-color) !important;
  transform: scale(1.3);
}

.theme-slider-prev {
  left: -35px;
}

.theme-slider-next {
  right: -35px;
}

/* Custom Arrow Styles */
.cusom-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--dark-blue-color);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(32, 40, 45, 0.2);
}

.cusom-slider-arrow:hover {
  background: var(--light-blue-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(32, 40, 45, 0.3);
}

@media (max-width: 768px) {
  .cusom-slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
