@font-face {
  font-family: "Montserrat Local";
  src: url("/fonts/Montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("/fonts/Montserrat-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("/fonts/Montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white-color: #ffffff;
  --theme-color: #00d7ff;
  --bs-body-font-size: 18px;
}

html {
  font-size: 18px;
  scroll-padding-top: 10px;
}

body {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Montserrat Local", Arial, sans-serif;
}

section[id],
footer[id],
div[id] {
  scroll-margin-top: 10px;
}

.topbar {
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 1100;
}

.topbar a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
}

.topbar a:hover {
  color: #7dd3fc;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.menu-toggle-input {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle .bar {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.menu-toggle .bar:nth-child(1) { transform: translateY(-6px); }
.menu-toggle .bar:nth-child(2) { transform: translateY(0); }
.menu-toggle .bar:nth-child(3) { transform: translateY(6px); }

.main-menu {
  display: flex;
  gap: 14px;
  align-items: center;
}

.main-menu a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
}

.main-menu a:hover {
  color: #7dd3fc;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(7, 17, 38, 0.58), rgba(7, 17, 38, 0.58)), url("/images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero h5 { font-size: 1rem; margin-bottom: 0.8rem; }
.hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem; }
.hero p { font-size: 1rem; max-width: 720px; margin-bottom: 1.3rem; }

.card-soft {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.contact-page {
  background: #0f172a;
  color: #e2e8f0;
}

.contact-page .card-soft {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
}

.contact-page h2,
.contact-page h4,
.contact-page .form-label {
  color: #fff;
}

.contact-page a { color: #93c5fd; }

.contact-page .form-control,
.contact-page .form-select {
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
}

.site-footer {
  background: #0b1220;
  color: #cbd5e1;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer a { color: #93c5fd; }

.footer-copyright {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.footer-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  white-space: normal;
  width: 100%;
  text-align: center;
}

.footer-menu a {
  color: #e2e8f0;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 18px !important;
}

.footer-menu a:hover { color: #7dd3fc; }

.cmn--btn,
.btn,
.btn-primary,
button.btn,
button.btn-primary {
  border-radius: 10px;
  padding: 13px 30px 14px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color) !important;
  text-transform: capitalize;
  background: linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 215, 255) 30%, rgb(67, 58, 193) 100%) !important;
  display: inline-block;
  transform: skew(-21deg);
  border: none;
  box-shadow: none;
}

form input,
form select,
form textarea {
  border: 1px solid var(--theme-color) !important;
  transform: skewX(-17deg);
  width: 100%;
  background-color: transparent !important;
  outline: none;
  box-shadow: none !important;
  color: var(--white-color) !important;
  padding: 20px 20px 20px 10px;
  border-radius: 4px !important;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.py-5.bg-light form input,
.py-5.bg-light form select,
.py-5.bg-light form textarea {
  color: #0f172a !important;
  background-color: #ffffff !important;
}

.py-5.bg-light form input::placeholder,
.py-5.bg-light form textarea::placeholder {
  color: #64748b;
}

.pricing__domain {
  background: #ffffff;
}

.section__header.section-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.host__domian__wrapper .pricing__itmes {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.4rem 1rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  --theme-color: #2563eb;
}

.host__domian__wrapper .pricing__itmes::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background-color: var(--theme-color);
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  border-radius: 10px;
  opacity: 0.08;
  pointer-events: none;
}

.host__domian__wrapper .pricing__itmes:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.header-pricing {
  text-align: center;
  margin-bottom: 1rem;
}

.header-pricing .title {
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.header-pricing .theme3 {
  color: #2563eb;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.header-pricing .theme3 .small {
  font-size: 0.82rem;
  color: #64748b;
}

.header-pricing .month {
  color: #64748b;
  font-size: 0.9rem;
}

.pricing__itmes ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.pricing__itmes ul li {
  padding: 0.42rem 0;
  border-bottom: 1px dashed #e2e8f0;
  color: #334155;
}

.pricing__itmes ul li span {
  font-weight: 700;
  color: #0f172a;
}

.activities-section {
  background: #ffffff;
}

.activity-item {
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0 inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  border-radius: 12px;
  text-align: center;
  background-color: var(--white-color);
  width: 100%;
  position: relative;
  z-index: 1;
  transform: skewX(-17deg);
  padding: 22px 18px;
  height: 100%;
}

.activity-item h5 {
  margin-bottom: 0.6rem;
  color: #0f172a;
  transform: skewX(17deg);
}

.activity-item p {
  margin-bottom: 0;
  color: #475569;
  transform: skewX(17deg);
}

.team-section {
  background: #f8fafc;
}

.user__items {
  background: var(--white-color);
  border-radius: 20px;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 100%;
}

.user__items::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background-color: var(--theme-color);
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  border-radius: 20px;
  opacity: 0.08;
  pointer-events: none;
}

.user__items .name,
.user__items .role,
.user__items p {
  position: relative;
  z-index: 1;
}

.user__items .name {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.user__items .role {
  display: inline-block;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.65rem;
}

.user__items .avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
  background: #e2e8f0;
}

#features .card-soft {
  background: var(--white-color);
  border-radius: 10px;
  padding: 40px 20px !important;
  transition: all 0.4s;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transform: skewX(-4deg);
  border: none;
}

#features .card-soft::before {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  content: "";
  border-radius: 0 0 0 50px;
}

