body {
  font-family: 'Quicksand' 'san-serif';
  background-color: #f9f9f9;
}

/* Hero Section */
.hero-section {
  background-color: #9dc2df;
  padding: 50px 0;
  padding-bottom: 34%;
  max-height: 80vh;
  position: relative;
  z-index: 1;
}

.hero-section .image {
  position: absolute;
  top: 30px;
  width: auto;
  height: 65vh;
  right: 200px;
  z-index: -1;
}

.carousel {
  position: absolute;
  top: 100px;
  max-width: 200px;
  height: 55vh;
  right: 20px;
  z-index: 2;
}

.carousel-item {
  border-radius: 10px;
  
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navbar Styles */
.navbar{
  background-color:  #7e4a98;

} 
.navbar .navbar-brand {
  font-size: 1.5rem;
  color: #fff;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;

}

.navbar .logo {
  margin-left: 120px;
  align-items: left;
  padding: 0;
  position: relative;
  
}

.navbar .logo span {
  padding: 0;
  margin-top: -10px;
  font-size: 10px;
}

.navbar .nav-link {
  font-size: 14px;
  color: #fff ;
  margin-right: 5px;
  transition: color 0.3s ease;
 
}

.navbar .nav-link:hover {
  color: #fff;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.navbar-toggler{
  color: #fff;
}

/* Buttons */
button#getQuotes {
  font-size: 1.5rem;
  padding: 10px 20px;
}

button {
  border:  #7e4a98 1px solid;
  padding: 6px 20px; 
  margin-right: 15px;
  background-color: #ffffff;
  color:  #7e4a98;
  border-radius: 2px;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

button:hover {
  background-color:  #7e4a98;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}



/* Active Button */
.active {
  background-color:  #7e4a98;
  color: #fff;
  font-size: 0.9rem;
}

.active:hover {
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

/* TikTok Gradient Text */
.tiktok-color {
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* Card Hover Effect */
.card {
  transition: transform 0.3s ease;
  
}

.card:hover {
  transform: translateY(-10px);
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.card-text {
  font-size: 0.9rem;
}

.custom-bg {
  background-color: #e8d2f3; 
  color: #090909; 
}

/* Purple background on dropdown */
.dropdown-menu.custom {
  background-color: #ffffff; /* Purple */
}

.dropdown-menu.custom .dropdown-item {
   color: #090909;
}

.dropdown-menu.custom .dropdown-item:hover {
  background-color: #7e4a98;
  color: white;
}

/* Section Headers */
.section-header {
  font-family: 'Arial', sans-serif;
  color:#e66e3c;
  font-weight: bold;
  letter-spacing: 1px;
}

.section-subheader {
  font-family: 'Arial', sans-serif;
  color: #777;
  font-size: 1rem;
}

.contact-heading {
  font-size: 20px;
  font-weight: bold;
}


  .star-rating {
    direction: rtl;
    font-size: 1.6rem;
    unicode-bidi: bidi-override;
    display: flex;
    gap: 5px;
  }

  .star-rating input:checked ~ label i,
  .star-rating label:hover ~ label i,
  .star-rating label:hover i {
    color: #ffc107;
  }

  .star-rating label {
    color: #ddd;
    cursor: pointer;
  }

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

.bounce-arrow {
  display: inline-block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #e66e3c;
  animation: bounceArrow 2s infinite;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer .row {
      text-align: center;
  }

  .footer .d-flex {
      justify-content: center ;
  }
}

/* Responsive Navbar Adjustments */
@media (max-width: 992px) {
  .navbar .navbar-nav {
      margin-top: 10px;
      text-align: center;
  }

  .navbar .navbar-toggler {
      padding: 5px 10px;
  }
}

@media (max-width: 576px) {
  .navbar .navbar-brand span {
      font-size: 1rem;
  }

  .navbar .navbar-nav .nav-link {
      font-size: 0.9rem;
  }
  
  .carousel {
      position: relative;
      top: -70px;
      left: auto;
      right: 10px;
      margin-left: auto;
      margin-right: 5px;
      max-width: 120px;
      max-height: 20px;
         /* increased height */
      
      z-index: 1;
      transform: translateY(-180px);
  }
  .carousel p{
    display: none;
  }
  
  .bg-white .d-flex a button{
      margin:5px;
  }
  
}
