*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: vh;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: #f8f5ed;
  color: #2d2d2d;
  text-align: left;
  height: 100vh;
}

hr {
  width:100%;
  height:2px;
  border-top:1px solid #ccc;
}

a.btn {
  font-weight:700;
}

.container {
  margin-top: 20px;
  background: white;
  width: 100%;
  /*padding: 2rem;*/
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

h1 {
  color: #6c63ff;
  margin-bottom: 0.5rem;
  font-size: 2em;
}

h2 {
  font-size: 1.7rem;
  color: #2d2d2d;
}

p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.cta-button {
  background: linear-gradient(to right, #6c63ff, #5a54d1);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #5a54d1, #6c63ff);
}

.navbar {
  width: 100%;
  background-color: #6c63ff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .logo a {
  font-weight:700;
}

.navbar .logo a:hover {
  color:#f2f2f2;
}

.navbar .nav-links {
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00d1b2;
}

footer {
  background: white;
  padding: 5px;
  margin-top: 10px;
  text-align: center;
}

footer p {
  margin-bottom: 1.2em;
  line-height: 1.2;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
}

.wrapper .sidebar {
  position: relative;
  width: 100%;
  float: left;
  padding: 30px;
}

.wrapper .sidebar-icon {
  display: none;
}

.wrapper .content {
  position: relative;
  width: 100%;
  padding: 15px;
  float: left;
  background: #f2f2f2;
}

.wrapper .sidebar,
.wrapper .content {
  transition: margin 200ms ease-out;
}

.wrapper .sidebar-icon {
  margin-right: -18px;
  visibility: hidden;
  height: 0 !important;
}

/******** Custom CSS *********/
h1,
h2,
h3 {
  font-weight: 700 !important;
}

h4,
h5,
h6 {
  font-weight: 400 !important;
}

.btn-square {
  width: 40px;
  height: 40px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 50px;
  height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-primary {
  color: #ffffff;
}

.typed-cursor {
  font-size: 20px;
  color: #646464;
}

.back-to-top {
  position: fixed;
  display: none;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1;
  font-size: 30px;
  right: 30px;
  bottom: 30px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  color: #78cc6d;
}

.back-to-top i:hover {
  color: #141414;
}

.back-to-top {
  animation: action 1s infinite alternate;
}

@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

.title::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #78cc6d;
}

.progress {
  height: 5px;
}

.progress .progress-bar {
  width: 0px;
  transition: 2s;
}

.service-item i {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #78cc6d;
  border-radius: 75px;
  background: #ffffff;
  color: #78cc6d;
  transition: 0.5s;
}

.service-item:hover i {
  background: #78cc6d;
  color: #ffffff;
}

.portfolio-item .portfolio-btn {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #141414;
  opacity: 0;
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  top: 30px;
  left: 30px;
}

.portfolio-item i {
  opacity: 0;
  transition: 0.3s;
  transition-delay: 0.3s;
}

.portfolio-item:hover i {
  opacity: 1;
}

.testimonial-carousel .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.testimonial-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
}

.testimonial-carousel .owl-dot.active {
  background: #78cc6d;
}

.contact-form .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.checkmark-list {
  list-style: none;
}

.checkmark-list li:before {
  color:green;
  font-weight:700;
  content: '✓ ';
}

@media (max-width: 500px) {
  .navbar .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (min-width: 768px) {
  .wrapper .content {
    padding: 30px 0px 30px 30px;
  }
  .wrapper .content::before,
  .wrapper .content::after {
    position: fixed;
    content: "";
    width: 100%;
    height: 30px;
    background: #f2f2f2;
    z-index: 9;
  }
  .wrapper .content::before {
    top: 0;
  }
  .wrapper .content::after {
    bottom: 0;
  }
  .wrapper .sidebar {
    position: fixed;
    width: 350px;
    height: 100%;
    margin-left: -300px;
    float: left;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: gray;
    z-index: 9;
  }
  .wrapper .sidebar:hover {
    margin-left: 0px;
  }
  .wrapper .sidebar-text {
    display: none;
  }
  .wrapper .sidebar-icon {
    display: flex;
  }
  .wrapper .content {
    position: relative;
    width: calc(100% - 50px);
    margin-left: 50px;
    float: right;
  }
  .wrapper .sidebar::-webkit-scrollbar {
    width: 7px;
  }
  .wrapper .sidebar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  }
  .wrapper .sidebar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 7px;
  }
}

.calendly-badge-widget .calendly-badge-content {
  border-radius:10px !important;
}

#chatbase-bubble-button {
   background-color: #6A0DAD !important;
  color: #FFFFFF !important;
  border:none !important;
  bottom:75px !important;
}

#chatbase-bubble-button {
 background-color: #8133CC !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .wrapper .sidebar {
    z-index: 99;
  }
  .wrapper .sidebar-text,
  .wrapper .sidebar:hover .sidebar-icon {
    visibility: hidden;
    height: 0 !important;
  }
  .wrapper .sidebar-icon,
  .wrapper .sidebar:hover .sidebar-text {
    visibility: visible;
    height: 100% !important;
  }
}

@media (min-width: 992px) {
  .wrapper .sidebar {
    margin: 0;
  }
  .wrapper .content {
    width: calc(100% - 350px);
    margin-left: 350px;
  }
}

@media (max-width: 1140px) {
  .wrapper .content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .wrapper .content {
    padding: 15px;
  }
}