/* ===== Base ===== */
body {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: #333;
  background: #fff;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

/* Loading Spinner */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ===== Topbar ===== */
 /* Enhanced Header Styles */
.topbar {
	background: #000;
	color: #fff;
	font-size: 0.9rem;
}
.topbar a {
	color: #fff;
	margin-left: 10px;
	transition: color 0.3s ease;
}
.topbar a:hover {
	color: #ffd700;
}

/* Stronger gradient for navbar, softened with a subtle dark wash */
.navbar {
	background:
		linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
		linear-gradient(135deg, #ff8c00 0%, #ff6b00 50%, #ffd700 100%) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	padding: 0.8rem 0;
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.8rem;
	color: #fff !important;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.95) !important;
	font-weight: 600;
	padding: 0.5rem 1rem;
	margin: 0 0.25rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff !important;
	transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	background-color: #fff;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
	width: 80%;
	left: 10%;
}

.navbar-toggler {
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Button styles */
.btn-light {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	color: #333;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-light:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-warning {
	background: linear-gradient(90deg, #ff8c00, #ffd700);
	border: none;
	color: #000;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-warning:hover {
	background: linear-gradient(90deg, #e67e00, #e6c200);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== Sticky Navbar Enhancements ===== */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

/* Navbar scroll effect */
.navbar.scrolled {
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    linear-gradient(90deg, #ff8c00, #ffd700) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

/* Ensure content doesn't jump under sticky navbar */
body {
  padding-top: 0; /* Remove any default padding */
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Adjust for mobile devices */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background:
      linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
      linear-gradient(90deg, #ff8c00, #ffd700);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }
  
  .navbar-nav .btn {
    margin: 0.5rem 0.25rem;
  }
}

/* Navbar brand logo adjustment for sticky state */
.navbar-brand img {
  transition: all 0.3s ease;
  max-height: 50px;
}

.navbar.scrolled .navbar-brand img {
  max-height: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.navbar-nav .nav-link {
		margin: 0.25rem 0;
		text-align: center;
	}
	
	.navbar-nav .btn {
		margin: 0.5rem 0;
		display: block;
		width: 100%;
		text-align: center;
	}
}

/* Content styles for demonstration */
.content-section {
	padding: 80px 0;
	min-height: 80vh;
}

.content-section h1 {
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.content-section p {
	font-size: 1.1rem;
	line-height: 1.7;
}
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* ===== Carousel ===== */
.carousel-item {
  background-color: #1a0f05;
  background-size: cover;
  background-position: right center; /* subject sits on the right of the hero images */
  position: relative;
}
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3); /* light overlay; the caption box keeps the text readable */
}

/* Flex wrapper that centers the caption within the slide
   (kept separate from .carousel-item so Bootstrap's
   show/hide + slide transform logic is left untouched) */
.carousel-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 70px 15px;
}

.carousel-caption {
  position: relative;  /* override Bootstrap's absolute positioning */
  top: auto; right: auto; bottom: auto; left: auto;
  transform: none;
  z-index: 1;           /* sit above the ::before overlay */
  background: rgba(0, 0, 0, 0.55);
  padding: 1.75rem 2.25rem;
  border-radius: 8px;
  width: 100%;
  max-width: 700px;     /* keep readable on large screens */
  text-align: center;
}

.carousel-caption .hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.75rem;
}

.carousel-caption h1,
.carousel-caption h2,
.carousel-caption p {
  color: #fff;
  margin: 0.5rem 0;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8); /* make text pop */
}

.carousel-caption .hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin: 1rem 0 0.5rem;
  padding: 0;
  font-size: 0.95rem;
}

.carousel-caption .hero-features li i {
  color: #ffd700;
  margin-right: 0.4rem;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* make arrows white */
}

/* Stats Section */
.stats-section {
  background: #f8f9fa;
}
.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ===== Buttons ===== */
.btn-primary {
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  border: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #e67e00, #e6c200);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.btn-outline-primary {
  border: 2px solid #ff8c00;
  color: #ff8c00;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Sections ===== */
section {
  padding: 60px 0;
}
section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

/* About Hero Banner */
.about-hero {
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Call-to-Action Banner */
.cta-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    linear-gradient(90deg, #ff8c00, #ffd700);
  padding: 60px 20px;
}
.cta-banner h2 {
  font-size: 2rem;
}
.cta-banner p {
  font-size: 1.2rem;
}

/* ===== Cards ===== */
.card {
  border: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Service cards */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonial cards */
.testimonial-card {
  border-left: 4px solid #ff8c00;
}
.testimonial-rating {
  font-size: 1.2rem;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  margin-top: auto;
}

/* Smooth expand animation */
.collapse.fade {
  transition: all 0.4s ease-in-out;
}

/* Service cards */
.card {
  border: none;
  border-radius: 8px;
}

.card h4 {
  font-weight: 600;
}
/* FAQ Section */
#faqAccordion .card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

#faqAccordion .card-header {
  background: #fff;
  padding: 0;
  border-bottom: none;
}

#faqAccordion .btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

#faqAccordion .btn-link:hover {
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  color: #fff;
}

#faqAccordion .btn-link:focus {
  text-decoration: none;
  box-shadow: none;
}

#faqAccordion .collapse .card-body {
  padding: 1.25rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Smooth animation */
.collapse.fade {
  transition: all 0.4s ease-in-out;
}
/* Team Page */
.card .card-img-top {
  object-fit: cover;
  height: 250px;
}

.card-body h5 {
  font-weight: 600;
  color: #ff8c00;
}

.card-body p {
  margin-bottom: 0.5rem;
}

.card-body .fas {
  color: #ff8c00;
  margin-right: 5px;
}

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(45deg, orange, gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.service-info {
  display: none; /* hidden by default */
  padding: 15px;
  border-top: 1px solid #eee;
  text-align: left;
  background: #fff;
}
.service-card {
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.btn-gradient {
  background: linear-gradient(45deg, orange, gold);
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(90deg, #000, #333);
  color: #ddd;
}
.footer h5 {
  color: #fff;
  margin-bottom: 1rem;
}
.footer a {
  color: #ddd;
  transition: color 0.3s;
}
.footer a:hover {
  color: #ffd700;
}
.footer hr {
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive adjustments */

/* Desktops: short, wide hero like the page banners */
@media (min-width: 992px) {
  .carousel-content {
    /* fixed height (not min-height) so every slide is the same size and the
       page below doesn't jump when the slide changes. Follows the images'
       shape (1672x312 = 18.66vw) but leaves room for the caption box. */
    height: max(420px, 18.66vw);
    min-height: 0;
    padding: 30px 15px;
  }

  .carousel-caption {
    max-width: 800px;
    padding: 1.5rem 2.5rem;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 991.98px) {
  .carousel-content {
    min-height: 55vh;
    padding: 60px 15px;
  }

  .carousel-caption {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .carousel-content {
    min-height: 65vh;
    padding: 50px 12px;
  }

  .carousel-caption {
    padding: 1.25rem 1.5rem;
    max-width: 100%;
  }

  .carousel-caption .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption h2 {
    font-size: 1.3rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .carousel-caption .hero-features {
    font-size: 0.8rem;
    gap: 0.35rem 1rem;
  }

  .stats-section .stat-item h3 {
    font-size: 2rem;
  }
  
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  
  .cta-banner p {
    font-size: 1rem;
  }
  
  .navbar .nav-link {
    margin-left: 0;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .carousel-content {
    min-height: 75vh;
    padding: 40px 10px;
  }

  .carousel-caption {
    padding: 1rem;
  }

  .carousel-caption .hero-features {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* About Page Specific Styles */
.page-header {
  position: relative;
  overflow: hidden;
}

.pattern-overlay {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.slogan-container {
  backdrop-filter: blur(5px);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.mission-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.service-client-card {
  transition: transform 0.3s ease;
}

.service-client-card:hover {
  transform: translateY(-5px);
}

.client-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.free-delivery-banner {
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.team-preview-card {
  padding: 1.5rem;
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
  .page-header {
    height: 300px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .slogan-container .h5 {
    font-size: 1.1rem;
  }
  
  .service-client-card {
    margin-bottom: 1rem;
  }
  
  .free-delivery-banner .h5 {
    font-size: 1.2rem;
  }
}

/* Services Page Specific Styles */
.search-bar {
  max-width: 400px;
  position: relative;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
}

.service-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card.expanded {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-meta .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

.service-info {
  display: none;
  border-top: 1px solid #eee;
  padding: 20px;
  text-align: left;
  background: #f8f9fa;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.service-note {
  margin-top: 15px;
  padding: 12px;
  border-radius: 5px;
  color: #fff;
  font-size: 0.9rem;
  background: linear-gradient(45deg, #ff8c00, #ffd700);
}

.category-filter.active {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  border-color: #ff8c00;
  color: #000;
  font-weight: 600;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
  .page-header {
    height: 280px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .category-filter {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .service-card .card-title {
    font-size: 1.1rem;
  }
}

/* FAQ Page Specific Styles */
.faq-category {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid;
  border-image: linear-gradient(45deg, #ff8c00, #ffd700) 1;
}

.faq-item .card-header {
  background: #fff;
  padding: 0;
  border-bottom: none;
}

.faq-item .btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  text-decoration: none;
  color: #000;
  background: #fff;
  border: none;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item .btn-link:hover {
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.1), rgba(255, 215, 0, 0.1));
  color: #000;
  text-decoration: none;
}

.faq-item .btn-link:focus {
  text-decoration: none;
  box-shadow: none;
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.15), rgba(255, 215, 0, 0.15));
}

.faq-item .btn-link[aria-expanded="true"] {
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.1), rgba(255, 215, 0, 0.1));
  border-bottom: 2px solid #ff8c00;
}

.faq-item .collapse .card-body {
  padding: 1.5rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.transition-rotate {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.contact-cta {
  border-left: 4px solid #ff8c00;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* FAQ Search and Filter Styles */
.search-bar {
  max-width: 400px;
  position: relative;
}

.category-filter.active {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  border-color: #ff8c00;
  color: #000;
  font-weight: 600;
}

/* Smooth animations */
.collapse.fade {
  transition: all 0.4s ease-in-out;
}

/* Responsive adjustments for FAQ page */
@media (max-width: 768px) {
  .page-header {
    height: 280px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .faq-category {
    font-size: 1.3rem;
  }
  
  .faq-item .btn-link {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  
  .category-filter {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Z-index fixes for search inputs */
.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }
.z-index-4 { z-index: 4; }

/* Ensure search inputs are clickable */
.search-bar input {
  position: relative;
  z-index: 10;
}

/* Fix pattern overlay to not interfere with clicks */
.pattern-overlay {
  pointer-events: none; /* This allows clicks to pass through */
}

/* Make sure the content container is above the pattern */
.page-header .container {
  position: relative;
  z-index: 5;
}

/* Downloads Page Specific Styles */
.download-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.download-highlight {
  animation: downloadPulse 2s ease;
  border-color: #ff8c00 !important;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2) !important;
}

@keyframes downloadPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}

.download-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.download-meta .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

.download-actions {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.download-stats {
  border-left: 4px solid #ff8c00;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Responsive adjustments for downloads page */
@media (max-width: 768px) {
  .page-header {
    height: 280px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .download-card .card-title {
    font-size: 1.1rem;
  }
  
  .download-icon {
    width: 50px;
    height: 50px;
  }
  
  .download-icon i {
    font-size: 1.5rem !important;
  }
  
  .category-filter {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .stat-item h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .download-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .download-actions .btn:last-child {
    margin-bottom: 0;
  }
}

/* Team Page Specific Styles */
.team-stat {
  padding: 0 1.5rem;
}

.team-stat h4 {
  font-weight: 700;
}

.feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.team-image-container {
  position: relative;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* keep faces in view on portrait photos */
  transition: transform 0.3s ease;
}

.team-image-container:hover .team-img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    rgba(255, 140, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8c00;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #000;
  color: white;
  transform: translateY(-2px);
}

.team-contact .contact-item {
  display: flex;
  align-items: center;
}

.team-contact a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.team-contact a:hover {
  color: #ff8c00 !important;
}

/* Team Member Cards */
.team-member-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.team-member-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member-card:hover .member-img {
  transform: scale(1.1);
}

.member-contact .btn {
  transition: all 0.3s ease;
}

.member-contact .btn:hover {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  border-color: #ff8c00;
  color: white;
  transform: translateY(-2px);
}

/* Responsive adjustments for team page */
@media (max-width: 768px) {
  .page-header {
    height: 280px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .team-stat {
    padding: 0 1rem;
  }
  
  .team-stat h4 {
    font-size: 1.5rem;
  }
  
  .team-image-container {
    min-height: 200px;
  }
  
  .team-card .card-body {
    padding: 1.25rem;
  }
  
  .team-social {
    gap: 0.5rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .team-card .row {
    flex-direction: column;
  }
  
  .team-image-container {
    min-height: 250px;
  }
  
  .feature-icon {
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem !important;
  }
}

/* Contact Page Specific Styles */
.contact-stat {
  padding: 0 1.5rem;
}

.contact-method-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.contact-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details .btn {
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-details .btn:hover {
  transform: translateY(-2px);
}

.contact-info-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item h6 {
  font-weight: 600;
  color: #333;
}

.contact-info-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: #ff8c00;
}

.bg-gradient {
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    linear-gradient(135deg, #ff8c00 0%, #ffd700 100%) !important;
}

/* Form enhancements */
.form-control:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

.form-check-input:checked {
  background-color: #ff8c00;
  border-color: #ff8c00;
}

/* Map container */
.map-container iframe {
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

/* Quick links */
.btn-outline-primary {
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .page-header {
    height: 280px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .contact-stat {
    padding: 0 1rem;
  }
  
  .contact-method-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-details .btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
  
  .card-body.p-4 {
    padding: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .contact-stat i {
    font-size: 1.5rem !important;
  }
  
  .contact-icon {
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .quick-links .btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Form validation styles */
.was-validated .form-control:valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.floatWhatsapp{
	position:fixed;
	width:60px;
	height:60px;
	bottom:60px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/* WhatsApp message popup (opened by .floatWhatsapp) */
.wa-popup {
  position: fixed;
  right: 30px;
  bottom: 130px; /* sits just above the floating button */
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 101;
}

.wa-popup[hidden] {
  display: none;
}

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #075e54;
  color: #fff;
  padding: 0.9rem 1rem;
}

.wa-popup-header > i {
  font-size: 1.8rem;
}

.wa-popup-header strong {
  display: block;
  font-size: 1rem;
}

.wa-popup-header span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.wa-popup-close {
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}

.wa-popup-body {
  padding: 1rem;
  background: #ece5dd;
}

.wa-popup-body label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.wa-popup-body textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 90px;
}

.wa-popup-body textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
}

.wa-popup-send {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  background: #25d366;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.65rem;
  font-weight: 600;
  cursor: pointer;
}

.wa-popup-send:hover {
  background: #1ebe5b;
}

@media (max-width: 480px) {
  .wa-popup {
    right: 16px;
    bottom: 130px;
  }
}
/* ===== Cookie consent banner (includes/cookie-consent.php) ===== */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1040; /* above the WhatsApp button, below Bootstrap modals */
  display: flex;
  justify-content: center;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  width: 100%;
  max-width: 960px;
  background: #1f1a14;
  color: #f1f1f1;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 1.25rem 1.5rem;
}

.cookie-consent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.cookie-consent p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-consent a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-consent-options {
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.cookie-option input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.cookie-option strong {
  display: block;
  color: #fff;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.cookie-consent-actions .btn {
  min-width: 120px;
  font-weight: 600;
}

.cookie-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-legal a {
  margin: 0 0.35rem;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .cookie-consent {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .cookie-consent-inner {
    padding: 1rem;
  }

  .cookie-consent-actions .btn {
    flex: 1 1 45%;
    min-width: 0;
  }
}

.footer-credit {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-credit a {
  text-decoration: underline;
}
