:root {
  --primary-color: #0066cc;
  --secondary-color: #00a86b;
  --dark-color: #2c3e50;
  --light-bg: #f8f9fa;
  --text-color: #333;
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
}
[data-theme="dark"] {
  --dark-color: #e0e0e0;
  --light-bg: #1a1a1a;
  --text-color: #e0e0e0;
  --bg-color: #121212;
  --card-bg: #1e1e1e;
  --border-color: #333;
}
body {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans", sans-serif;
}
header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.top-bar {
  background: #045ae1;
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 0;
}
.top-bar a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
}

/* Navigation */
.navbar {
  /* background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%); */
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #000;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
}
.navbar-brand {
  font-size: 24px;
  font-weight: 500;
  color: black !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.navbar-nav .nav-link {
  color: black !important;
  margin: 0 15px;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
}
/* .navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    transform: translateY(-2px);
} */

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}
.navbar-nav .nav-link {
  /* position: relative;
      padding: 10px 15px;
      transition: color 0.3s ease; */
  color: black !important;
  margin: 0 15px;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
  padding: 10px 15px;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0d6efd;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-nav .nav-link.active::after {
  width: 100%;
}
/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  transition: all 0.3s;
  border: none;
  color: white;
  font-size: 1.5rem;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.theme-toggle i {
  transition: transform 0.3s;
}

.theme-toggle:active i {
  transform: rotate(180deg);
}

/* Hero Section */
.hero-slider-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.carousel-item {
  transition: transform 1.5s ease-in-out;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-primary-custom {
  background: white;
  color: var(--primary-color);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

.btn-outline-light-hero {
  background: transparent;
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-light-hero:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.carousel-indicators [data-bs-target].active {
  width: 40px;
  border-radius: 6px;
  background-color: white;
  border-color: white;
}

.carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slide {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .btn-primary-custom,
  .btn-outline-light-hero {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  /*about us page responsive*/

  .timeline::before {
    left: 30px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /*services page responsive*/
  .process-step::after {
    display: none;
  }
  /* services details page responsive*/
  .service-title {
    font-size: 2.5rem;
  }

  .process-item {
    flex-direction: column;
    text-align: center;
  }

  .process-content {
    margin-left: 0;
    margin-top: 20px;
  }
  /*contact page responsive*/
  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-cards {
    margin-top: -50px;
  }
}
/* Responsive end */

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--secondary-color);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-text {
  color: #666;
  line-height: 1.8;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-image {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Services Section home */
/* .services-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: white;
  padding: 30px 20px;
  transition: all 0.3s;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 102, 204, 0.95) 0%,
    rgba(0, 102, 204, 0.7) 100%
  );
} */

.services-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.service-card-home {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card-home img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s;
}

.service-card-home:hover img {
  transform: scale(1.1);
}

.service-overlay-home {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: white;
  padding: 30px 20px;
  transition: all 0.3s;
}

.service-card-home:hover .service-overlay-home {
  background: linear-gradient(
    to top,
    rgba(0, 102, 204, 0.95) 0%,
    rgba(0, 102, 204, 0.7) 100%
  );
}

/* CEO Message home */
.ceo-section {
  padding: 80px 0;
  background: white;
}

.ceo-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ceo-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
}

.contact-form .form-control {
  border-radius: 10px;
  padding: 15px;
  border: none;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info-item i {
  font-size: 2rem;
  margin-right: 20px;
  color: white;
}

/* about us page */

.company-overview {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.about-image {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.highlight-box {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
  margin: 30px 0;
}

.highlight-box h4 {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 0;
  background: var(--light-bg);
}

.mission-card,
.vision-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}

.vision-card::before {
  background: var(--secondary-color);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.mission-card .card-icon {
  color: var(--primary-color);
}

.vision-card .card-icon {
  color: var(--secondary-color);
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: white;
}

.value-item {
  text-align: center;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 15px;
  transition: all 0.3s;
  height: 100%;
}

.value-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  transition: all 0.3s;
}

.value-item:hover .value-icon {
  transform: rotate(360deg);
}

.value-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 15px;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--primary-color);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 55%;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-color);
  z-index: 1;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-year {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: white;
}

.team-card {
  text-align: center;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 15px;
  transition: all 0.3s;
  height: 100%;
}

.team-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid var(--primary-color);
  transition: all 0.3s;
}

.team-card:hover .team-img {
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

.team-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.team-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}
/*******************************about us end *******************************/

/******************************* services page *******************************/
/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.5s;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-image-wrapper {
  overflow: hidden;
  position: relative;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: all 0.3s;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.service-content {
  padding: 30px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.service-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  border-bottom: 1px solid #eee;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.btn-service {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: var(--light-bg);
}

.feature-box {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-large {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feature-box:hover .feature-icon-large {
  color: var(--secondary-color);
  transform: scale(1.1);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: white;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 30px;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.process-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 10px;
}
/******************************** services end ********************************/
/******************************** services details page ********************************/
/* Service Overview */
.service-overview {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.service-image {
  /*border-radius: 15px;*/
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s;
}

.service-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-box {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
  margin: 30px 0;
}

.info-box h4 {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.info-box ul li:last-child {
  border-bottom: none;
}

.info-box ul li i {
  color: var(--secondary-color);
  margin-right: 10px;
  width: 20px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 15px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.benefit-item {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 15px;
  transition: all 0.3s;
}

.benefit-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-right: 20px;
}

.benefit-content h5 {
  color: var(--dark-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.benefit-content p {
  color: #666;
  margin: 0;
}

/* Process Timeline */
.process-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.process-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-left: 30px;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-content h4 {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: var(--light-bg);
  color: var(--dark-color);
  font-weight: 600;
  padding: 20px 25px;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 25px;
  background: white;
}

.btn-light-custom {
  background: white;
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

.btn-light-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

.btn-outline-light-custom {
  background: transparent;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

.btn-outline-light-custom:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Related Services */
.related-services {
  padding: 80px 0;
  background: var(--light-bg);
}

.service-mini-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  height: 100%;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-mini-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: inherit;
}

.service-mini-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-mini-content {
  padding: 25px;
}

.service-mini-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.service-mini-text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-mini-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.service-mini-link:hover {
  color: var(--secondary-color);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  transition: all 0.3s;
}
/* .social-link {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
} */

.social-links a:hover {
  /* background: var(--secondary-color);
  transform: translateY(-3px);
  padding-left: 0; */

  background: white;
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: white;
  /***/
  /* background: var(--secondary-color);
  transform: translateY(-3px);
  padding-left: 0; */
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats Box */
.stats-box {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
}
/******************************** services details page end ********************************/

/******************************** products page start ********************************/
.products-header {
  background: linear-gradient(
      135deg,
      rgba(0, 102, 204, 0.95) 0%,
      rgba(0, 168, 107, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1585435557343-3b092031a831?w=1920&h=400&fit=crop")
      center/cover;
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.products-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
}
.products-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.products-header p {
  font-size: 1.3rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}
/* Filter Section */
.filter-section {
  background: var(--bg-color);
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.category-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  background: var(--bg-color);
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.category-btn:hover,
.category-btn.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.category-btn .badge {
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}
.category-btn.active .badge {
  background: rgba(255, 255, 255, 0.2);
}
.search-filter-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.search-box {
  flex: 1;
  min-width: 250px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  transition: all 0.3s;
  background: var(--bg-color);
  color: var(--text-color);
}
.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.search-box button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.search-box button:hover {
  transform: scale(1.1);
}
.filter-select {
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  background: var(--bg-color);
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s;
  min-width: 150px;
}
.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
}
/* Products Grid */
.products-grid {
  padding: 60px 0;
  background: var(--light-bg);
}
.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #f5f5f5;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.product-card:hover .product-image {
  transform: scale(1.1);
}
.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  z-index: 1;
}
.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  z-index: 1;
}
.product-category-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}
.product-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s;
}
.product-title a:hover {
  color: var(--primary-color);
}
.product-description {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
  flex: 1;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}
.product-manufacturer {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
}
.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}
.product-actions {
  display: flex;
  gap: 10px;
}
.btn-view-product {
  flex: 1;
  padding: 12px 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.btn-view-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}
/* Badge Colors */
.bg-success {
  background-color: #28a745 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
.bg-warning {
  background-color: #ffc107 !important;
  color: #000 !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state i {
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 20px;
}
.empty-state h3 {
  color: var(--text-color);
  margin-bottom: 15px;
}
/* Results Info */
.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.results-count {
  font-weight: 600;
  color: var(--text-color);
}
.clear-filters {
  color: var(--primary-color);
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.clear-filters:hover {
  color: var(--secondary-color);
}
/******************************** products page end ********************************/

/******************************** contact page start ********************************/
/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--bg-color);
}

/* Contact Cards */
.contact-cards {
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: all 0.3s;
}

.contact-info-card:hover .contact-icon-wrapper {
  transform: rotate(360deg) scale(1.1);
}

.contact-card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 15px;
}

.contact-card-detail {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-card-detail a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-card-detail a:hover {
  color: var(--secondary-color);
}

/* Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.contact-form-container {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* .form-label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.form-control,
.form-select {
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 15px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  outline: none;
  background: var(--bg-color);
  color: var(--text-color);
}

.form-control::placeholder {
  color: var(--text-color);
  opacity: 0.5;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 15px 50px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-submit:active {
  transform: translateY(-1px);
} */

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Working Hours */
.working-hours {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.working-hours h4 {
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: 25px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li .day {
  font-weight: 600;
}

.hours-list li .time {
  opacity: 0.8;
}

/* Social Links */
.social-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  text-align: center;
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.social-link {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
/* .faq-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  background: var(--card-bg);
}

.accordion-button {
  background: var(--card-bg);
  color: var(--text-color);
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 25px;
  background: var(--card-bg);
  color: var(--text-color);
} */

/* Alert Messages */
.alert-custom {
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/******************************** contact page start ********************************/

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* footer end */

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .btn {
  margin-left: 10px;
}

/* Page Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Statistics Counter home */
/* .stats-section {
  background: var(--primary-color);
  color: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
} */

/* Statistics Section */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}
/* statistics end */
/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--light-bg);
  text-align: center;
}

.cta-box {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Subpage Styles */
/* .page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 80px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: bold;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 20px;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
} */

/* Page Header subpage */
.page-header {
  background: linear-gradient(
      135deg,
      rgba(0, 102, 204, 0.95) 0%,
      rgba(0, 168, 107, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&h=600&fit=crop")
      center/cover;
  color: white;
  padding: 120px 0 60px;
  position: relative;
  text-align: center;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.page-subtitle {
  font-size: 1.3rem;
  font-weight: bold;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 20px;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}
