/* Footer Styles */
.footer {
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding-top: 50px;
}

.footer .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.footer .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.footer .footer-content,
.footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer .footer-section {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.footer .footer-widget {
  margin-bottom: 20px;
}

.footer .footer-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .footer-section ul {
  list-style: none;
  padding: 0;
}

.footer .footer-section ul li {
  margin-bottom: 10px;
}

.footer .footer-section ul li a {
  color: black;
  text-decoration: none;
}

.footer .footer-section ul li a:hover {
  color: #d32c2c;
}

.footer .footer-bottom {
  position: relative;
  padding-top: 20px;
}

.footer-social-link {
  margin-block: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  max-height: 40px;
}

.footer-social-widget .wp-block-image img{
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
} 

.footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px; /* Height of the border */
  background: linear-gradient(to right, #d32c2c, #e0e0e1a3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-section {
    padding: 10px;
  }
}

/* Scroll To Top Button Styles */
#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 20px; /* Place it at the bottom */
  right: 20px; /* Place it at the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background: linear-gradient(#EBEBEB, #D32C2C); /* Gradient background */
  color: black; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 20px; /* Some padding */
  border-radius: 15px; /* Rounded corners */
  font-size: 24px; /* Increase font size */
  transition: background 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

#scrollToTopBtn i {
  display: block;
  font-size: 24px; /* Arrow size */
}

#scrollToTopBtn:hover {
  background: linear-gradient(#D32C2C, #EBEBEB); /* Reverse gradient on hover */
  transform: translateY(-5px); /* Slight lift on hover */
}

/*=============================
  Cookie CSS Start
===============================*/
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background-color: rgba(165, 239, 165, 0.9); /* Light green background with transparency */
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
  transition: height 0.3s ease;
  overflow: hidden;
  border-radius: 10px;
}

.cookie-content {
  text-align: left;
  margin-bottom: 10px;
}

.cookie-content p {
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#accept-all {
  background-color: #4CAF50;
  color: white;
}

#reject-all {
  background-color: #f44336;
  color: white;
}

.hidden {
  display: none;
}

#see-more {
  background-color: transparent;
  border: none;
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

.cookie-consent.expanded {
  height: auto; /* Allows height to increase when expanded */
}
/*=============================
  Cookie CSS End
===============================*/