/* CSS Document */
.home-icon i {
    transform: translate(-10px, 6px);  /* Move left by 5px and down by 5px */
}
.tv-container img {
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 4px;
}
.tv-container {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background: white;
  height: 100%; /* Match parent height */
}
.tv-price {
  font-size: 1.2em !important;
  margin: 10px 0;
}
.tv-size strong {
  color: inherit; /* Keeps "Size:" in default color */
}
.tv-size {
  color: inherit; /* Keeps default color for entire div */
}
.tv-size span {
  color: #915F6D; /* Mauve Violet */
}
/* Styling for the cookie consent bar at the bottom */
#cookieConsentBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  display: none; /* Initially hidden */
  transition: transform 0.5s ease-in-out; /* Sliding effect */
  transform: translateY(100%);
}
#cookieConsentBar.show {
  transform: translateY(0); /* Slide up when visible */
}
#cookieConsentBar button {
  background-color: #28a745;
  border: none;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}
#cookieConsentBar a {
  color: #fff;
  text-decoration: underline;
}
/* Logo styling */
.brand-logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
}
/* Custom responsive height for carousel */
.carousel {
  max-height: 100vh;
}
.carousel-item {
  height: 60vh; /* Default mobile height */
  min-height: 400px;
}
@media (min-width: 768px) {
  .carousel-item {
    height: 80vh; /* Taller height for tablets/desktop */
  }
}
.carousel-img {
  width: 100%;
  height: 95%;
  object-fit: cover;
  object-position: center;
}
/* Responsive caption styling */
.carousel-caption {
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem;
  bottom: 20%;
  left: 3%;
  right: 3%;
  transform: translateY(50%);
}
@media (min-width: 768px) {
  .carousel-caption {
    bottom: 52% !important;
    padding: 0.4rem;
    left: 30%;
    right: 30%;
  }
}
/* Additional content section */
.content-section {
  margin-top: -25px;
  padding: 0.5rem 0;
}
/* Phone number styling */
.phone-link_slide {
  color: white; /* Make the phone number text white */
  text-decoration: none; /* Remove underline from the link */
  font-weight: bold; /* Make it bold for better visibility */
}
.phone-link_slide:hover {
  color: #ffd700; /* Optional: Change to gold/yellow on hover for effect */
}
/* Social Media Icons */
.social-share {
  display: flex;
  gap: 10px;
  margin-top: -40px;
  margin-left: 30px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Adjust size if needed */
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  text-decoration: none;
}
.phone {
  background-color: red; /* Set phone icon background to red */
}
.whatsapp {
  background-color: green; /* Set WhatsApp icon background to green */
}
.carousel-control-prev, .carousel-control-next {
  top: 36%; /* Adjust this value to move up or down */
  transform: translateY(-50%); /* Keeps it centered at the new position */
}
.carousel-control-prev {
  left: 20%; /* Move closer to the center */
}
.carousel-control-next {
  right: 20%; /* Move closer to the center */
}
@media (max-width: 768px) {
  .carousel-control-prev {
    left: 10%;
  }
  .carousel-control-next {
    right: 10%;
  }
} /* Added missing closing brace */
/* Social Media Icon Colors (Global Styles) */
.social-icon.facebook {
  color: #1877F2 !important;
}
.social-icon.twitter {
  color: #1DA1F2 !important;
}
.social-icon.instagram {
  color: #E4405F !important;
}
.social-icon.linkedin {
  color: #0A66C2 !important;
}
.social-icon.whatsapp_footer {
  color: #25D366 !important;
}
.social-icon:hover {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.whatsapp_footer {
  background-color: black !important;
}
.navbar {
  padding: 10px 0;
}
.navbar-brand svg {
  height: 120px;
}
.navbar-nav .nav-link {
  font-size: 16px;
  padding: 8px 15px;
  transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
  color: #FFD700; /* Gold hover effect */
}