:root {
  --primary-color: #124c7e;
  --secondary-color: #333;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

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

.kenburns-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: kenburns 16s ease-in-out infinite;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 60px;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content h1,
.hero-content p,
.hero-buttons {
  opacity: 0;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.hero-buttons a {
  display: inline-block;
  padding: 12px 26px;
  margin-right: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.slider-btn-primary {
  background-color: #ff4c4c;
  color: #fff;
}

.slider-btn-primary:hover {
  background-color: #e63b3b;
}

.slider-btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.slider-btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-slider .owl-dot span {
  width: 12px;
  height: 12px;
  background: #fff;
  display: block;
  margin: 5px;
  border-radius: 50%;
  transition: background 0.3s;
}

.hero-slider .owl-dot.active span {
  background: #ff4c4c;
}

/* Blurred navbar style on scroll */
.navbar-blur {
  background-color: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
}

.featured-products {
  background: #f8f9fa;
}

.product-card {
  border: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  height: 250px;
  overflow: hidden;
}

.product-card img {
  transition: transform 0.4s ease;
  background-size: cover;
  aspect-ratio: 1;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .btn {
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.featured-products .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 18px;
  border: none;
  transition: background 0.3s ease;
}

.featured-products .owl-nav button:hover {
  background: #333;
}

.featured-products .owl-nav .owl-prev {
  left: -25px;
}

.featured-products .owl-nav .owl-next {
  right: -25px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.facts-section .section-title h2 {
  font-weight: 700;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.facts-section .section-title h2:after {
  background-color: #fff;
}

.section-title h2 {
  font-weight: 700;
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.fact-icon i{
  color: #fff;
}

.facts-section .section-title p {
  color: #dbd3d3;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-section .section-title h2::after {
  margin: 15px 0;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--primary-color);
  margin-bottom: 30px;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 2rem;
}

.service-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #e05d00;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 20px;
  }
}

.facts-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.facts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.facts-section {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.facts-section h2 {
  font-weight: 700;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.facts-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.fact-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  height: 100%;
}

.fact-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.fact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 2rem;
  transition: all 0.5s ease;
}

.fact-item:hover .fact-icon {
  transform: rotate(15deg) scale(1.1);
  background: var(--primary-color);
  color: white;
}

.counter {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  transition: all 0.5s ease;
}

.fact-item:hover .counter {
  color: var(--primary-color);
}

.fact-title {
  font-weight: 600;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.fact-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Animated underline for section title */
.section-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto;
  transition: all 0.5s ease;
}

.section-title:hover h2::after {
  width: 120px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .facts-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .counter {
    font-size: 2.5rem;
  }
}

.testimonials-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(255, 107, 0, 0.1);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 25px;
  color: #555;
  font-style: italic;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover .client-img {
  transform: scale(1.1);
  border-color: var(--secondary-color);
}

.client-details h5 {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.client-details p {
  color: #777;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.rating {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Owl Carousel Customizations */
.testimonials-section .owl-carousel .owl-stage-outer {
  padding: 20px 0;
}

.testimonials-section .owl-carousel .owl-item {
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.testimonials-section .owl-carousel .owl-item.center {
  opacity: 1;
  transform: scale(1);
}

.testimonials-section .owl-theme .owl-dots {
  margin-top: 30px;
}

.testimonials-section .owl-theme .owl-dots .owl-dot span {
  background: #ddd;
  width: 12px;
  height: 12px;
  margin: 5px 6px;
  transition: all 0.3s ease;
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Custom Navigation Arrows */
.testimonials-section .custom-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.testimonials-section .custom-nav button {
  pointer-events: auto;
  background: white;
  color: var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-section .custom-nav button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.testimonials-section .custom-nav button:focus {
  outline: none;
}

/* Hide default Owl Carousel nav */
.testimonials-section .owl-theme .owl-nav {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .custom-nav {
    display: none;
  }

  /* Show dots on mobile */
  .owl-theme .owl-dots {
    display: block;
  }
}

@media (min-width: 768px) {
  /* Hide dots on desktop */
  .owl-theme .owl-dots {
    display: none;
  }
}

.partner-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  height: 180px;
  transition: all 0.3s ease;
}

.partner-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary-color);
}

/* Owl Carousel Customizations */
.partners-section .owl-carousel .owl-stage-outer {
  padding: 20px 0;
}

/* Custom Navigation Arrows */
.partners-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.partners-nav button {
  pointer-events: auto;
  background: white;
  color: var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.partners-nav button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.partners-nav button:focus {
  outline: none;
}

/* Hide default Owl Carousel nav */
.owl-theme .owl-nav {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .partners-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .partner-logo {
    height: 70px;
  }

  .partners-nav {
    display: none;
  }

  /* Show dots on mobile */
  .owl-theme .owl-dots {
    display: block;
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  /* Hide dots on desktop */
  .owl-theme .owl-dots {
    display: none;
  }
}

.footer {
  background-color: #1a1a2e;
  color: white;
  padding: 70px 0 0;
  position: relative;
}

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

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  font-size: 1.2rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff6b00;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ff6b00;
  transform: translateX(5px);
}

.footer-links a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-right: 10px;
  color: #ff6b00;
}

.footer-contact-info {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
  color: #ff6b00;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

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

.footer-social a:hover {
  background: #ff6b00;
  transform: translateY(-5px);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ff6b00;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .footer {
    padding: 50px 0 0;
  }

  .footer-col {
    margin-bottom: 40px;
  }

  .footer-title {
    margin-bottom: 15px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    margin-bottom: 10px;
  }

  .newsletter-form button {
    padding: 12px 15px;
  }
}

.blog-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

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

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}

.blog-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.author-name {
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #e05d00;
}

.read-more:hover i {
  transform: translateX(5px);
}

.view-all {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.view-all-btn:hover {
  background: transparent;
  color: var(--primary-color);
}

.view-all-btn i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .blog-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .blog-img {
    height: 180px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination a {
  padding: 10px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #333;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.pagination a:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.pagination a.active {
  background-color: #000;
  color: white;
  border-color: #000;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tabs button {
  position: relative;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

.tabs button.active {
  color: #000;
  font-weight: 600;
}

.tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-grid .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-align: center;
}

.product-grid .product-card:hover {
  transform: translateY(-5px);
}

.product-grid .product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.product-grid .product-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #333;
}

.product-grid .product-card p {
  font-size: 14px;
  color: #777;
  padding: 0 15px;
  margin-bottom: 15px;
}

.product-grid .product-card a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.product-grid-wrapper {
  transition: opacity 0.4s ease;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-grid .product-card a:hover {
  background-color: #333;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Info Bar (non-sticky) */
.contact-info-bar {
  background-color: var(--dark-color);
  color: white;
  padding: 10px 0;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contact-item i {
  color: #ff6b00;
  margin-right: 8px;
  font-size: 1rem;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Navigation */
#navbar {
  transition: all 0.3s ease-in-out;
}

.navbar-blur {
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
}

.navbar-brand img{
  width: 100px;
}

.nav-link {
  font-weight: 500;
  color: var(--secondary-color) !important;
  margin: 0 10px;
  position: relative;
  padding: 8px 0 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-quote {
  background: var(--primary-color) !important;
  color: white !important;
  border: none;
  padding: 8px 20px !important;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: #e05d00 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .contact-item {
    margin: 5px 0;
  }

  .social-links {
    margin-top: 10px;
  }

  .social-links a {
    margin: 0 8px;
  }

  .navbar-collapse {
    padding: 20px 0;
  }

  .nav-link {
    padding: 10px 0 !important;
    margin: 0 !important;
  }

  .btn-quote {
    margin-top: 15px;
    width: 100%;
  }
}

/* Header with Breadcrumbs */
.service-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center center/cover;
  padding: 100px 0 60px;
  color: white;
  position: relative;
}

.breadcrumb-nav {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.service-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-excerpt {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-bottom: 30px;
}

/* Main Content Area */
.service-content-section {
  padding: 80px 0;
}

.featured-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CKEditor Content Styling */
.ck-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.ck-content h2,
.ck-content h3,
.ck-content h4 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.ck-content h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.ck-content h3 {
  font-size: 1.5rem;
}

.ck-content h4 {
  font-size: 1.3rem;
}

.ck-content p {
  margin-bottom: 1.5rem;
}

.ck-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ck-content a:hover {
  color: #e05d00;
  text-decoration: underline;
}

.ck-content ul,
.ck-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.ck-content ul li,
.ck-content ol li {
  margin-bottom: 0.5rem;
}

.ck-content blockquote {
  border-left: 4px solid var(--primary-color);
  background-color: #f9f9f9;
  padding: 20px;
  margin: 2rem 0;
  font-style: italic;
}

.ck-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.ck-content table th,
.ck-content table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.ck-content table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.ck-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.ck-content .image-style-side {
  float: right;
  margin-left: 2rem;
  max-width: 50%;
}

/* Service Features */
.service-features {
  background-color: #f9f9f9;
  padding: 60px 0;
  margin: 60px 0;
}

.feature-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* CTA Section */
.service-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e05d00 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.service-cta h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.service-cta p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.btn-light-primary {
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-light-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .service-header {
    padding: 80px 0 40px;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-excerpt {
    font-size: 1rem;
  }

  .ck-content .image-style-side {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }

  .service-content-section {
    padding: 50px 0;
  }
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.product-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* Product Gallery */
.product-gallery {
  margin-bottom: 30px;
}

.main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--primary-color);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Details */
.product-details {
  padding: 60px 0;
}

.specs-list {
  list-style: none;
  padding: 0;
}

.specs-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
}

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

.spec-label {
  font-weight: 600;
  color: var(--secondary-color);
  min-width: 150px;
}

/* CKEditor Content Styling */
.product-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.product-description h2,
.product-description h3,
.product-description h4 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-description h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.product-description h3 {
  font-size: 1.5rem;
}

.product-description p {
  margin-bottom: 1.5rem;
}

.product-description ul,
.product-description ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.product-description ul li,
.product-description ol li {
  margin-bottom: 0.5rem;
}

.product-description img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

/* Inquiry Button */
.inquiry-btn {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.inquiry-btn:hover {
  background: #e05d00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.inquiry-btn i {
  margin-left: 8px;
}

/* Related Products */
.related-products {
  background-color: #f9f9f9;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card-img {
  height: 200px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 20px;
}

.product-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.product-card-text {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Modal Styles */
.inquiry-modal .modal-header {
  border-bottom: 2px solid var(--primary-color);
}

.inquiry-modal .modal-title {
  color: var(--secondary-color);
  font-weight: 700;
}

.inquiry-modal .btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
}

.inquiry-modal .btn-primary:hover {
  background: #e05d00;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .product-header {
    padding: 40px 0 30px;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-subtitle {
    font-size: 1rem;
  }

  .product-details {
    padding: 40px 0;
  }

  .spec-label {
    min-width: 120px;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.info-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
}

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

.info-box i {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 15px;
}

.info-box h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

/* Contact Form */
.form-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px 14px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: none;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 14px;
  color: #666;
  background: white;
  padding: 0 4px;
  transition: all 0.2s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #007bff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-page-button {
  background: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-page-button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 36px;
  }
}

.contact-page-section {
  padding: 80px 0;
}

.contact-page-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-top: 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
  text-align: center;
}

.contact-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-page-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.contact-page-card:hover .contact-page-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(15deg);
}

.contact-page-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-page-info {
  color: #666;
  margin-bottom: 20px;
}

.contact-page-info a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-page-info a:hover {
  color: var(--primary-color);
}

/* Contact Form */
.contact-page-form {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
  font-weight: 600;
  color: var(--secondary-color);
}

.form-control {
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #e05d00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Map Section */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 400px;
}

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

/* Business Hours */
.hours-table {
  width: 100%;
}

.hours-table tr {
  border-bottom: 1px solid #eee;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 0;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .contact-page-header {
    padding: 80px 0 40px;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .contact-page-section {
    padding: 50px 0;
  }

  .contact-page-form {
    padding: 30px 20px;
  }

  .map-container {
    height: 300px;
  }
}