#features .card-soft h5,
#features .card-soft p {
  transform: skewX(4deg);
}

@media screen and (max-width: 575px) {
  .hero {
    min-height: 30vh;
    padding: 1.8rem 0;
    text-align: left;
  }

  .hero h1 {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }

  .btn,
  .btn-primary,
  button.btn,
  button.btn-primary {
    font-size: 15px;
    padding: 10px 16px 11px;
    transform: none;
    width: 100%;
    text-align: center;
  }

  form input,
  form select,
  form textarea {
    transform: none;
    padding: 12px 10px;
  }

  .activity-item,
  #features .card-soft,
  .pricing__itmes {
    transform: none;
    padding: 16px 12px !important;
  }

  #features .card-soft h5,
  #features .card-soft p,
  .activity-item h5,
  .activity-item p {
    transform: none;
  }

  .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: visible;
    white-space: normal;
    width: 100%;
    padding-bottom: 4px;
    text-align: center;
  }

  .footer-menu a { font-size: 16px !important; }

  #features .col-md-6,
  #features .col-lg-4,
  #activities .col-md-6,
  #activities .col-lg-3,
  #team .col-md-6,
  #team .col-lg-4,
  #pricing .col-md-6,
  #pricing .col-lg-4,
  #pricing .col-xl-3,
  #contact .col-lg-8,
  #contact-page .col-lg-5,
  #contact-page .col-lg-7 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  :root { --bs-body-font-size: 16px; }
  html {
    font-size: 16px;
    scroll-padding-top: 20px;
  }
  section[id],
  footer[id],
  div[id] {
    scroll-margin-top: 20px;
  }

  .topbar .container {
    max-width: 100%;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu-toggle {
    display: inline-flex !important;
    z-index: 1300;
    margin-top: 10px;
  }

  .main-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    background: #0b1220;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 8px;
    padding: 12px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1200;
    text-align: center;
  }

  .main-menu a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    text-align: center;
  }

  .menu-toggle-input:checked ~ .main-menu {
    display: flex !important;
  }

  .menu-toggle-input:checked + .menu-toggle .bar:nth-child(1) { transform: rotate(45deg); }
  .menu-toggle-input:checked + .menu-toggle .bar:nth-child(2) { opacity: 0; }
  .menu-toggle-input:checked + .menu-toggle .bar:nth-child(3) { transform: rotate(-45deg); }
  .footer-menu a { font-size: 16px !important; }
}
