@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: Roboto, sans-serif;
  overflow-x: hidden;
}

.sticky-top {
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero,
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero {
  background-color: #e6f0ff;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
}

.icon-box {
  text-align: center;
}

.icon-box i {
  font-size: 3rem;
  color: #0d6efd;
}

.footer {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
}

.animate {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.animate.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-title {
  font-weight: bold;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.slick-slide {
  display: flex;
  justify-content: center;
}

.testimonial-slider .card {
  height: 100% !important;
}

.quotes i {
  color: #ffc107;
}

.testimonial-slider .card-text {
  font-size: 15px;
}
.testimonial-slider {
  position: relative;
  padding-bottom: 60px; /* Space for arrows */
}

.slick-prev,
.slick-next {
  position: absolute !important;
  bottom: 0;
  top: auto;
  transform: translateY(50%);
  z-index: 1;
}

.slick-prev {
  left: 45%;
}

.slick-next {
  right: 45%;
}

.slick-prev:before,
.slick-next:before {
  color: #333;
  font-size: 30px;
}

.navbar {
  background: transparent;
  z-index: 1000;
}

.section-about {
  height: 713px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.nav-link {
  transition: color 0.3s ease;
  color: black;
}

.nav-link:hover {
  color: #0d6efd !important;
}

.Main-Dashboard {
  left: 7rem;
  width: 940px;
  position: relative;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(50);
  }
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

.bg-footer {
  background-color: #e4e4e4;
}

.bg-about {
  background-color: #00c591;
}
.text-about {
  color: #565656;
}
.bg-contact {
  background-color: #2f80ed;
}

.transparent-input {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.transparent-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.transparent-input:focus {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}

.btn-1 {
  background-color: #00c591;
  color: white;
  border: none;
  width: 221px;
  height: 50px;
}
.accordion-button.custom-faq {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #007bff; /* Blue by default */
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #00b894; /* Green when open */
  background-color: #fff;
  box-shadow: none;
}

.accordion-item {
  border: none;
  border-radius: 12px;
}

.accordion-button::after {
  content: "+";
  font-size: 24px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  background-image: none;
}

.accordion-button:not(.collapsed)::after {
  content: "–";
  transform: rotate(0deg);
  background-image: none;
}

.floating-img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.card:hover {
  background-color: #00c591;
  color: #fff;
}

.card:hover p,
.card:hover h5,
.card:hover h3,
.card:hover small,
.card:hover .quotes {
  color: #fff !important;
}

.card:hover .testimonial-img {
  border: 2px solid #fff;
}

.testimonial-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.card {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.map-section-img {
  background-image: url("./assets/map.png"); /* Replace with your image URL */
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 655px;
  display: flex;
  align-items: center;
}

section.arc-section {
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Ensures full viewport height */
  text-align: center;
}

.circle-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 2rem auto; /* Reduce margin to avoid excessive spacing */
}

.arc-svg {
  position: absolute;
  z-index: 1;
}

.arc-circle {
  cx: 150;
  cy: 150;
  r: 130;
  stroke-width: 40;
  stroke-linecap: round;
  stroke-dasharray: 565;
  stroke-dashoffset: 140;
  fill: none;
  stroke: #aaa;
  transition: stroke 0.3s ease;
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: #fff;
  border: 4px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px 10px;
  z-index: 2;
  overflow: hidden; /* Prevent content from spilling out */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-circle h1 {
  font-size: 44px;
  margin: 0;
}

.inner-circle h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.inner-circle p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Colors and hover effects */

.red .arc-svg {
  top: -1rem;
  left: -3rem;
  transform: rotate(-9deg);
}
.red:hover .arc-circle {
  stroke: #ff2c2c;
}
.red:hover .inner-circle {
  border-color: #ff2c2c;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.3);
}
.red .inner-circle h1 {
  color: #ff2c2c;
}

.blue .arc-svg {
  top: -2rem;
  left: -2.9rem;
  transform: rotate(170deg);
}
.blue:hover .arc-circle {
  stroke: #00c5f1;
}
.blue:hover .inner-circle {
  border-color: #00c5f1;
  box-shadow: 0 0 60px rgba(0, 197, 241, 0.3);
}
.blue .inner-circle h1 {
  color: #00c5f1;
}

.yellow .arc-svg {
  bottom: -3rem;
  left: -2.6rem;
  transform: rotate(-5deg);
}
.yellow:hover .arc-circle {
  stroke: #ffd600;
}
.yellow:hover .inner-circle {
  border-color: #ffd600;
  box-shadow: 0 0 60px rgba(255, 214, 0, 0.3);
}
.yellow .inner-circle h1 {
  color: #ffd600;
}

.dark-blue .arc-svg {
  top: -2rem;
  right: -3.8rem;
  transform: rotate(180deg);
}
.dark-blue:hover .arc-circle {
  stroke: #0a2c66;
}
.dark-blue:hover .inner-circle {
  border-color: #0a2c66;
  box-shadow: 0 0 60px rgba(10, 44, 102, 0.3);
}
.dark-blue .inner-circle h1 {
  color: #0a2c66;
}

@media (max-width: 576px) {
}
.pricing-card {
  height: 500px;
  background-color: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: ease-in-out;
  text-align: left;
}

.pricing-card:hover {
  background: #cdf7d9;
}

.pricing-card ul li {
  color: #565656;
  list-style: none;
}

.navbar-custom {
  background: linear-gradient(to right, #b6d3f8, #e6f0ff);
}
.custom-check-list li::before {
  content: "\2713"; /* Unicode checkmark ✔ */
  color: white;
  background-color: #565656;
  border-radius: 50%;
  padding: 4px 4px 4px 4px;
  font-weight: bold;
  margin-right: 10px;
}
