/* Side Form Styles - Customized */
.side-form-container {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1050;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.side-form-content {
  position: relative;
  width: 320px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px 0 0 8px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  border-right: none;
}

/* Header Styles */
.form-header {
  margin-bottom: 20px;
  text-align: center;
}

.form-header h4 {
  color: var(--bs-primary);
  margin: 0 0 5px 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-header h4 i {
  color: #ffdf07;
}

.form-subtitle {
  color: #7f8c8d;
  font-size: 0.85rem;
  margin: 0;
}

/* Form Elements */
.form-group {
  margin-bottom: 15px;
  position: relative;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5a6;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  /* padding: 12px 15px 12px 35px; */
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #ffdf07;;
  box-shadow: 0 0 0 2px #ffdf07;
}

textarea.form-control {
  padding: 12px 15px;
  min-height: 80px;
  resize: vertical;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 12px;
  background:#ffdf07;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #303e5f, #ffdf07);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px linear-gradient(180deg, #303e5f, #ffdf07);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Close Button */
.close-side-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: var(--bs-secondary);;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.close-side-btn:hover {
  background: #c0392b;
  transform: rotate(90deg) scale(1.1);
}

/* Hidden State */
.side-form-container.hidden {
  transform: translateY(-50%) translateX(105%);
}

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: #27ae60;
}

.form-success i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .side-form-content {
    width: 280px;
    padding: 20px;
  }
  
  .form-header h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .side-form-container {
    bottom: 20px;
    top: auto;
    transform: none;
    right: 20px;
    width: calc(100% - 40px);
  }
  
  .side-form-content {
    width: 100%;
    border-radius: 8px;
  }
  
  .side-form-container.hidden {
    transform: translateY(calc(100% + 20px));
  }
}




/* 
.marquee-text {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-text small {
  display: inline-block;
  animation: marquee-slide 10s ease-in-out infinite alternate;
  padding-left: 100%;
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
} */


/* Laptop screens (usually 1024px to 1440px width) */
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .have{
    /* Styles for laptop screens */
    font-size: 8px;
 
    /* Add other laptop-specific styles here */
  }
  
}

/* Mobile screens (usually max 767px width) */
@media only screen and (max-width: 767px) {
  .have {
    /* Styles for mobile screens */
    font-size: 6px;
  
    /* Add other mobile-specific styles here */
  }
}


/* Mobile devices (under 576px) */
  @media (max-width: 576px) {
    .two-line-heading {
      font-size: 1.15rem !important;  /* 18.4px */
      line-height: 1.4 !important;
      display: -webkit-box;
      -webkit-line-clamp: 2; /* Limit to 2 lines */
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
      height: calc(1.15rem * 1.4 * 2); /* font-size * line-height * 2 */
      margin-bottom: 0.5rem !important;
      font-weight: 500 !important;
    }
    
.carousel-control-next {
    width: 50px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}
.carousel-control-prev {
    width: 50px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}
    .h4 {
      font-size: 0.75rem !important;
      margin-bottom: 0.25rem !important;
    }
    
    .fs-5 {
      font-size: 0.75rem !important;
      line-height: 1.4 !important;
    }
  }

  /* Tablet devices (576px-768px) */
  @media (min-width: 576px) and (max-width: 768px) {
    .two-line-heading {
      font-size: 1rem !important;
      /* Will naturally break into two lines */
    }

  }