@import 'bootstrap/dist/css/bootstrap.min.css';
@import '@fortawesome/fontawesome-free/css/all.min.css';

body {
  /* background-color: #000; */
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
label,
input,
button {
  font-family: 'Roboto', sans-serif;
}

.custom-scrollbar::-webkit-scrollbar {
  display: none;
}

.customstylebtn {
}

.custom-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hero-section {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  background-color: black;
  padding-top: 80px;
  padding-bottom: 80px; /* leave space for navbar */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b3a6e, #4fd1c5, #3b3a6e);
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.1;
}
.btn-custom {
  background-color: #4fd1c5;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 1.2rem 3rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background-color: #3bb8ab;
  color: #fff;
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.circle-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  transform: scale(1.19952) rotate(179.568deg);
}

.circle-2 {
  bottom: 5rem;
  right: 5rem;
  width: 12rem;
  height: 12rem;
  transform: scale(1.11962) rotate(72.3456deg);
}

.ai-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ai-inner-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ai-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4fd1c5, #3b3a6e);
  color: white;
  font-weight: bold;
}
.pricing-section {
  background: linear-gradient(to bottom, #3b3a6e, rgba(59, 58, 110, 0.9));
  position: relative;
  overflow: hidden;
}
/* Glowing background circles */
.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.circle-teal {
  top: 5rem;
  left: 5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(79, 209, 197, 0.4);
}
.circle-orange {
  bottom: 5rem;
  right: 5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(255, 122, 107, 0.3);
}
/* Card styles */
.pricing-card {
  z-index: 1;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.ai-message {
  border-radius: 1.5rem;
  padding: 1rem;
  font-size: 0.875rem;
  color: #3b3a6e;
}

.message-left {
  background: #f3f3fa;
}

.message-right {
  background: rgba(79, 209, 197, 0.1);
  margin-left: 2rem;
}
.hover-shadow:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-0.25rem);
  transition: all 0.3s;
}

.badge-red {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 3rem;
  height: 3rem;
  background: #ff7a6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.btn-hover-scale {
  transition: transform 0.2s ease-in-out;
}
.btn-hover-scale:hover {
  transform: scale(1.05);
}
.badge-white {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  background: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Navbar backdrop */
header {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
}
.star {
  color: #facc15; /* Yellow color for stars */
}
.testimonial-card {
  border-left: 4px solid;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 12px;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card-custom {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.card-custom:hover {
  transform: scale(1.05);
}
.card-best {
  background-color: #4fd1c5;
  color: #fff;
  border: 2px solid #fff;
  transform: scale(1.05);
}
.cta-bg {
  background: linear-gradient(to bottom, #fafafa, #f3f3fa, #3b3a6e);
}
.gradient-text {
  background: linear-gradient(to right, #4fd1c5, #ff7a6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blur-circle {
  filter: blur(40px);
  position: absolute;
  border-radius: 50%;
}
.btn-cta {
  background: #4fd1c5;
  color: #3b3a6e;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 1.2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background: rgba(79, 209, 197, 0.9);
  transform: translateY(-2px);
}
.countdown-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1rem;
}
.highlight-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.best-badge {
  background: #ff7a6b;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: bold;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}
.user-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Floating animation */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.floating-box {
  position: absolute;
  bottom: -1rem; /* -bottom-4 */
  right: -1rem; /* -right-4 */
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  background-color: #fff;
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 1.25rem 1.75rem rgba(0, 0, 0, 0.2); /* shadow-xl */
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatY 3s ease-in-out infinite;
}

.floating-box .title {
  font-weight: bold;
  color: #3b3a6e;
  font-size: 0.875rem; /* text-sm */
}

.floating-box .subtitle {
  font-size: 0.75rem; /* text-xs */
  color: #6b7280; /* gray-500 */
}
/* Floating up-down animation */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-left {
  animation: fadeInLeft 1s ease-out forwards;
}

/* Right side fade-in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  animation: fadeInRight 1s ease-out forwards;
}

  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .slide-down {
    animation: slideDown 0.8s ease-out forwards;
  }


.floating-circle {
  position: absolute;
  top: -1.5rem; /* matches -top-6 */
  left: -0.8rem; /* matches -left-6 */
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  background-color: #ff7a6b;
  border-radius: 50%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatY 3s ease-in-out infinite;
}
@keyframes rotateScale {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.rotating-circle {
  animation: rotateScale 6s linear infinite;
}
.floating-circle span {
  color: #fff;
  font-weight: bold;
}
.customtext {
  font-size: 48px;
  line-height: 48px;
}
.customtext33 {
  font-size: 72px;
}
@media (max-width: 768px) {
  .customtext33 {
    font-size: 38px;
  }
  .customtext {
    font-size: 30px;
    line-height: 30px;
  }
  .ai-inner-card {
    padding: 1rem;}
}
@media (max-width: 900px) {
  .container {
      max-width: 753px !important;
  }
}
@media (max-width: 576px) {
  .custom-padding-sm {
    padding: 35px !important;
  }
  .floating-circle {
    position: absolute;
    top: 15px; /* matches -top-6 */
    left: 0.8rem;
  }
  .floating-box {
    position: absolute;
    bottom: 1rem;
    right: 18px;
  }
  .ai-card {
    padding: 1rem;
  }
}
