/*!
 * Template Name: Hostina Template
 * Author: hostk.com
 * Version: 1.0
 * Description: Modern Responsive Bootstrap Hosting Template
 * Created: 2025
 */
@font-face {
  font-family: Nunito;
  src: url(../vendor/webfonts/Nunito-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Custom Colors */
  --color-primary: #0c2e43;
  --color-light-gray: #ebebebb2;
  --color-secondary: #28a745;
  --color-text: #6e6e6e;
  --color-text-dark: #a7a7a7;
  --radius-16: 16px;
  --radius-24: 24px;
  --radius-28: 28px;
  --radius-18: 18px;
  --drop-shadow: 9.34px 16.01px 28.02px 0 #184f780d,
    -9.34px -16.01px 28.02px 0 #184f780d;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-special: 9.34px 16.01px 28.02px 0 #184f780d,
    -9.34px -16.01px 28.02px 0 #184f780d;
  --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* Global Styles */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html,
body,
.scroll-area,
* {
  scrollbar-width: thin;
  scrollbar-color: #7fb6d6 #0b384b;
}
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
*::-webkit-scrollbar-track {
  background: #111;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 2px solid #111;
  background: linear-gradient(
    to bottom,
    #e0e0e0 0%,
    #cfcfcf 25%,
    #bfbfbf 50%,
    #9a9a9a 75%,
    #444444 100%
  );
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    to bottom,
    #f5f5f5 0%,
    #dcdcdc 25%,
    #c8c8c8 50%,
    #a5a5a5 75%,
    #333333 100%
  );
}
body {
  font-family: "Nunito", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-primary);
  background-color: #ffffff;
  overflow-x: hidden;
  transition: all 0.3s linear;
}
img {
  width: 100%;
  height: auto;
}
img.cover {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
li {
  list-style-type: none;
  padding-left: 0;
}
figure {
  margin-bottom: 0;
}
section {
  overflow: hidden;
}
/* Section Styles */
.section-heading {
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
  line-height: 1.3;
  color: var(--color-primary);
}
.description {
  font-size: 2.2rem;
  line-height: 1.5;
  color: var(--color-text);
}
.dashb-btn {
  outline: none;
  width: initial;
  white-space: nowrap;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition-base) !important;
}
.primary-btn,
.secondary-btn {
  padding: 1.3rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: var(--radius-16);
}
.primary-btn {
  background-color: var(--color-primary);
  color: #fff;
}
.primary-btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.secondary-btn {
  background-color: #fff;
}
.secondary-btn:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
}
.dashb-light-btn {
  border-radius: 8px;
  background-color: #0000001a;
  font-size: 1.4rem;
  padding: 8px 1rem;
}
.dashb-light-btn:hover {
  background-color: #08080830;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ellipse-lg {
  position: absolute;
  width: 11rem;
  height: 11rem;
  background-color: #0000000f;
  border-radius: 50%;
  z-index: -1;
}
.ellipse-sm {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background-color: #0000000f;
  border-radius: 50%;
  z-index: -1;
}
/* ///////////////////////// UTILITY CLASSES ///////////////////// */
.clr-text {
  color: var(--color-text);
}
.clr-text-dark {
  color: var(--color-text-dark);
}
.shadow-normal {
  box-shadow: var(--drop-shadow);
}
/*//////////////// Animations /////////////////////*/
/* Hide elements before animation */
[data-animate] {
  opacity: 0;
}
/* Show elements after animation */
[data-animate].animated {
  opacity: 1;
}
.card-hover-effect:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.btn-pulse {
  position: relative;
  overflow: hidden;
}
.btn-pulse-infinite {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* //////////////////// MEDIA QUESRIES ///////////////// */
/* ///////////////////////////////////////////////////// */
@media (min-width: 1600px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 70%;
  }
  .section-heading {
    font-size: 2.2rem;
  }
  .primary-btn {
    font-size: 15px;
  }
}