.btn-gradient-blue {
  background-image: linear-gradient(to right, #0055ff, #00aaff, #0055ff); /* Blue gradient */
  background-size: 200% auto;
  color: var(--white);
}


/* Custom styles for carousel */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  text-align: center;
}

.carousel-indicators button {
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.carousel-indicators button:hover {
  opacity: 0.8 !important;
}

.carousel-indicators button.active {
  opacity: 1 !important;
}

/* Ensure content is above the image */
.carousel-item .row {
  position: relative;
  z-index: 2;
}

/* Add gradient overlay to ensure text visibility */
.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to right, rgba(25, 41, 60, 0.8) 0%, rgba(25, 41, 60, 0) 100%); */
  z-index: 1;
}

/* Ensure text is always visible */
.carousel-item .col-xl-6 {
  position: relative;
  z-index: 3;
}


/* ########################### new */
 

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.hero-section {
  background: linear-gradient(rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
  min-height: 90vh;
  padding-top: 80px;
}

.feature-card {
  border: none;
  transition: transform 0.3s ease;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.product-card {
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  padding: 1rem;
}

.product-card .bottom{
  position: absolute;
  bottom: 20px;
  margin-top: 2rem;
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.product-card .list-unstyled {
  padding-bottom: 4rem;
}

.case-study-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.case-study-overlay {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.integration-logo {
  height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
}

.integration-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.resource-card {
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 16rem;
  position: relative;
}

.resource-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.resource-card .btn{
  position: absolute;
  bottom: 20px;
  /* left: 50%;
  transform: translateX(-50%); */
}

.stats-counter {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-link {
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 8px;
}

.btn-outline-primary:hover{
 color: var(--primary-color);
}

.color-1{
  background: #1C75BA;
  color: #fff;
}

.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

/* Custom Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.color1 {
  background-color: rgba(28, 117, 186,0.5);
}
.color2 {
  background-color: #fdd97d;
}
.color3 {
  background-color: rgba(139, 197, 64,0.5);
}
.color4 {
  background-color: #34D399;
}
.color5 {
  background-color: #ed7cf3;
}
.color6 {
  background-color: #fa7d7d;
}

.h-90{
  height: 90%;
}

.modal-content {
  border: none;
  }
  .app-card{
    text-align: center;
  }
  .app-card img{
    width: 9rem;
    border-radius: 24px;
    margin-bottom: 1rem;
  }