/* ===== 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: hidden;
}

/* 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 */
.navbar {
	background: 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(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(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 {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7)); /* stronger overlay */
}

.carousel-caption {
  position: absolute;
  bottom: 20px;   /* sits above the indicators */
  left: 50%;      /* center horizontally */
  transform: translateX(-50%); /* perfect center */
  background: rgba(0, 0, 0, 0.65);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  display: inline-block; /* shrink-wrap background */
  max-width: 80%;        /* keep readable on small screens */
  text-align: center;
}

.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 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;
}

/* Brand banner */
.brand-banner {
  background: url("https://picsum.photos/1600/500?car,delivery") center/cover no-repeat;
  position: relative;
  height: 40vh;
}
.brand-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
}
.brand-banner .container {
  position: relative;
  z-index: 2;
}

/* Call-to-Action Banner */
.cta-banner {
  background: 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 */
@media (max-width: 768px) {
  .carousel-item {
    height: 50vh;
    min-height: 300px;
  }
  
  .carousel-caption {
    bottom: 10px;
    padding: 0.8rem 1rem;
  }
  
  .carousel-caption h1 {
    font-size: 1.5rem;
  }
  
  .carousel-caption h2 {
    font-size: 1.3rem;
  }
  
  .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;
  }
}

/* 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;
  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: 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(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;
}